diff --git a/.coveragerc b/.coveragerc
new file mode 100644
index 00000000..335ac5e0
--- /dev/null
+++ b/.coveragerc
@@ -0,0 +1,5 @@
+[run]
+omit =
+ */opem/__main__.py
+ */opem/__init__.py
+ */opem/Profile.py
diff --git a/.gitattributes b/.gitattributes
new file mode 100644
index 00000000..957340f2
--- /dev/null
+++ b/.gitattributes
@@ -0,0 +1 @@
+Documents/* linguist-vendored
diff --git a/.github/CODE_OF_CONDUCT.md b/.github/CODE_OF_CONDUCT.md
new file mode 100644
index 00000000..4b8fdabb
--- /dev/null
+++ b/.github/CODE_OF_CONDUCT.md
@@ -0,0 +1,76 @@
+# Contributor Covenant Code of Conduct
+
+## Our Pledge
+
+In the interest of fostering an open and welcoming environment, we as
+contributors and maintainers pledge to making participation in our project and
+our community a harassment-free experience for everyone, regardless of age, body
+size, disability, ethnicity, sex characteristics, gender identity and expression,
+level of experience, education, socio-economic status, nationality, personal
+appearance, race, religion, or sexual identity and orientation.
+
+## Our Standards
+
+Examples of behavior that contributes to creating a positive environment
+include:
+
+* Using welcoming and inclusive language
+* Being respectful of differing viewpoints and experiences
+* Gracefully accepting constructive criticism
+* Focusing on what is best for the community
+* Showing empathy towards other community members
+
+Examples of unacceptable behavior by participants include:
+
+* The use of sexualized language or imagery and unwelcome sexual attention or
+ advances
+* Trolling, insulting/derogatory comments, and personal or political attacks
+* Public or private harassment
+* Publishing others' private information, such as a physical or electronic
+ address, without explicit permission
+* Other conduct which could reasonably be considered inappropriate in a
+ professional setting
+
+## Our Responsibilities
+
+Project maintainers are responsible for clarifying the standards of acceptable
+behavior and are expected to take appropriate and fair corrective action in
+response to any instances of unacceptable behavior.
+
+Project maintainers have the right and responsibility to remove, edit, or
+reject comments, commits, code, wiki edits, issues, and other contributions
+that are not aligned to this Code of Conduct, or to ban temporarily or
+permanently any contributor for other behaviors that they deem inappropriate,
+threatening, offensive, or harmful.
+
+## Scope
+
+This Code of Conduct applies both within project spaces and in public spaces
+when an individual is representing the project or its community. Examples of
+representing a project or community include using an official project e-mail
+address, posting via an official social media account, or acting as an appointed
+representative at an online or offline event. Representation of a project may be
+further defined and clarified by project maintainers.
+
+## Enforcement
+
+Instances of abusive, harassing, or otherwise unacceptable behavior may be
+reported by contacting the project team at opem@ecsim.ir. All
+complaints will be reviewed and investigated and will result in a response that
+is deemed necessary and appropriate to the circumstances. The project team is
+obligated to maintain confidentiality with regard to the reporter of an incident.
+Further details of specific enforcement policies may be posted separately.
+
+Project maintainers who do not follow or enforce the Code of Conduct in good
+faith may face temporary or permanent repercussions as determined by other
+members of the project's leadership.
+
+## Attribution
+
+This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
+available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html
+
+[homepage]: https://www.contributor-covenant.org
+
+For answers to common questions about this code of conduct, see
+https://www.contributor-covenant.org/faq
diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md
new file mode 100644
index 00000000..43bab518
--- /dev/null
+++ b/.github/CONTRIBUTING.md
@@ -0,0 +1,17 @@
+## Contribution
+
+Changes and improvements are more than welcome! ❤️ Feel free to fork and open a pull request.
+
+
+Please consider the following :
+
+
+1. Fork it!
+2. Create your feature branch (under `develop` branch)
+3. Add your functions/methods to proper files
+4. Add standard `docstring` to your functions/methods
+5. Add tests for your functions/methods (`doctest` testcases in `Test` folder)
+6. Pass all CI tests
+7. Update `CHANGELOG.md`
+ - Describe changes under `[Unreleased]` section
+8. Submit a pull request into `develop` (please complete the pull request template)
diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md
new file mode 100644
index 00000000..4f0383b4
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE.md
@@ -0,0 +1,13 @@
+#### Description
+
+#### Steps/Code to Reproduce
+
+#### Expected Behavior
+
+#### Actual Behavior
+
+#### Operating System
+
+#### Python Version
+
+#### OPEM Version
diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md
new file mode 100644
index 00000000..590816d5
--- /dev/null
+++ b/.github/PULL_REQUEST_TEMPLATE.md
@@ -0,0 +1,7 @@
+#### Reference Issues/PRs
+
+#### What does this implement/fix? Explain your changes.
+
+
+#### Any other comments?
+
diff --git a/.pyup.yml b/.pyup.yml
new file mode 100644
index 00000000..4a94d933
--- /dev/null
+++ b/.pyup.yml
@@ -0,0 +1,5 @@
+update: all
+
+branch: develop
+
+schedule: "every week"
\ No newline at end of file
diff --git a/.travis.yml b/.travis.yml
index f0d1ee6a..36b0fa35 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,17 +1,29 @@
-sudo: true
-
language: python
-python:
- - 3.6
- - 3.5
- - 3.4
+matrix:
+ include:
+ - os: linux
+ python: 3.7
+ env: TOXENV=py37-linux
+ dist: xenial
+
+ - os: linux
+ python: 3.6
+ env: TOXENV=py36-linux
+
+ - os: linux
+ python: 3.5
+ env: TOXENV=py35-linux
+
+ - os: linux
+ python: 3.4
+ env: TOXENV=py34-linux
+
+install:
+ - bash .travis/install.sh
-install:
- - pip install -r requirements.txt
- - python setup.py install
+script:
+ - bash .travis/test.sh
-script:
- - python -m pytest opem/Test --cov=opem --cov-report=term
after_success:
- - codecov
\ No newline at end of file
+ - codecov
diff --git a/.travis/install.sh b/.travis/install.sh
new file mode 100644
index 00000000..5396aafd
--- /dev/null
+++ b/.travis/install.sh
@@ -0,0 +1,6 @@
+#!/bin/bash
+set -e
+set -x
+
+pip install -r requirements.txt
+python setup.py install
diff --git a/.travis/test.sh b/.travis/test.sh
new file mode 100644
index 00000000..e982f9c8
--- /dev/null
+++ b/.travis/test.sh
@@ -0,0 +1,12 @@
+#!/bin/bash
+# Dump Environment (so that we can check PATH, UT_FLAGS, etc.)
+set -e
+set -x
+
+python -m opem test
+pip install -r dev-requirements.txt
+python version_check.py
+python -m bandit -r opem -s B322
+python -m vulture --min-confidence 80 --exclude=opem,build,.eggs --sort-by-size .
+python -m pytest opem/Test --cov=opem --cov-report=term
+python -m cProfile -s cumtime opem/Profile.py
\ No newline at end of file
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 17325b3c..c8edf85d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,116 +5,139 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
## [Unreleased]
+## [1.0] - 2019-03-01
+### Added
+- Interactive notebooks section
+- `version_check.py`
+- `CODE_OF_CONDUCT.md`
+- `ISSUE_TEMPLATE.md`
+- `PULL_REQUEST_TEMPLATE.md`
+- `build_exe.bat`
+- `build_unix.sh`
+- Anaconda cloud package
+
+### Changed
+- Document modified
+- Test system modified
+- `README.md` modified
+- `dev-requirements.txt` modified
+- `requirements.txt` modified
+- `CONTRIBUTING.md` modified
+- `linear_plot` function bug fixed
+- `INSTALL.md` modified
+
+
## [0.9] - 2018-07-14
### Added
- JOSS paper
### Changed
-- Test System Updated
-- setup File Modified
-- Exceptions Modified
+- Test system updated
+- `setup.py` file modified
+- Exceptions modified
### Removed
- `PEM.md`
## [0.8] - 2018-04-10
### Added
-- Overall Parameters
-- Linear Approximation
-- Power(Thermal) Parameter
-- Efficiency vs I Plot
-- PH2 vs I Plot
-- PO2 vs I Plot
-- Power vs Efficiency Plot
-- Loss vs I Plot
-- Power(Thermal) vs I Plot
-- macOS Version
+- Overall parameters
+- Linear approximation
+- Thermal power parameter
+- Efficiency vs I plot
+- PH2 vs I plot
+- PO2 vs I plot
+- Power vs Efficiency plot
+- Loss vs I plot
+- Power-Thermal vs I plot
+- macOS version
### Changed
-- Simulation Error Response
+- Simulation error response
## [0.7] - 2018-03-17
### Added
-- Standard Test Vectors
-- Model Description
-- Help Page
-- Warning System
-- System Block Diagram
+- Standard test vectors
+- Model description
+- Help page
+- Warning system
+- System block diagram
### Changed
-- HTML Report Layout
+- HTML report layout
## [0.6] - 2018-03-1
### Added
-- Padulles-Amphlett Dynamic Model
-- Check Update Function
-- Webpage Document Section
+- Padulles-Amphlett dynamic model
+- `check_update` function
+- Webpage document section
### Changed
-- Get_Input Function Default Params
-- Exe-File Incompatibility Fixed
+- `Get_Input` function default params
+- Exe-File incompatibility fixed
## [0.5] - 2018-02-16
### Added
-- Padulles-Hauer Dynamic Model
-- Simulation Name
-- Interactive HTML Report
+- Padulles-Hauer dynamic model
+- Simulation name
+- Interactive HTML report
### Changed
-- qH2O And qH2 In Padulles Dynamic Model 2 Merged
-- Static Analysis Function Output
-- Dynamic Analysis Function Output
-- ReportMode & PrintMode Flags
+- qH2O and qH2 in Padulles dynamic model 2 merged
+- `Static_Analysis` function output
+- `Dynamic_Analysis` function output
+- `ReportMode` & `PrintMode` flags
## [0.4] - 2018-02-06
### Added
-- Test Case Of Padullas Model 2
-- Padulles Dynamic Model 2
+- Test case of Padulles model 2
+- Padulles dynamic model 2
### Changed
-- Travis And Appveyor Configs
-- Jupyter Notebook Documentation
+- Travis and Appveyor configs
+- Jupyter notebook documentation
### Removed
-- RHO In Larmninee Model
+- RHO in Larmninee model
## [0.3] - 2018-01-31
### Added
-- Padulles Dynamic Model 1
-- GUI Folder
+- Padulles dynamic model 1
+- GUI folder
### Changed
-- Test Cases For Static Models
-- Padullas Refactored
-- Jupyter Notebook Padullas
+- Test cases for static models
+- Padulles refactored
+- Jupyter notebook Padulles
## [0.2] - 2018-01-05
### Added
-- Test Case And CI
-- Jupyter Notebook And Documentation
-- exe-version
+- Test case and CI
+- Jupyter notebook and documentation
+- Exe-Version
- Badges
-- Larminie-Dicks Static Model
-- Chamberline-Kim Static Model
-- pyqt5 To Requirments
+- Larminie-Dicks static model
+- Chamberline-Kim static model
+- pyqt5 to requirments
### Removed
-- python2.7 Setup For pyQt
+- python2.7 setup for pyqt
### Changed
- - Style To PEP8
- - Power Stack
+ - Style to PEP8
+ - Stack power
## [0.1] - 2017-12-25
### Added
-- Static Analyze Prototype
-- Amphlett Analyze
-- CSV Output Files
-- Documents And README
+- `Static_Analyze` prototype
+- Amphlett analyze
+- CSV output files
+- Documents and `README.md`
-[Unreleased]: https://github.com/ECSIM/opem/compare/v0.9...HEAD
+[Unreleased]: https://github.com/ECSIM/opem/compare/v1.0...develop
+[1.0]: https://github.com/ECSIM/opem/compare/v0.9...v1.0
[0.9]: https://github.com/ECSIM/opem/compare/v0.8...v0.9
[0.8]: https://github.com/ECSIM/opem/compare/v0.7...v0.8
[0.7]: https://github.com/ECSIM/opem/compare/v0.6...v0.7
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
deleted file mode 100644
index a8be5169..00000000
--- a/CONTRIBUTING.md
+++ /dev/null
@@ -1,5 +0,0 @@
-## Contribution
-
-Changes and improvements are more than welcome! ❤️ Feel free to fork and open a pull request. Please make your changes in a specific branch and request to pull into `develop`
-
-Remember to write a few tests for your code before sending pull requests.
diff --git a/Documents/Amphlett.ipynb b/Documents/Amphlett.ipynb
index bfe77c65..a2bfa525 100644
--- a/Documents/Amphlett.ipynb
+++ b/Documents/Amphlett.ipynb
@@ -11,7 +11,39 @@
"cell_type": "markdown",
"metadata": {},
"source": [
- "### Version 0.9"
+ "### Version 1.0"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "
+Amphlett static model is a parametric model that predicting the performance of a solid polymer electrolyte,
+proton exchange membrane (PEM) fuel cell. Main concepts in the Amphlett model includes Nernst voltage, PEMFC losses
+(activation polarization loss, ohmic polarization loss and concentration polarization loss), power and efficiency
+of fuel cell. This parametric model of PEMFC using a combination of mechanistic and empirical approach. The ideal
+standard potential (Nernst potential) of an H2/O2 FC is 1.229 V with liquid water product. The actual cell potential
+is decreased from its reference potential because of irreversible losses.
+
+
Inputs
+
+
+
+Input
+
+Description
+
+Value
+
+
+
+
+A
+
+
+Active area [cm^2]
+
+
+50.6
+
+
+
+B
+
+
+An empirical constant depending on the cell and its operation state (Tafel slope) [V]
+
+
+0.016
+
+
+
+JMax
+
+
+maximum current density [A/(cm^2)]
+
+
+1.5
+
+
+
+N
+
+
+Number of single cells
+
+
+1
+
+
+
+PH2
+
+
+Partial pressure [atm]
+
+
+1
+
+
+
+PO2
+
+
+Partial pressure [atm]
+
+
+1
+
+
+
+R
+
+
+R-Electronic [ohm] (*Optional)
+
+
+0
+
+
+
+T
+
+
+Cell operation temperature [K]
+
+
+343.15
+
+
+
+i-start
+
+
+Cell operating current start point [A]
+
+
+0
+
+
+
+i-step
+
+
+Cell operating current step
+
+
+0.1
+
+
+
+i-stop
+
+
+Cell operating current end point [A]
+
+
+75
+
+
+
+l
+
+
+Membrane thickness [cm]
+
+
+0.0178
+
+
+
+lambda
+
+
+An adjustable parameter with a min value of 14 and max value of 23
+
+
+23
+
+
+
Overall Parameters
+
+
+
+Parameter
+
+Description
+
+Value
+
+
+
+
+Efficiency|Pmax
+
+
+Cell efficiency at maximum power
+
+
+0.2826255388927661
+
+
+
+Pmax
+
+
+Maximum power [W]
+
+
+29.231394236601012
+
+
+
+Ptotal(Elec)
+
+
+Total electrical power [W]
+
+
+44.92639219548963
+
+
+
+Ptotal(Thermal)
+
+
+Total thermal power [W]
+
+
+47.15960780451031
+
+
+
+VFC|Pmax
+
+
+Cell voltage at maximum power [V]
+
+
+0.44089584067271514
+
+
+
Graphs
+
+
+
+
+
+
+
+
+
+
+
+
+
+Parameter
+
+Description
+
+Value
+
+
+
+
+K
+
+
+Slope of the curve obtained by linear approximation [A^(-1)]
+
+
+-0.005908240849347697
+
+
+
+Pmax(L-Approx)
+
+
+Maximum power obtained by linear approximation [W]
+
+
+28.55564007273787
+
+
+
+V0
+
+
+Intercept of the curve obtained by linear approximation [V]
+
+
+0.8214952200883945
+
+
+
+VFC|Pmax(L-Approx)
+
+
+Cell voltage at maximum power obtained by linear approximation [V]
+
+
+
\ No newline at end of file
diff --git a/Documents/Amphlett/Amphlett_Test.opem b/Documents/Amphlett/Amphlett_Test.opem
new file mode 100644
index 00000000..45ba0f8d
--- /dev/null
+++ b/Documents/Amphlett/Amphlett_Test.opem
@@ -0,0 +1,10528 @@
+ ___
+ / _ \ _ __ ___ _ __ ___
+| | | || '_ \ / _ \| '_ ` _ \
+| |_| || |_) || __/| | | | | |
+ \___/ | .__/ \___||_| |_| |_|
+ |_|
+Simulation Date : 2019-02-22 18:14:50.082164
+**********
+Amphlett Model
+
+**********
+Simulation Inputs :
+
+A : 50.6
+B : 0.016
+JMax : 1.5
+N : 1
+Name : Amphlett_Test
+PH2 : 1
+PO2 : 1
+R : 0
+T : 343.15
+i-start : 0
+i-step : 0.1
+i-stop : 75
+l : 0.0178
+lambda : 23
+**********
+I :0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0 V
+Eta Concentration : 0 V
+Eta Ohmic : 0 V
+Loss : 0 V
+PEM Efficiency : 0.763301282051282
+Power : 0.0 W
+Power-Stack : 0.0 W
+Power-Thermal : 0.0 W
+VStack : 1.19075 V
+Vcell : 1.19075 V
+###########
+I :0.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.11807074742083559 V
+Eta Concentration : 2.109426805213159e-05 V
+Eta Ohmic : 0.00017520002843124318 V
+Loss : 0.11826704171731897 V
+PEM Efficiency : 0.6874890758222313
+Power : 0.1072482958282681 W
+Power-Stack : 0.1072482958282681 W
+Power-Thermal : 0.015751704171731908 W
+VStack : 1.072482958282681 V
+Vcell : 1.072482958282681 V
+###########
+I :0.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.1639764642376006 V
+Eta Concentration : 4.221638333089875e-05 V
+Eta Ohmic : 0.0003505137928660484 V
+Loss : 0.16436919441379755 V
+PEM Efficiency : 0.6579364138373093
+Power : 0.2052761611172405 W
+Power-Stack : 0.2052761611172405 W
+Power-Thermal : 0.0407238388827595 W
+VStack : 1.0263808055862025 V
+Vcell : 1.0263808055862025 V
+###########
+I :0.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.1908295871441327 V
+Eta Concentration : 6.336641945755048e-05 V
+Eta Ohmic : 0.0005259414221215358 V
+Loss : 0.1914188949857118 V
+PEM Efficiency : 0.6405968621886462
+Power : 0.29979933150428645 W
+Power-Stack : 0.29979933150428645 W
+Power-Thermal : 0.06920066849571356 W
+VStack : 0.9993311050142881 V
+Vcell : 0.9993311050142881 V
+###########
+I :0.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.20988218105436562 V
+Eta Concentration : 8.454445034568427e-05 V
+Eta Ohmic : 0.0007014830568214833 V
+Loss : 0.21066820856153282 V
+PEM Efficiency : 0.628257558614402
+Power : 0.3920327165753869 W
+Power-Stack : 0.3920327165753869 W
+Power-Thermal : 0.09996728342461313 W
+VStack : 0.9800817914384672 V
+Vcell : 0.9800817914384672 V
+###########
+I :0.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.22466052101362555 V
+Eta Concentration : 0.00010575055020278165 V
+Eta Ohmic : 0.0008771388470514419 V
+Loss : 0.22564341041087976 V
+PEM Efficiency : 0.618658070249436
+Power : 0.4825532947945601 W
+Power-Stack : 0.4825532947945601 W
+Power-Thermal : 0.13244670520543989 W
+VStack : 0.9651065895891202 V
+Vcell : 0.9651065895891202 V
+###########
+I :0.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.23673530396089773 V
+Eta Concentration : 0.00012698479353178086 V
+Eta Ohmic : 0.0010529089510685316 V
+Loss : 0.23791519770549804 V
+PEM Efficiency : 0.610791539932373
+Power : 0.5717008813767012 W
+Power-Stack : 0.5717008813767012 W
+Power-Thermal : 0.16629911862329885 W
+VStack : 0.9528348022945019 V
+Vcell : 0.9528348022945019 V
+###########
+I :0.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.2469443874769634 V
+Eta Concentration : 0.000148247255132642 V
+Eta Ohmic : 0.001228793534444728 V
+Loss : 0.24832142826654077 V
+PEM Efficiency : 0.60412087931632
+Power : 0.6597000002134213 W
+Power-Stack : 0.6597000002134213 W
+Power-Thermal : 0.20129999978657856 W
+VStack : 0.9424285717334592 V
+Vcell : 0.9424285717334592 V
+###########
+I :0.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.25578789787113065 V
+Eta Concentration : 0.00016953801010392253 V
+Eta Ohmic : 0.0014047927694433354 V
+Loss : 0.2573622286506779 V
+PEM Efficiency : 0.5983254944546936
+Power : 0.7467102170794577 W
+Power-Stack : 0.7467102170794577 W
+Power-Thermal : 0.23728978292054237 W
+VStack : 0.933387771349322 V
+Vcell : 0.933387771349322 V
+###########
+I :0.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.26358842686742984 V
+Eta Concentration : 0.00019085713384438152 V
+Eta Ohmic : 0.0015809068345387157 V
+Loss : 0.2653601908358129 V
+PEM Efficiency : 0.5931985956180685
+Power : 0.8328508282477683 W
+Power-Stack : 0.8328508282477683 W
+Power-Thermal : 0.2741491717522317 W
+VStack : 0.925389809164187 V
+Vcell : 0.925389809164187 V
+###########
+I :1.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.2705662378303906 V
+Eta Concentration : 0.00021220470205456714 V
+Eta Ohmic : 0.0017571359140316743 V
+Loss : 0.2725355784464768 V
+PEM Efficiency : 0.5885989881753353
+Power : 0.9182144215535232 W
+Power-Stack : 0.9182144215535232 W
+Power-Thermal : 0.3117855784464768 W
+VStack : 0.9182144215535232 V
+Vcell : 0.9182144215535232 V
+###########
+I :1.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.27687843565296244 V
+Eta Concentration : 0.0002335807907384422 V
+Eta Ohmic : 0.001933480197732536 V
+Loss : 0.2790454966414334 V
+PEM Efficiency : 0.5844259636913888
+Power : 1.0028749536944233 W
+Power-Stack : 1.0028749536944233 W
+Power-Thermal : 0.3501250463055768 W
+VStack : 0.9117045033585666 V
+Vcell : 0.9117045033585666 V
+###########
+I :1.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.28264102077766273 V
+Eta Concentration : 0.00025498547620500224 V
+Eta Ohmic : 0.002109939880694226 V
+Loss : 0.285005946134562 V
+PEM Efficiency : 0.5806051627342551
+Power : 1.0868928646385256 W
+Power-Stack : 1.0868928646385256 W
+Power-Thermal : 0.3891071353614744 W
+VStack : 0.905744053865438 V
+Vcell : 0.905744053865438 V
+###########
+I :1.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.28794208521933035 V
+Eta Concentration : 0.0002764188350699048 V
+Eta Ohmic : 0.002286515162983545 V
+Loss : 0.2905050192173838 V
+PEM Efficiency : 0.5770801158862924
+Power : 1.1703184750174012 W
+Power-Stack : 1.1703184750174012 W
+Power-Thermal : 0.428681524982599 W
+VStack : 0.9002449807826162 V
+Vcell : 0.9002449807826162 V
+###########
+I :1.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.29285010429372843 V
+Eta Concentration : 0.00029788094425712723 V
+Eta Ohmic : 0.0024632062494824017 V
+Loss : 0.29561119148746795 V
+PEM Efficiency : 0.5738069285336743
+Power : 1.2531943319175447 W
+Power-Stack : 1.2531943319175447 W
+Power-Thermal : 0.4688056680824551 W
+VStack : 0.895138808512532 V
+Vcell : 0.895138808512532 V
+###########
+I :1.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.29741936073692266 V
+Eta Concentration : 0.00031937188100060893 V
+Eta Ohmic : 0.002640013349713048 V
+Loss : 0.3003787459676363 V
+PEM Efficiency : 0.5707508038668997
+Power : 1.3355568810485454 W
+Power-Stack : 1.3355568810485454 W
+Power-Thermal : 0.5094431189514546 W
+VStack : 0.8903712540323636 V
+Vcell : 0.8903712540323636 V
+###########
+I :1.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.3016936146878957 V
+Eta Concentration : 0.0003408917228459314 V
+Eta Ohmic : 0.0028169366776829123 V
+Loss : 0.3048514430884245 V
+PEM Efficiency : 0.567883690327933
+Power : 1.417437691058521 W
+Power-Stack : 1.417437691058521 W
+Power-Thermal : 0.5505623089414792 W
+VStack : 0.8858985569115755 V
+Vcell : 0.8858985569115755 V
+###########
+I :1.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.3057086591103234 V
+Eta Concentration : 0.00036244054765199196 V
+Eta Ohmic : 0.0029939764517456784 V
+Loss : 0.3090650761097211 V
+PEM Efficiency : 0.5651826435194095
+Power : 1.498864370613474 W
+Power-Stack : 1.498864370613474 W
+Power-Thermal : 0.5921356293865259 W
+VStack : 0.8816849238902789 V
+Vcell : 0.8816849238902789 V
+###########
+I :1.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.30949414368419487 V
+Eta Concentration : 0.00038401843359268825 V
+Eta Ohmic : 0.0031711328944759895 V
+Loss : 0.3130492950122636 V
+PEM Efficiency : 0.5626286570434207
+Power : 1.5798612689779254 W
+Power-Stack : 1.5798612689779254 W
+Power-Thermal : 0.6341387310220746 W
+VStack : 0.8777007049877363 V
+Vcell : 0.8777007049877363 V
+###########
+I :1.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.3130749049111216 V
+Eta Concentration : 0.00040562545915863245 V
+Eta Ohmic : 0.003348406232555746 V
+Loss : 0.31682893660283595 V
+PEM Efficiency : 0.5602058098699769
+Power : 1.6604500204546115 W
+Power-Stack : 1.6604500204546115 W
+Power-Thermal : 0.6765499795453883 W
+VStack : 0.873921063397164 V
+Vcell : 0.873921063397164 V
+###########
+I :2.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.3164719546471556 V
+Eta Concentration : 0.0004272617031588504 V
+Eta Ohmic : 0.0035257966966703337 V
+Loss : 0.32042501304698484 V
+PEM Efficiency : 0.5579006326621893
+Power : 1.7406499739060304 W
+Power-Stack : 1.7406499739060304 W
+Power-Thermal : 0.7193500260939696 W
+VStack : 0.8703249869530152 V
+Vcell : 0.8703249869530152 V
+###########
+I :2.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.31970322720026056 V
+Eta Concentration : 0.00044892724472251814 V
+Eta Ohmic : 0.003703304521413451 V
+Loss : 0.3238554589663965 V
+PEM Efficiency : 0.5557016288676945
+Power : 1.8204785361705675 W
+Power-Stack : 1.8204785361705675 W
+Power-Thermal : 0.7625214638294325 W
+VStack : 0.8668945410336035 V
+Vcell : 0.8668945410336035 V
+###########
+I :2.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.32278415246972747 V
+Eta Concentration : 0.00047062216330069346 V
+Eta Ohmic : 0.0038809299451994456 V
+Loss : 0.3271357045782276 V
+PEM Efficiency : 0.553598907321649
+Power : 1.8999514499278993 W
+Power-Stack : 1.8999514499278993 W
+Power-Thermal : 0.8060485500721009 W
+VStack : 0.8636142954217724 V
+Vcell : 0.8636142954217724 V
+###########
+I :2.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.3257281015786805 V
+Eta Concentration : 0.0004923465386680586 V
+Eta Ohmic : 0.004058673210182234 V
+Loss : 0.33027912132753073 V
+PEM Efficiency : 0.5515838965849162
+Power : 1.9790830209466792 W
+Power-Stack : 1.9790830209466792 W
+Power-Thermal : 0.8499169790533205 W
+VStack : 0.8604708786724693 V
+Vcell : 0.8604708786724693 V
+###########
+I :2.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.32854673759442776 V
+Eta Concentration : 0.0005141004509246927 V
+Eta Ohmic : 0.004236534562180054 V
+Loss : 0.3332973726075325 V
+PEM Efficiency : 0.5496491201233765
+Power : 2.057886305741922 W
+Power-Stack : 2.057886305741922 W
+Power-Thermal : 0.8941136942580782 W
+VStack : 0.8574526273924674 V
+Vcell : 0.8574526273924674 V
+###########
+I :2.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.33125029460641553 V
+Eta Concentration : 0.0005358839804978295 V
+Eta Ohmic : 0.004414514250605397 V
+Loss : 0.33620069283751874 V
+PEM Efficiency : 0.5477880174118469
+Power : 2.136373267906203 W
+Power-Stack : 2.136373267906203 W
+Power-Thermal : 0.9386267320937969 W
+VStack : 0.8545493071624812 V
+Vcell : 0.8545493071624812 V
+###########
+I :2.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.3338478020360954 V
+Eta Concentration : 0.0005576972081436541 V
+Eta Ohmic : 0.004592612528399569 V
+Loss : 0.33899811177263856 V
+PEM Efficiency : 0.5459948001457445
+Power : 2.2145549093911394 W
+Power-Stack : 2.2145549093911394 W
+Power-Thermal : 0.9834450906088604 W
+VStack : 0.8517518882273614 V
+Vcell : 0.8517518882273614 V
+###########
+I :2.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.336347266590727 V
+Eta Concentration : 0.0005795402149490941 V
+Eta Ohmic : 0.004770829651971409 V
+Loss : 0.3416976364576475 V
+PEM Efficiency : 0.5442643356040721
+Power : 2.292441381564352 W
+Power-Stack : 2.292441381564352 W
+Power-Thermal : 1.0285586184356483 W
+VStack : 0.8490523635423525 V
+Vcell : 0.8490523635423525 V
+###########
+I :2.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.33875582111049346 V
+Eta Concentration : 0.0006014130823336223 V
+Eta Ohmic : 0.00494916588113977 V
+Loss : 0.34430640007396685 V
+PEM Efficiency : 0.5425920512346366
+Power : 2.3700420797928925 W
+Power-Stack : 2.3700420797928925 W
+Power-Thermal : 1.073957920207107 W
+VStack : 0.8464435999260331 V
+Vcell : 0.8464435999260331 V
+###########
+I :2.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.3410798472843882 V
+Eta Concentration : 0.0006233158920510905 V
+Eta Ohmic : 0.005127621479079398 V
+Loss : 0.34683078465551875 V
+PEM Efficiency : 0.5409738559900521
+Power : 2.4473657244989955 W
+Power-Stack : 2.4473657244989955 W
+Power-Thermal : 1.1196342755010045 W
+VStack : 0.8439192153444812 V
+Vcell : 0.8439192153444812 V
+###########
+I :3.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.3433250775536877 V
+Eta Concentration : 0.0006452487261915484 V
+Eta Ohmic : 0.005306196712269878 V
+Loss : 0.3492765229921491 V
+PEM Efficiency : 0.5394060750050326
+Power : 2.524420431023553 W
+Power-Stack : 2.524420431023553 W
+Power-Thermal : 1.1655795689764472 W
+VStack : 0.8414734770078509 V
+Vcell : 0.8414734770078509 V
+###########
+I :3.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.3454966803001176 V
+Eta Concentration : 0.0006672116671831024 V
+Eta Ohmic : 0.005484891850447433 V
+Loss : 0.3516487838177481 V
+PEM Efficiency : 0.537885394988623
+Power : 2.6012137701649807 W
+Power-Stack : 2.6012137701649807 W
+Power-Thermal : 1.2117862298350193 W
+VStack : 0.8391012161822519 V
+Vcell : 0.8391012161822519 V
+###########
+I :3.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.3475993315046607 V
+Eta Concentration : 0.0006892047977937692 V
+Eta Ohmic : 0.00566370716655928 V
+Loss : 0.35395224346901377 V
+PEM Efficiency : 0.5364088182890937
+Power : 2.677752820899156 W
+Power-Stack : 2.677752820899156 W
+Power-Thermal : 1.2582471791008443 W
+VStack : 0.8367977565309862 V
+Vcell : 0.8367977565309862 V
+###########
+I :3.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.34963727537625955 V
+Eta Concentration : 0.0007112282011333409 V
+Eta Ohmic : 0.005842642936720367 V
+Loss : 0.35619114651411327 V
+PEM Efficiency : 0.5349736240294146
+Power : 2.7540442165034262 W
+Power-Stack : 2.7540442165034262 W
+Power-Thermal : 1.3049557834965735 W
+VStack : 0.8345588534858868 V
+Vcell : 0.8345588534858868 V
+###########
+I :3.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.35161437592708844 V
+Eta Concentration : 0.0007332819606552831 V
+Eta Ohmic : 0.00602169944017227 V
+Loss : 0.358369357327916 V
+PEM Efficiency : 0.5335773350462076
+Power : 2.8300941850850854 W
+Power-Stack : 2.8300941850850854 W
+Power-Thermal : 1.3519058149149146 W
+VStack : 0.8323806426720839 V
+Vcell : 0.8323806426720839 V
+###########
+I :3.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.3535341610697534 V
+Eta Concentration : 0.0007553661601586168 V
+Eta Ohmic : 0.006200876959244138 V
+Loss : 0.3604904041891562 V
+PEM Efficiency : 0.5322176896223357
+Power : 2.9059085853379534 W
+Power-Stack : 2.9059085853379534 W
+Power-Thermal : 1.3990914146620463 W
+VStack : 0.8302595958108439 V
+Vcell : 0.8302595958108439 V
+###########
+I :3.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.3553998605009599 V
+Eta Concentration : 0.000777480883789843 V
+Eta Ohmic : 0.0063801757793154595 V
+Loss : 0.36255751716406515 V
+PEM Efficiency : 0.5308926172025222
+Power : 2.9814929382093656 W
+Power-Stack : 2.9814929382093656 W
+Power-Thermal : 1.4465070617906346 W
+VStack : 0.8281924828359348 V
+Vcell : 0.8281924828359348 V
+###########
+I :3.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.3572144383935416 V
+Eta Concentration : 0.0007996262160448594 V
+Eta Ohmic : 0.0065595961887805875 V
+Loss : 0.36457366079836706 V
+PEM Efficiency : 0.5296002174369442
+Power : 3.056852455046042 W
+Power-Stack : 3.056852455046042 W
+Power-Thermal : 1.4941475449539583 W
+VStack : 0.8261763392016329 V
+Vcell : 0.8261763392016329 V
+###########
+I :3.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.35898062172788664 V
+Eta Concentration : 0.0008218022417708932 V
+Eta Ohmic : 0.0067391384790148525 V
+Loss : 0.3665415624486724 V
+PEM Efficiency : 0.5283387420200818
+Power : 3.1319920626950446 W
+Power-Stack : 3.1319920626950446 W
+Power-Thermal : 1.5420079373049551 W
+VStack : 0.8242084375513276 V
+Vcell : 0.8242084375513276 V
+###########
+I :3.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.36070092494262745 V
+Eta Concentration : 0.0008440090461684635 V
+Eta Ohmic : 0.0069188029443421825 V
+Loss : 0.36846373693313805 V
+PEM Efficiency : 0.527106578889014
+Power : 3.2069164259607614 W
+Power-Stack : 3.2069164259607614 W
+Power-Thermal : 1.5900835740392385 W
+VStack : 0.8222862630668619 V
+Vcell : 0.8222862630668619 V
+###########
+I :4.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.36237767146392064 V
+Eta Concentration : 0.0008662467147933317 V
+Eta Ohmic : 0.0070985898820040945 V
+Loss : 0.37034250806071806 V
+PEM Efficiency : 0.5259022384226165
+Power : 3.2816299677571275 W
+Power-Stack : 3.2816299677571275 W
+Power-Thermal : 1.6383700322428725 W
+VStack : 0.8204074919392819 V
+Vcell : 0.8204074919392819 V
+###########
+I :4.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.3640130125759251 V
+Eta Concentration : 0.000888515333558491 V
+Eta Ohmic : 0.00727849959213002 V
+Loss : 0.3721800275016136 V
+PEM Efficiency : 0.5247243413451195
+Power : 3.356136887243384 W
+Power-Stack : 3.356136887243384 W
+Power-Thermal : 1.6868631127566156 W
+VStack : 0.8185699724983864 V
+Vcell : 0.8185699724983864 V
+###########
+I :4.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.3656089440170256 V
+Eta Concentration : 0.0009108149887361533 V
+Eta Ohmic : 0.007458532377708835 V
+Loss : 0.37397829138347055 V
+PEM Efficiency : 0.5235716080875188
+Power : 3.4304411761894236 W
+Power-Stack : 3.4304411761894236 W
+Power-Thermal : 1.7355588238105766 W
+VStack : 0.8167717086165294 V
+Vcell : 0.8167717086165294 V
+###########
+I :4.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.367167320622983 V
+Eta Concentration : 0.0009331457669597486 V
+Eta Ohmic : 0.007638688544561533 V
+Loss : 0.37573915493450427 V
+PEM Efficiency : 0.5224428494009588
+Power : 3.5045466337816316 W
+Power-Stack : 3.5045466337816316 W
+Power-Thermal : 1.7844533662183684 W
+VStack : 0.8150108450654957 V
+Vcell : 0.8150108450654957 V
+###########
+I :4.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.3686898692864925 V
+Eta Concentration : 0.000955507755225957 V
+Eta Ohmic : 0.007818968401314987 V
+Loss : 0.3774643454430334 V
+PEM Efficiency : 0.5213369580493376
+Power : 3.5784568800506533 W
+Power-Stack : 3.5784568800506533 W
+Power-Thermal : 1.8335431199493473 W
+VStack : 0.8132856545569666 V
+Vcell : 0.8132856545569666 V
+###########
+I :4.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.3701782004602198 V
+Eta Concentration : 0.0009779010408967285 V
+Eta Ohmic : 0.00799937225937671 V
+Loss : 0.37915547376049324 V
+PEM Efficiency : 0.5202529014355812
+Power : 3.6521753680777804 W
+Power-Stack : 3.6521753680777804 W
+Power-Thermal : 1.8828246319222193 W
+VStack : 0.8115945262395068 V
+Vcell : 0.8115945262395068 V
+###########
+I :4.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.3716338183954455 V
+Eta Concentration : 0.0010003257117013429 V
+Eta Ohmic : 0.00817990043291058 V
+Loss : 0.3808140445400574 V
+PEM Efficiency : 0.5191897150384247
+Power : 3.7257053951157357 W
+Power-Stack : 3.7257053951157357 W
+Power-Thermal : 1.932294604884264 W
+VStack : 0.8099359554599426 V
+Vcell : 0.8099359554599426 V
+###########
+I :4.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.37305813027950924 V
+Eta Concentration : 0.0010227818557384668 V
+Eta Ohmic : 0.00836055323881346 V
+Loss : 0.38244146537406115 V
+PEM Efficiency : 0.518146496555089
+Power : 3.799050112741913 W
+Power-Stack : 3.799050112741913 W
+Power-Thermal : 1.9819498872580872 W
+VStack : 0.8083085346259389 V
+Vcell : 0.8083085346259389 V
+###########
+I :4.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.3744524544111928 V
+Eta Concentration : 0.001045269561478224 V
+Eta Ohmic : 0.00854133099669267 V
+Loss : 0.3840390549693637 V
+PEM Efficiency : 0.5171224006606642
+Power : 3.8722125361470536 W
+Power-Stack : 3.8722125361470536 W
+Power-Thermal : 2.031787463852946 W
+VStack : 0.8067109450306362 V
+Vcell : 0.8067109450306362 V
+###########
+I :4.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.37581802753309124 V
+Eta Concentration : 0.0010677889177643017 V
+Eta Ohmic : 0.008722234028844282 V
+Loss : 0.3856080504796998 V
+PEM Efficiency : 0.5161166343078847
+Power : 3.945195552649471 W
+Power-Stack : 3.945195552649471 W
+Power-Thermal : 2.0818044473505295 W
+VStack : 0.8051419495203002 V
+Vcell : 0.8051419495203002 V
+###########
+I :5.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.37715601142318056 V
+Eta Concentration : 0.0010903400138160386 V
+Eta Ohmic : 0.008903262660232116 V
+Loss : 0.3871496140972287 V
+PEM Efficiency : 0.5151284525017764
+Power : 4.018001929513856 W
+Power-Stack : 4.018001929513856 W
+Power-Thermal : 2.1319980704861434 W
+VStack : 0.8036003859027713 V
+Vcell : 0.8036003859027713 V
+###########
+I :5.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.3784674988336206 V
+Eta Concentration : 0.0011129229392305617 V
+Eta Ohmic : 0.00908441721846756 V
+Loss : 0.38866483899131865 V
+PEM Efficiency : 0.5141571544927445
+Power : 4.090634321144274 W
+Power-Stack : 4.090634321144274 W
+Power-Thermal : 2.182365678855725 W
+VStack : 0.8020851610086813 V
+Vcell : 0.8020851610086813 V
+###########
+I :5.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.3797535188528604 V
+Eta Concentration : 0.001135537783984915 V
+Eta Ohmic : 0.009265698033789974 V
+Loss : 0.39015475467063526 V
+PEM Efficiency : 0.5132020803393363
+Power : 4.163095275712697 W
+Power-Stack : 4.163095275712697 W
+Power-Thermal : 2.232904724287303 W
+VStack : 0.8005952453293648 V
+Vcell : 0.8005952453293648 V
+###########
+I :5.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.3810150417569698 V
+Eta Concentration : 0.0011581846384382051 V
+Eta Ohmic : 0.009447105439047806 V
+Loss : 0.3916203318344558 V
+PEM Efficiency : 0.5122626077984257
+Power : 4.235387241277384 W
+Power-Stack : 4.235387241277384 W
+Power-Thermal : 2.2836127587226156 W
+VStack : 0.7991296681655442 V
+Vcell : 0.7991296681655442 V
+###########
+I :5.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.38225298340749203 V
+Eta Concentration : 0.001180863593333781 V
+Eta Ohmic : 0.009628639769680323 V
+Loss : 0.39306248677050615 V
+PEM Efficiency : 0.5113381495060858
+Power : 4.307512571439267 W
+Power-Stack : 4.307512571439267 W
+Power-Thermal : 2.3344874285607333 W
+VStack : 0.7976875132294938 V
+Vcell : 0.7976875132294938 V
+###########
+I :5.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.38346820924575237 V
+Eta Concentration : 0.0012035747398014003 V
+Eta Ohmic : 0.009810301363699904 V
+Loss : 0.3944820853492537 V
+PEM Efficiency : 0.5104281504171451
+Power : 4.379473530579105 W
+Power-Stack : 4.379473530579105 W
+Power-Thermal : 2.385526469420895 W
+VStack : 0.7962679146507463 V
+Vcell : 0.7962679146507463 V
+###########
+I :5.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.3846615379272585 V
+Eta Concentration : 0.0012263181693594393 V
+Eta Ohmic : 0.009992090561674922 V
+Loss : 0.39587994665829285 V
+PEM Efficiency : 0.5095320854754533
+Power : 4.45127229871356 W
+Power-Stack : 4.45127229871356 W
+Power-Thermal : 2.43672770128644 W
+VStack : 0.7948700533417071 V
+Vcell : 0.7948700533417071 V
+###########
+I :5.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.3858337446344188 V
+Eta Concentration : 0.0012490939739171012 V
+Eta Ohmic : 0.010174007706713164 V
+Loss : 0.39725684631504904 V
+PEM Efficiency : 0.5086494574903532
+Power : 4.522910976004221 W
+Power-Stack : 4.522910976004221 W
+Power-Thermal : 2.488089023995779 W
+VStack : 0.793493153684951 V
+Vcell : 0.793493153684951 V
+###########
+I :5.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.38698556410115326 V
+Eta Concentration : 0.0012719022457766368 V
+Eta Ohmic : 0.010356053144445732 V
+Loss : 0.3986135194913756 V
+PEM Efficiency : 0.5077797951978361
+Power : 4.594391586950021 W
+Power-Stack : 4.594391586950021 W
+Power-Thermal : 2.5396084130499785 W
+VStack : 0.7921364805086244 V
+Vcell : 0.7921364805086244 V
+###########
+I :5.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.38811769337895136 V
+Eta Concentration : 0.0012947430776356047 V
+Eta Ohmic : 0.01053822722301148 V
+Loss : 0.3999506636795984 V
+PEM Efficiency : 0.5069226514874369
+Power : 4.665716084290369 W
+Power-Stack : 4.665716084290369 W
+Power-Thermal : 2.591283915709631 W
+VStack : 0.7907993363204016 V
+Vcell : 0.7907993363204016 V
+###########
+I :6.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.3892307943704527 V
+Eta Concentration : 0.0013176165625891146 V
+Eta Ohmic : 0.010720530293041867 V
+Loss : 0.4012689412260837 V
+PEM Efficiency : 0.5060776017781514
+Power : 4.736886352643498 W
+Power-Stack : 4.736886352643498 W
+Power-Thermal : 2.6431136473565022 W
+VStack : 0.7894810587739163 V
+Vcell : 0.7894810587739163 V
+###########
+I :6.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.3903254961536124 V
+Eta Concentration : 0.0013405227941321184 V
+Eta Ohmic : 0.010902962707646336 V
+Loss : 0.40256898165539085 V
+PEM Efficiency : 0.5052442425285957
+Power : 4.807904211902116 W
+Power-Stack : 4.807904211902116 W
+Power-Thermal : 2.6950957880978836 W
+VStack : 0.7881810183446092 V
+Vcell : 0.7881810183446092 V
+###########
+I :6.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.3914023971168826 V
+Eta Concentration : 0.001363461866161697 V
+Eta Ohmic : 0.011085524822397993 V
+Loss : 0.40385138380544233 V
+PEM Efficiency : 0.5044221898683062
+Power : 4.878771420406258 W
+Power-Stack : 4.878771420406258 W
+Power-Thermal : 2.747228579593742 W
+VStack : 0.7868986161945577 V
+Vcell : 0.7868986161945577 V
+###########
+I :6.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.3924620669235577 V
+Eta Concentration : 0.001386433872979364 V
+Eta Ohmic : 0.011268216995319857 V
+Loss : 0.40511671779185693 V
+PEM Efficiency : 0.5036110783385532
+Power : 4.949489677911301 W
+Power-Stack : 4.949489677911301 W
+Power-Thermal : 2.799510322088698 W
+VStack : 0.7856332822081431 V
+Vcell : 0.7856332822081431 V
+###########
+I :6.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.39350504832142574 V
+Eta Concentration : 0.0014094389092934052 V
+Eta Ohmic : 0.011451039586871362 V
+Loss : 0.4063655268175905 V
+PEM Efficiency : 0.5028105597323137
+Power : 5.020060628367421 W
+Power-Stack : 5.020060628367421 W
+Power-Thermal : 2.8519393716325796 W
+VStack : 0.7843844731824094 V
+Vcell : 0.7843844731824094 V
+###########
+I :6.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.39453185881212033 V
+Eta Concentration : 0.0014324770702212066 V
+Eta Ohmic : 0.011633992959935353 V
+Loss : 0.40759832884227687 V
+PEM Efficiency : 0.5020203020241815
+Power : 5.0904858625252 W
+Power-Stack : 5.0904858625252 W
+Power-Thermal : 2.9045141374748 W
+VStack : 0.7831516711577231 V
+Vcell : 0.7831516711577231 V
+###########
+I :6.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.3955429921930246 V
+Eta Concentration : 0.0014555484512916261 V
+Eta Ohmic : 0.01181707747980534 V
+Loss : 0.40881561812412154 V
+PEM Efficiency : 0.5012399883819733
+Power : 5.160766920380797 W
+Power-Stack : 5.160766920380797 W
+Power-Thermal : 2.9572330796192023 W
+VStack : 0.7819343818758784 V
+Vcell : 0.7819343818758784 V
+###########
+I :6.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.3965389199832295 V
+Eta Concentration : 0.001478653148447366 V
+Eta Ohmic : 0.0120002935141732 V
+Loss : 0.41001786664585005 V
+PEM Efficiency : 0.5004693162526601
+Power : 5.230905293472805 W
+Power-Stack : 5.230905293472805 W
+Power-Thermal : 3.0100947065271955 W
+VStack : 0.7807321333541499 V
+Vcell : 0.7807321333541499 V
+###########
+I :6.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.39752009274385347 V
+Eta Concentration : 0.0015017912580473599 V
+Eta Ohmic : 0.01218364143311712 V
+Loss : 0.4112055254350179 V
+PEM Efficiency : 0.49970799651601405
+Power : 5.300902427041877 W
+Power-Stack : 5.300902427041877 W
+Power-Thermal : 3.0630975729581222 W
+VStack : 0.779544474564982 V
+Vcell : 0.779544474564982 V
+###########
+I :6.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.3984869413019776 V
+Eta Concentration : 0.0015249628768691983 V
+Eta Ohmic : 0.012367121609089964 V
+Loss : 0.4123790257879368 V
+PEM Efficiency : 0.49895575270004056
+Power : 5.370759722063236 W
+Power-Stack : 5.370759722063236 W
+Power-Thermal : 3.1162402779367637 W
+VStack : 0.7783709742120632 V
+Vcell : 0.7783709742120632 V
+###########
+I :7.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.39943987788651836 V
+Eta Concentration : 0.0015481681021115414 V
+Eta Ohmic : 0.012550734416907853 V
+Loss : 0.41353878040553776 V
+PEM Efficiency : 0.49821232025286044
+Power : 5.440478537161236 W
+Power-Stack : 5.440478537161236 W
+Power-Thermal : 3.1695214628387642 W
+VStack : 0.7772112195944623 V
+Vcell : 0.7772112195944623 V
+###########
+I :7.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.40037929718353393 V
+Eta Concentration : 0.0015714070313965812 V
+Eta Ohmic : 0.012734480233739125 V
+Loss : 0.41468518444866964 V
+PEM Efficiency : 0.4974774458662374
+Power : 5.510060190414445 W
+Power-Stack : 5.510060190414445 W
+Power-Thermal : 3.2229398095855544 W
+VStack : 0.7760648155513303 V
+Vcell : 0.7760648155513303 V
+###########
+I :7.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4013055773177249 V
+Eta Concentration : 0.0015946797627724896 V
+Eta Ohmic : 0.012918359439093533 V
+Loss : 0.41581861651959096 V
+PEM Efficiency : 0.496750886846416
+Power : 5.5795059610589455 W
+Power-Stack : 5.5795059610589455 W
+Power-Thermal : 3.276494038941055 W
+VStack : 0.774931383480409 V
+Vcell : 0.774931383480409 V
+###########
+I :7.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.40221908076623913 V
+Eta Concentration : 0.0016179863947159145 V
+Eta Ohmic : 0.013102372414811742 V
+Loss : 0.41693943957576673 V
+PEM Efficiency : 0.4960324105283547
+Power : 5.648817091096903 W
+Power-Stack : 5.648817091096903 W
+Power-Thermal : 3.330182908903097 W
+VStack : 0.7738105604242332 V
+Vcell : 0.7738105604242332 V
+###########
+I :7.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.40312015521030664 V
+Eta Concentration : 0.0016413270261344747 V
+Eta Ohmic : 0.013286519545055086 V
+Loss : 0.4180480017814962 V
+PEM Efficiency : 0.4953217937298101
+Power : 5.717994786816928 W
+Power-Stack : 5.717994786816928 W
+Power-Thermal : 3.3840052131830727 W
+VStack : 0.7727019982185037 V
+Vcell : 0.7727019982185037 V
+###########
+I :7.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.40400913432971264 V
+Eta Concentration : 0.0016647017563692712 V
+Eta Ohmic : 0.013470801216295592 V
+Loss : 0.4191446373023775 V
+PEM Efficiency : 0.4946188222420657
+Power : 5.787040220232169 W
+Power-Stack : 5.787040220232169 W
+Power-Thermal : 3.4379597797678314 W
+VStack : 0.7716053626976225 V
+Vcell : 0.7716053626976225 V
+###########
+I :7.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.40488633854465167 V
+Eta Concentration : 0.0016881106851974368 V
+Eta Ohmic : 0.013655217817306263 V
+Loss : 0.42022966704715536 V
+PEM Efficiency : 0.4939232903543876
+Power : 5.855954530441619 W
+Power-Stack : 5.855954530441619 W
+Power-Thermal : 3.4920454695583807 W
+VStack : 0.7705203329528446 V
+Vcell : 0.7705203329528446 V
+###########
+I :7.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4057520757090902 V
+Eta Concentration : 0.0017115539128346852 V
+Eta Ohmic : 0.013839769739151598 V
+Loss : 0.42130339936107647 V
+PEM Efficiency : 0.4932350004095664
+Power : 5.924738824919712 W
+Power-Stack : 5.924738824919712 W
+Power-Thermal : 3.5462611750802884 W
+VStack : 0.7694466006389236 V
+Vcell : 0.7694466006389236 V
+###########
+I :7.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.40660664175939254 V
+Eta Concentration : 0.0017350315399378802 V
+Eta Ohmic : 0.01402445737517829 V
+Loss : 0.4223661306745087 V
+PEM Efficiency : 0.4925537623881354
+Power : 5.993394180738832 W
+Power-Stack : 5.993394180738832 W
+Power-Thermal : 3.6006058192611676 W
+VStack : 0.7683838693254913 V
+Vcell : 0.7683838693254913 V
+###########
+I :7.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.40745032132162884 V
+Eta Concentration : 0.0017585436676076413 V
+Eta Ohmic : 0.014209281121006287 V
+Loss : 0.42341814611024275 V
+PEM Efficiency : 0.4918793935190751
+Power : 6.0619216457290825 W
+Power-Stack : 6.0619216457290825 W
+Power-Thermal : 3.655078354270918 W
+VStack : 0.7673318538897572 V
+Vcell : 0.7673318538897572 V
+###########
+I :8.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.40828338828068567 V
+Eta Concentration : 0.0017820903973909405 V
+Eta Ohmic : 0.014394241374519908 V
+Loss : 0.4244597200525965 V
+PEM Efficiency : 0.4912117179150022
+Power : 6.130322239579227 W
+Power-Stack : 6.130322239579227 W
+Power-Thermal : 3.7096777604207727 W
+VStack : 0.7662902799474034 V
+Vcell : 0.7662902799474034 V
+###########
+I :8.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4091061063140241 V
+Eta Concentration : 0.0018056718312837506 V
+Eta Ohmic : 0.014579338535859292 V
+Loss : 0.4254911166811672 V
+PEM Efficiency : 0.49055056623002097
+Power : 6.198596954882545 W
+Power-Stack : 6.198596954882545 W
+Power-Thermal : 3.7644030451174544 W
+VStack : 0.7652588833188327 V
+Vcell : 0.7652588833188327 V
+###########
+I :8.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.40991872939269014 V
+Eta Concentration : 0.001829288071733679 V
+Eta Ohmic : 0.014764573007411996 V
+Loss : 0.4265125904718358 V
+PEM Efficiency : 0.4898957753385667
+Power : 6.266746758130945 W
+Power-Stack : 6.266746758130945 W
+Power-Thermal : 3.819253241869054 W
+VStack : 0.7642374095281641 V
+Vcell : 0.7642374095281641 V
+###########
+I :8.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.41072150225195825 V
+Eta Concentration : 0.0018529392216426526 V
+Eta Ohmic : 0.014949945193804829 V
+Loss : 0.4275243866674057 V
+PEM Efficiency : 0.4892471880337143
+Power : 6.334772590660533 W
+Power-Stack : 6.334772590660533 W
+Power-Thermal : 3.8742274093394675 W
+VStack : 0.7632256133325943 V
+Vcell : 0.7632256133325943 V
+###########
+I :8.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4115146608337906 V
+Eta Concentration : 0.0018766253843696022 V
+Eta Ohmic : 0.015135455501895803 V
+Loss : 0.42852674172005606 V
+PEM Efficiency : 0.48860465274355386
+Power : 6.402675369551529 W
+Power-Stack : 6.402675369551529 W
+Power-Thermal : 3.9293246304484706 W
+VStack : 0.762223258279944 V
+Vcell : 0.762223258279944 V
+###########
+I :8.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4122984327031134 V
+Eta Concentration : 0.001900346663733166 V
+Eta Ohmic : 0.015321104340766395 V
+Loss : 0.42951988370761296 V
+PEM Efficiency : 0.4879680232643506
+Power : 6.4704559884852895 W
+Power-Stack : 6.4704559884852895 W
+Power-Thermal : 3.98454401151471 W
+VStack : 0.761230116292387 V
+Vcell : 0.761230116292387 V
+###########
+I :8.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.41307303743974805 V
+Eta Concentration : 0.0019241031640144328 V
+Eta Ohmic : 0.015506892121713866 V
+Loss : 0.4305040327254763 V
+PEM Efficiency : 0.48733715850931003
+Power : 6.538115318560903 W
+Power-Stack : 6.538115318560903 W
+Power-Thermal : 4.039884681439096 W
+VStack : 0.7602459672745236 V
+Vcell : 0.7602459672745236 V
+###########
+I :8.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4138386870076854 V
+Eta Concentration : 0.0019478949899596862 V
+Eta Ohmic : 0.01569281925824383 V
+Loss : 0.4314794012558889 V
+PEM Efficiency : 0.486711922271866
+Power : 6.605654209073766 W
+Power-Stack : 6.605654209073766 W
+Power-Thermal : 4.095345790926233 W
+VStack : 0.7592705987441111 V
+Vcell : 0.7592705987441111 V
+###########
+I :8.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.41459558610325753 V
+Eta Concentration : 0.0019717222467831716 V
+Eta Ohmic : 0.01587888616606296 V
+Loss : 0.43244619451610367 V
+PEM Efficiency : 0.4860921830024976
+Power : 6.6730734882582885 W
+Power-Stack : 6.6730734882582885 W
+Power-Thermal : 4.150926511741712 W
+VStack : 0.7583038054838963 V
+Vcell : 0.7583038054838963 V
+###########
+I :8.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4153439324836372 V
+Eta Concentration : 0.0019955850401698915 V
+Eta Ohmic : 0.016065093263071917 V
+Loss : 0.43340461078687903 V
+PEM Efficiency : 0.48547781359815445
+Power : 6.7403739639967775 W
+Power-Stack : 6.7403739639967775 W
+Power-Thermal : 4.2066260360032235 W
+VStack : 0.757345389213121 V
+Vcell : 0.757345389213121 V
+###########
+I :9.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.41608391727698485 V
+Eta Concentration : 0.0020194834762784237 V
+Eta Ohmic : 0.016251440969358325 V
+Loss : 0.4343548417226216 V
+PEM Efficiency : 0.48486869120344767
+Power : 6.807556424496405 W
+Power-Stack : 6.807556424496405 W
+Power-Thermal : 4.262443575503594 W
+VStack : 0.7563951582773784 V
+Vcell : 0.7563951582773784 V
+###########
+I :9.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4168157252754582 V
+Eta Concentration : 0.002043417661743748 V
+Eta Ohmic : 0.016437929707190036 V
+Loss : 0.435297072644392 V
+PEM Efficiency : 0.4842646970228256
+Power : 6.874621638936032 W
+Power-Stack : 6.874621638936032 W
+Power-Thermal : 4.318378361063967 W
+VStack : 0.755452927355608 V
+Vcell : 0.755452927355608 V
+###########
+I :9.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.41753953521221054 V
+Eta Concentration : 0.0020673877036801 V
+Eta Ohmic : 0.016624559901008456 V
+Loss : 0.4362314828168991 V
+PEM Efficiency : 0.4836657161430133
+Power : 6.941570358084527 W
+Power-Stack : 6.941570358084527 W
+Power-Thermal : 4.374429641915472 W
+VStack : 0.7545185171831008 V
+Vcell : 0.7545185171831008 V
+###########
+I :9.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4182555200234147 V
+Eta Concentration : 0.0020913937096838516 V
+Eta Ohmic : 0.016811331977422073 V
+Loss : 0.43715824571052064 V
+PEM Efficiency : 0.4830716373650508
+Power : 7.008403314892158 W
+Power-Stack : 7.008403314892158 W
+Power-Thermal : 4.430596685107842 W
+VStack : 0.7535917542894793 V
+Vcell : 0.7535917542894793 V
+###########
+I :9.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.41896384709627427 V
+Eta Concentration : 0.002115435787836413 V
+Eta Ohmic : 0.01699824636520006 V
+Loss : 0.4380775292493107 V
+PEM Efficiency : 0.4824823530453136
+Power : 7.07512122505648 W
+Power-Stack : 7.07512122505648 W
+Power-Thermal : 4.48687877494352 W
+VStack : 0.7526724707506893 V
+Vcell : 0.7526724707506893 V
+###########
+I :9.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4196646785039116 V
+Eta Concentration : 0.002139514046707137 V
+Eta Ohmic : 0.0171853034952661 V
+Loss : 0.43898949604588483 V
+PEM Efficiency : 0.4818977589449456
+Power : 7.141724787564093 W
+Power-Stack : 7.141724787564093 W
+Power-Thermal : 4.543275212435907 W
+VStack : 0.7517605039541151 V
+Vcell : 0.7517605039541151 V
+###########
+I :9.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4203581712279578 V
+Eta Concentration : 0.0021636285953562776 V
+Eta Ohmic : 0.01737250380069231 V
+Loss : 0.43989430362400644 V
+PEM Efficiency : 0.48131775408717536
+Power : 7.208214685209538 W
+Power-Stack : 7.208214685209538 W
+Power-Thermal : 4.599785314790461 W
+VStack : 0.7508556963759936 V
+Vcell : 0.7508556963759936 V
+###########
+I :9.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.42104447736960865 V
+Eta Concentration : 0.0021877795433379475 V
+Eta Ohmic : 0.017559847716693274 V
+Loss : 0.44079210462963986 V
+PEM Efficiency : 0.48074224062202564
+Power : 7.274591585092492 W
+Power-Stack : 7.274591585092492 W
+Power-Thermal : 4.6564084149075065 W
+VStack : 0.7499578953703601 V
+Vcell : 0.7499578953703601 V
+###########
+I :9.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.42172374434985627 V
+Eta Concentration : 0.0022119670007030995 V
+Eta Ohmic : 0.017747335680620244 V
+Loss : 0.4416830470311796 V
+PEM Efficiency : 0.4801711236979618
+Power : 7.34085613909444 W
+Power-Stack : 7.34085613909444 W
+Power-Thermal : 4.713143860905561 W
+VStack : 0.7490669529688203 V
+Vcell : 0.7490669529688203 V
+###########
+I :9.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.42239611509955666 V
+Eta Concentration : 0.00223619107800254 V
+Eta Ohmic : 0.01793496813195546 V
+Loss : 0.44256727430951465 V
+PEM Efficiency : 0.47960431134005477
+Power : 7.407008984335805 W
+Power-Stack : 7.407008984335805 W
+Power-Thermal : 4.7699910156641945 W
+VStack : 0.7481827256904854 V
+Vcell : 0.7481827256904854 V
+###########
+I :10.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4230617282399456 V
+Eta Concentration : 0.002260451886289963 V
+Eta Ohmic : 0.018122745512306554 V
+Loss : 0.4434449256385421 V
+PEM Efficiency : 0.47904171433426784
+Power : 7.4730507436145786 W
+Power-Stack : 7.4730507436145786 W
+Power-Thermal : 4.826949256385421 W
+VStack : 0.7473050743614579 V
+Vcell : 0.7473050743614579 V
+###########
+I :10.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4237207182541727 V
+Eta Concentration : 0.0022847495371250046 V
+Eta Ohmic : 0.018310668265401155 V
+Loss : 0.44431613605669884 V
+PEM Efficiency : 0.47848324611750076
+Power : 7.538982025827341 W
+Power-Stack : 7.538982025827341 W
+Power-Thermal : 4.884017974172658 W
+VStack : 0.7464338639433011 V
+Vcell : 0.7464338639433011 V
+###########
+I :10.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.42437321565038555 V
+Eta Concentration : 0.002309084142576311 V
+Eta Ohmic : 0.01849873683708149 V
+Loss : 0.4451810366300433 V
+PEM Efficiency : 0.47792882267304915
+Power : 7.604803426373558 W
+Power-Stack : 7.604803426373558 W
+Power-Thermal : 4.941196573626441 W
+VStack : 0.7455689633699567 V
+Vcell : 0.7455689633699567 V
+###########
+I :10.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.42501934711685846 V
+Eta Concentration : 0.0023334558152246533 V
+Eta Ohmic : 0.01868695167529925 V
+Loss : 0.4460397546073824 V
+PEM Efficiency : 0.47737836243116505
+Power : 7.670515527543961 W
+Power-Stack : 7.670515527543961 W
+Power-Thermal : 4.998484472456039 W
+VStack : 0.7447102453926175 V
+Vcell : 0.7447102453926175 V
+###########
+I :10.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.42565923566962544 V
+Eta Concentration : 0.0023578646681660484 V
+Eta Ohmic : 0.01887531323011039 V
+Loss : 0.4468924135679019 V
+PEM Efficiency : 0.4768317861744218
+Power : 7.73611889889382 W
+Power-Stack : 7.73611889889382 W
+Power-Thermal : 5.05588110110618 W
+VStack : 0.7438575864320981 V
+Vcell : 0.7438575864320981 V
+###########
+I :10.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4262930007930505 V
+Eta Concentration : 0.002382310815014899 V
+Eta Ohmic : 0.019063821953670217 V
+Loss : 0.4477391335617356 V
+PEM Efficiency : 0.4762890169476054
+Power : 7.801614097601776 W
+Power-Stack : 7.801614097601776 W
+Power-Thermal : 5.113385902398224 W
+VStack : 0.7430108664382644 V
+Vcell : 0.7430108664382644 V
+###########
+I :10.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4269207585737348 V
+Eta Concentration : 0.0024067943699071807 V
+Eta Ohmic : 0.019252478300228477 V
+Loss : 0.44858003124387047 V
+PEM Efficiency : 0.4757499799718779
+Power : 7.867001668814972 W
+Power-Stack : 7.867001668814972 W
+Power-Thermal : 5.170998331185027 W
+VStack : 0.7421699687561295 V
+Vcell : 0.7421699687561295 V
+###########
+I :10.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.42754262182813696 V
+Eta Concentration : 0.0024313154475036317 V
+Eta Ohmic : 0.019441282726124533 V
+Loss : 0.44941522000176515 V
+PEM Efficiency : 0.47521460256297104
+Power : 7.932282145981112 W
+Power-Stack : 7.932282145981112 W
+Power-Thermal : 5.228717854018887 W
+VStack : 0.7413347799982348 V
+Vcell : 0.7413347799982348 V
+###########
+I :10.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.42815870022425706 V
+Eta Concentration : 0.0024558741629929722 V
+Eta Ohmic : 0.01963023568978271 V
+Loss : 0.45024481007703276 V
+PEM Efficiency : 0.4746828140531841
+Power : 7.997456051168046 W
+Power-Stack : 7.997456051168046 W
+Power-Thermal : 5.286543948831954 W
+VStack : 0.7405051899229672 V
+Vcell : 0.7405051899229672 V
+###########
+I :10.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4287691003977132 V
+Eta Concentration : 0.0024804706320951542 V
+Eta Ohmic : 0.019819337651707687 V
+Loss : 0.45106890868151606 V
+PEM Efficiency : 0.47415454571697685
+Power : 8.062523895371475 W
+Power-Stack : 8.062523895371475 W
+Power-Thermal : 5.344476104628526 W
+VStack : 0.7396810913184839 V
+Vcell : 0.7396810913184839 V
+###########
+I :11.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.42937392606251745 V
+Eta Concentration : 0.0025051049710646386 V
+Eta Ohmic : 0.02000858907448001 V
+Loss : 0.4518876201080621 V
+PEM Efficiency : 0.4736297306999601
+Power : 8.127486178811315 W
+Power-Stack : 8.127486178811315 W
+Power-Thermal : 5.402513821188684 W
+VStack : 0.7388623798919378 V
+Vcell : 0.7388623798919378 V
+###########
+I :11.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4299732781168387 V
+Eta Concentration : 0.0025297772966936844 V
+Eta Ohmic : 0.020197990422751725 V
+Loss : 0.4527010458362841 V
+PEM Efficiency : 0.4731083039510999
+Power : 8.192343391217246 W
+Power-Stack : 8.192343391217246 W
+Power-Thermal : 5.460656608782753 W
+VStack : 0.7380489541637159 V
+Vcell : 0.7380489541637159 V
+###########
+I :11.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.43056725474402346 V
+Eta Concentration : 0.0025544877263156698 V
+Eta Ohmic : 0.020387542163241998 V
+Loss : 0.45350928463358114 V
+PEM Efficiency : 0.4725902021579608
+Power : 8.257096012103892 W
+Power-Stack : 8.257096012103892 W
+Power-Thermal : 5.518903987896108 W
+VStack : 0.7372407153664189 V
+Vcell : 0.7372407153664189 V
+###########
+I :11.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4311559515091255 V
+Eta Concentration : 0.0025792363778084485 V
+Eta Ohmic : 0.02057724476473299 V
+Loss : 0.45431243265166693 V
+PEM Efficiency : 0.47207536368482883
+Power : 8.321744511036163 W
+Power-Stack : 8.321744511036163 W
+Power-Thermal : 5.5772554889638375 W
+VStack : 0.736437567348333 V
+Vcell : 0.736437567348333 V
+###########
+I :11.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4317394614511838 V
+Eta Concentration : 0.002604023369597719 V
+Eta Ohmic : 0.020767098698065634 V
+Loss : 0.45511058351884714 V
+PEM Efficiency : 0.4715637285135595
+Power : 8.386289347885143 W
+Power-Stack : 8.386289347885143 W
+Power-Thermal : 5.635710652114858 W
+VStack : 0.7356394164811528 V
+Vcell : 0.7356394164811528 V
+###########
+I :11.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.43231787517147047 V
+Eta Concentration : 0.0026288488206604207 V
+Eta Ohmic : 0.02095710443613565 V
+Loss : 0.45590382842826654 V
+PEM Efficiency : 0.4710552381870085
+Power : 8.450730973074934 W
+Power-Stack : 8.450730973074934 W
+Power-Thermal : 5.694269026925066 W
+VStack : 0.7348461715717334 V
+Vcell : 0.7348461715717334 V
+###########
+I :11.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4328912809179183 V
+Eta Concentration : 0.0026537128505281678 V
+Eta Ohmic : 0.021147262453889558 V
+Loss : 0.456692256222336 V
+PEM Efficiency : 0.47054983575491277
+Power : 8.515069827820902 W
+Power-Stack : 8.515069827820902 W
+Power-Thermal : 5.752930172179098 W
+VStack : 0.734057743777664 V
+Vcell : 0.734057743777664 V
+###########
+I :11.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4334597646659246 V
+Eta Concentration : 0.0026786155792907 V
+Eta Ohmic : 0.021337573228320833 V
+Loss : 0.4574759534735362 V
+PEM Efficiency : 0.47004746572209216
+Power : 8.579306344359626 W
+Power-Stack : 8.579306344359626 W
+Power-Thermal : 5.811693655640373 W
+VStack : 0.7332740465264638 V
+Vcell : 0.7332740465264638 V
+###########
+I :11.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4340234101957164 V
+Eta Concentration : 0.0027035571275993596 V
+Eta Ohmic : 0.021528037238466056 V
+Loss : 0.4582550045617818 V
+PEM Efficiency : 0.46954807399885773
+Power : 8.643440946170974 W
+Power-Stack : 8.643440946170974 W
+Power-Thermal : 5.870559053829026 W
+VStack : 0.7324949954382182 V
+Vcell : 0.7324949954382182 V
+###########
+I :11.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4345822991664513 V
+Eta Concentration : 0.0027285376166705983 V
+Eta Ohmic : 0.02171865496540124 V
+Loss : 0.45902949174852314 V
+PEM Efficiency : 0.4690516078535108
+Power : 8.707474048192575 W
+Power-Stack : 8.707474048192575 W
+Power-Thermal : 5.929525951807426 W
+VStack : 0.7317205082514768 V
+Vcell : 0.7317205082514768 V
+###########
+I :12.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.43513651118721774 V
+Eta Concentration : 0.002753557168289522 V
+Eta Ohmic : 0.021909426892238147 V
+Loss : 0.4597994952477454 V
+PEM Efficiency : 0.46855801586682994
+Power : 8.771406057027056 W
+Power-Stack : 8.771406057027056 W
+Power-Thermal : 5.988593942972944 W
+VStack : 0.7309505047522546 V
+Vcell : 0.7309505047522546 V
+###########
+I :12.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4356861238850892 V
+Eta Concentration : 0.0027786159048134415 V
+Eta Ohmic : 0.022100353504120752 V
+Loss : 0.4605650932940234 V
+PEM Efficiency : 0.4680672478884465
+Power : 8.835237371142316 W
+Power-Stack : 8.835237371142316 W
+Power-Thermal : 6.047762628857683 W
+VStack : 0.7301849067059766 V
+Vcell : 0.7301849067059766 V
+###########
+I :12.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4362312129703774 V
+Eta Concentration : 0.002803713949175465 V
+Eta Ohmic : 0.022291435288221743 V
+Loss : 0.4613263622077746 V
+PEM Efficiency : 0.4675792549950163
+Power : 8.89896838106515 W
+Power-Stack : 8.89896838106515 W
+Power-Thermal : 6.107031618934849 W
+VStack : 0.7294236377922254 V
+Vcell : 0.7294236377922254 V
+###########
+I :12.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4367718522992223 V
+Eta Concentration : 0.0028288514248881237 V
+Eta Ohmic : 0.022482672733739092 V
+Loss : 0.4620833764578495 V
+PEM Efficiency : 0.4670939894500964
+Power : 8.96259946956845 W
+Power-Stack : 8.96259946956845 W
+Power-Thermal : 6.166400530431551 W
+VStack : 0.7286666235421504 V
+Vcell : 0.7286666235421504 V
+###########
+I :12.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.43730811393364766 V
+Eta Concentration : 0.002854028456047013 V
+Eta Ohmic : 0.022674066331892694 V
+Loss : 0.4628362087215873 V
+PEM Efficiency : 0.46661140466564904
+Power : 9.026131011852316 W
+Power-Stack : 9.026131011852316 W
+Power-Thermal : 6.225868988147684 W
+VStack : 0.7279137912784126 V
+Vcell : 0.7279137912784126 V
+###########
+I :12.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4378400681992055 V
+Eta Concentration : 0.002879245167334464 V
+Eta Ohmic : 0.022865616575921104 V
+Loss : 0.4635849299424611 V
+PEM Efficiency : 0.466131455165089
+Power : 9.089563375719237 W
+Power-Stack : 9.089563375719237 W
+Power-Thermal : 6.285436624280763 W
+VStack : 0.7271650700575389 V
+Vcell : 0.7271650700575389 V
+###########
+I :12.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4383677837403227 V
+Eta Concentration : 0.002904501684023259 V
+Eta Ohmic : 0.023057323961078336 V
+Loss : 0.46432960938542434 V
+PEM Efficiency : 0.4656540965478049
+Power : 9.152896921743652 W
+Power-Stack : 9.152896921743652 W
+Power-Thermal : 6.345103078256346 W
+VStack : 0.7264203906145756 V
+Vcell : 0.7264203906145756 V
+###########
+I :12.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.43889132757346083 V
+Eta Concentration : 0.0029297981319803598 V
+Eta Ohmic : 0.02324918898463066 V
+Loss : 0.4650703146900719 V
+PEM Efficiency : 0.46517928545508214
+Power : 9.216132003436087 W
+Power-Stack : 9.216132003436087 W
+Power-Thermal : 6.404867996563913 W
+VStack : 0.7256796853099281 V
+Vcell : 0.7256796853099281 V
+###########
+I :12.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4394107651381908 V
+Eta Concentration : 0.0029551346376706675 V
+Eta Ohmic : 0.023441212145853606 V
+Loss : 0.46580711192171503 V
+PEM Efficiency : 0.46470697953736206
+Power : 9.279268967402047 W
+Power-Stack : 9.279268967402047 W
+Power-Thermal : 6.464731032597953 W
+VStack : 0.7249428880782849 V
+Vcell : 0.7249428880782849 V
+###########
+I :12.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4399261603462802 V
+Eta Concentration : 0.0029805113281608253 V
+Eta Ohmic : 0.023633393946028855 V
+Loss : 0.4665400656204699 V
+PEM Efficiency : 0.4642371374227756
+Power : 9.342308153495939 W
+Power-Stack : 9.342308153495939 W
+Power-Thermal : 6.524691846504062 W
+VStack : 0.7242099343795301 V
+Vcell : 0.7242099343795301 V
+###########
+I :13.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4404375756288853 V
+Eta Concentration : 0.0030059283311230298 V
+Eta Ohmic : 0.023825734888441343 V
+Loss : 0.4672692388484497 V
+PEM Efficiency : 0.4637697186868912
+Power : 9.405249894970154 W
+Power-Stack : 9.405249894970154 W
+Power-Thermal : 6.584750105029845 W
+VStack : 0.7234807611515504 V
+Vcell : 0.7234807611515504 V
+###########
+I :13.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4409450719819352 V
+Eta Concentration : 0.0030313857748389007 V
+Eta Ohmic : 0.02401823547837639 V
+Loss : 0.4679946932351505 V
+PEM Efficiency : 0.4633046838236214
+Power : 9.468094518619527 W
+Power-Stack : 9.468094518619527 W
+Power-Thermal : 6.644905481380472 W
+VStack : 0.7227553067648494 V
+Vcell : 0.7227553067648494 V
+###########
+I :13.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4414487090097896 V
+Eta Concentration : 0.0030568837882033475 V
+Eta Ohmic : 0.024210896223116743 V
+Loss : 0.4687164890211097 V
+PEM Efficiency : 0.4628419942172373
+Power : 9.53084234492135 W
+Power-Stack : 9.53084234492135 W
+Power-Thermal : 6.705157655078648 W
+VStack : 0.7220335109788902 V
+Vcell : 0.7220335109788902 V
+###########
+I :13.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.44194854496724945 V
+Eta Concentration : 0.0030824225007285017 V
+Eta Ohmic : 0.02440371763194001 V
+Loss : 0.4694346850999179 V
+PEM Efficiency : 0.4623816121154372
+Power : 9.593493688171092 W
+Power-Stack : 9.593493688171092 W
+Power-Thermal : 6.765506311828909 W
+VStack : 0.721315314900082 V
+Vcell : 0.721315314900082 V
+###########
+I :13.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4424446367999945 V
+Eta Concentration : 0.003108002042547655 V
+Eta Ohmic : 0.02459670021611572 V
+Loss : 0.47014933905865786 V
+PEM Efficiency : 0.46192350060342446
+Power : 9.656048856613985 W
+Power-Stack : 9.656048856613985 W
+Power-Thermal : 6.825951143386016 W
+VStack : 0.7206006609413421 V
+Vcell : 0.7206006609413421 V
+###########
+I :13.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.44293704018351693 V
+Eta Concentration : 0.003133622544419236 V
+Eta Ohmic : 0.024789844488902844 V
+Loss : 0.47086050721683903 V
+PEM Efficiency : 0.4614676235789493
+Power : 9.718508152572673 W
+Power-Stack : 9.718508152572673 W
+Power-Thermal : 6.886491847427327 W
+VStack : 0.719889492783161 V
+Vcell : 0.719889492783161 V
+###########
+I :13.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4434258095606185 V
+Eta Concentration : 0.0031592841377308294 V
+Eta Ohmic : 0.024983150965547072 V
+Loss : 0.4715682446638964 V
+PEM Efficiency : 0.4610139457282714
+Power : 9.780871872571007 W
+Power-Stack : 9.780871872571007 W
+Power-Thermal : 6.947128127428992 W
+VStack : 0.7191817553361035 V
+Vcell : 0.7191817553361035 V
+###########
+I :13.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4439109981775343 V
+Eta Concentration : 0.0031849869545032077 V
+Eta Ohmic : 0.025176620163278356 V
+Loss : 0.4722726052953159 V
+PEM Efficiency : 0.4605624325030026
+Power : 9.84314030745417 W
+Power-Stack : 9.84314030745417 W
+Power-Thermal : 7.007859692545828 W
+VStack : 0.7184773947046841 V
+Vcell : 0.7184773947046841 V
+###########
+I :13.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4443926581187426 V
+Eta Concentration : 0.0032107311273944176 V
+Eta Ohmic : 0.025370252601308346 V
+Loss : 0.47297364184744534 V
+PEM Efficiency : 0.46011305009779147
+Power : 9.905313742505255 W
+Power-Stack : 9.905313742505255 W
+Power-Thermal : 7.068686257494745 W
+VStack : 0.7177763581525547 V
+Vcell : 0.7177763581525547 V
+###########
+I :13.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4448708403405184 V
+Eta Concentration : 0.003236516789703883 V
+Eta Ohmic : 0.02556404880082802 V
+Loss : 0.4736714059310503 V
+PEM Efficiency : 0.45966576542881393
+Power : 9.9673924575584 W
+Power-Stack : 9.9673924575584 W
+Power-Thermal : 7.129607542441599 W
+VStack : 0.7170785940689497 V
+Vcell : 0.7170785940689497 V
+###########
+I :14.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4453455947032834 V
+Eta Concentration : 0.003262344075376541 V
+Eta Ohmic : 0.025758009285005212 V
+Loss : 0.47436594806366517 V
+PEM Efficiency : 0.4592205461130351
+Power : 10.029376727108687 W
+Power-Stack : 10.029376727108687 W
+Power-Thermal : 7.190623272891313 W
+VStack : 0.7163840519363348 V
+Vcell : 0.7163840519363348 V
+###########
+I :14.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.44581697000280635 V
+Eta Concentration : 0.0032882131190070272 V
+Eta Ohmic : 0.02595213457898239 V
+Loss : 0.47505731770079573 V
+PEM Efficiency : 0.4587773604482078
+Power : 10.09126682041878 W
+Power-Stack : 10.09126682041878 W
+Power-Thermal : 7.25173317958122 W
+VStack : 0.7156926822992042 V
+Vcell : 0.7156926822992042 V
+###########
+I :14.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.44628501400029896 V
+Eta Concentration : 0.0033141240558438737 V
+Eta Ohmic : 0.026146425209874233 V
+Loss : 0.4757455632660171 V
+PEM Efficiency : 0.4583361773935788
+Power : 10.153063001622558 W
+Power-Stack : 10.153063001622558 W
+Power-Thermal : 7.312936998377442 W
+VStack : 0.715004436733983 V
+Vcell : 0.715004436733983 V
+###########
+I :14.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.44674977345145717 V
+Eta Concentration : 0.0033400770217937637 V
+Eta Ohmic : 0.02634088170676554 V
+Loss : 0.47643073218001647 V
+PEM Efficiency : 0.4578969665512714
+Power : 10.214765529825764 W
+Power-Stack : 10.214765529825764 W
+Power-Thermal : 7.374234470174237 W
+VStack : 0.7143192678199834 V
+Vcell : 0.7143192678199834 V
+###########
+I :14.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4472112941344899 V
+Eta Concentration : 0.0033660721534257932 V
+Eta Ohmic : 0.026535504600708918 V
+Loss : 0.4771128708886246 V
+PEM Efficiency : 0.4574596981483176
+Power : 10.276374659203807 W
+Power-Stack : 10.276374659203807 W
+Power-Thermal : 7.435625340796194 W
+VStack : 0.7136371291113754 V
+Vcell : 0.7136371291113754 V
+###########
+I :14.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4476696208771782 V
+Eta Concentration : 0.0033921095879757986 V
+Eta Ohmic : 0.026730294424722724 V
+Loss : 0.47779202488987677 V
+PEM Efficiency : 0.45702434301930966
+Power : 10.337890639096786 W
+Power-Stack : 10.337890639096786 W
+Power-Thermal : 7.497109360903214 W
+VStack : 0.7129579751101232 V
+Vcell : 0.7129579751101232 V
+###########
+I :14.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.44812479758300416 V
+Eta Concentration : 0.0034181894633506975 V
+Eta Ohmic : 0.026925251713788956 V
+Loss : 0.4784682387601438 V
+PEM Efficiency : 0.4565908725896514
+Power : 10.3993137141019 W
+Power-Stack : 10.3993137141019 W
+Power-Thermal : 7.558686285898099 W
+VStack : 0.7122817612398562 V
+Vcell : 0.7122817612398562 V
+###########
+I :14.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.44857686725638835 V
+Eta Concentration : 0.0034443119181328612 V
+Eta Ohmic : 0.02712037700485118 V
+Loss : 0.47914155617937243 V
+PEM Efficiency : 0.45615925885937664
+Power : 10.460644124163226 W
+Power-Stack : 10.460644124163226 W
+Power-Thermal : 7.620355875836774 W
+VStack : 0.7116084438206276 V
+Vcell : 0.7116084438206276 V
+###########
+I :14.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.44902587202707167 V
+Eta Concentration : 0.003470477091584555 V
+Eta Ohmic : 0.02731567083681255 V
+Loss : 0.47981201995546874 V
+PEM Efficiency : 0.45572947438752
+Power : 10.521882104659063 W
+Power-Stack : 10.521882104659063 W
+Power-Thermal : 7.682117895340938 W
+VStack : 0.7109379800445312 V
+Vcell : 0.7109379800445312 V
+###########
+I :14.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4494718531736761 V
+Eta Concentration : 0.003496685123652368 V
+Eta Ohmic : 0.027511133750533878 V
+Loss : 0.48047967204786235 V
+PEM Efficiency : 0.4553014922770113
+Power : 10.583027886486851 W
+Power-Stack : 10.583027886486851 W
+Power-Thermal : 7.743972113513149 W
+VStack : 0.7102703279521376 V
+Vcell : 0.7102703279521376 V
+###########
+I :15.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.44991485114647767 V
+Eta Concentration : 0.003522936154971726 V
+Eta Ohmic : 0.027706766288831654 V
+Loss : 0.4811445535902811 V
+PEM Efficiency : 0.45487528616007616
+Power : 10.644081696145783 W
+Power-Stack : 10.644081696145783 W
+Power-Thermal : 7.805918303854217 W
+VStack : 0.7096054464097189 V
+Vcell : 0.7096054464097189 V
+###########
+I :15.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.45035490558942254 V
+Eta Concentration : 0.0035492303268714076 V
+Eta Ohmic : 0.02790256899647628 V
+Loss : 0.4818067049127703 V
+PEM Efficiency : 0.4544508301841216
+Power : 10.705043755817167 W
+Power-Stack : 10.705043755817167 W
+Power-Thermal : 7.867956244182832 W
+VStack : 0.7089432950872296 V
+Vcell : 0.7089432950872296 V
+###########
+I :15.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4507920553614167 V
+Eta Concentration : 0.0035755677813781067 V
+Eta Ohmic : 0.028098542420190116 V
+Loss : 0.48246616556298494 V
+PEM Efficiency : 0.45402809899808655
+Power : 10.765914283442628 W
+Power-Stack : 10.765914283442628 W
+Power-Thermal : 7.930085716557371 W
+VStack : 0.708283834437015 V
+Vcell : 0.708283834437015 V
+###########
+I :15.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.45122633855691774 V
+Eta Concentration : 0.0036019486612210486 V
+Eta Ohmic : 0.028294687108645848 V
+Loss : 0.48312297432678464 V
+PEM Efficiency : 0.4536070677392406
+Power : 10.826693492800196 W
+Power-Stack : 10.826693492800196 W
+Power-Thermal : 7.992306507199806 W
+VStack : 0.7076270256732153 V
+Vcell : 0.7076270256732153 V
+###########
+I :15.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.45165779252585525 V
+Eta Concentration : 0.0036283731098366158 V
+Eta Ohmic : 0.028491003612464604 V
+Loss : 0.48377716924815645 V
+PEM Efficiency : 0.45318771202041247
+Power : 10.88738159357839 W
+Power-Stack : 10.88738159357839 W
+Power-Thermal : 8.05461840642161 W
+VStack : 0.7069728307518435 V
+Vcell : 0.7069728307518435 V
+###########
+I :15.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4520864538929076 V
+Eta Concentration : 0.003654841271373039 V
+Eta Ohmic : 0.02868749248421435 V
+Loss : 0.484428787648495 V
+PEM Efficiency : 0.4527700079176314
+Power : 10.947978791448328 W
+Power-Stack : 10.947978791448328 W
+Power-Thermal : 8.117021208551671 W
+VStack : 0.706321212351505 V
+Vcell : 0.706321212351505 V
+###########
+I :15.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4525123585761575 V
+Eta Concentration : 0.0036813532906951126 V
+Eta Ohmic : 0.028884154278408184 V
+Loss : 0.4850778661452608 V
+PEM Efficiency : 0.4523539319581661
+Power : 11.008485288133931 W
+Power-Stack : 11.008485288133931 W
+Power-Thermal : 8.17951471186607 W
+VStack : 0.7056721338547391 V
+Vcell : 0.7056721338547391 V
+###########
+I :15.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.45293554180515305 V
+Eta Concentration : 0.003707909313388942 V
+Eta Ohmic : 0.029080989551502734 V
+Loss : 0.4857244406700447 V
+PEM Efficiency : 0.4519394611089457
+Power : 11.068901281480297 W
+Power-Stack : 11.068901281480297 W
+Power-Thermal : 8.242098718519701 W
+VStack : 0.7050255593299553 V
+Vcell : 0.7050255593299553 V
+###########
+I :15.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.45335603813839387 V
+Eta Concentration : 0.003734509485766759 V
+Eta Ohmic : 0.029277998861896554 V
+Loss : 0.48636854648605715 V
+PEM Efficiency : 0.45152657276534797
+Power : 11.129226965520296 W
+Power-Stack : 11.129226965520296 W
+Power-Thermal : 8.304773034479703 W
+VStack : 0.7043814535139428 V
+Vcell : 0.7043814535139428 V
+###########
+I :15.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.453773881480267 V
+Eta Concentration : 0.003761153954871737 V
+Eta Ohmic : 0.029475182769928606 V
+Loss : 0.48701021820506735 V
+PEM Efficiency : 0.4511152447403414
+Power : 11.18946253053943 W
+Power-Stack : 11.18946253053943 W
+Power-Thermal : 8.36753746946057 W
+VStack : 0.7037397817949327 V
+Vcell : 0.7037397817949327 V
+###########
+I :16.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4541891050974507 V
+Eta Concentration : 0.003787842868482889 V
+Eta Ohmic : 0.029672541837876737 V
+Loss : 0.4876494898038103 V
+PEM Efficiency : 0.4507054552539677
+Power : 11.249608163139035 W
+Power-Stack : 11.249608163139035 W
+Power-Thermal : 8.430391836860965 W
+VStack : 0.7031005101961897 V
+Vcell : 0.7031005101961897 V
+###########
+I :16.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4546017416348083 V
+Eta Concentration : 0.0038145763751199716 V
+Eta Ohmic : 0.02987007662995623 V
+Loss : 0.4882863946398845 V
+PEM Efficiency : 0.4502971829231509
+Power : 11.30966404629786 W
+Power-Stack : 11.30966404629786 W
+Power-Thermal : 8.493335953702141 W
+VStack : 0.7024636053601154 V
+Vcell : 0.7024636053601154 V
+###########
+I :16.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.45501182313078914 V
+Eta Concentration : 0.0038413546240484452 V
+Eta Ohmic : 0.030067787712318318 V
+Loss : 0.4889209654671559 V
+PEM Efficiency : 0.4498904067518231
+Power : 11.369630359432074 W
+Power-Stack : 11.369630359432074 W
+Power-Thermal : 8.556369640567926 W
+VStack : 0.7018290345328441 V
+Vcell : 0.7018290345328441 V
+###########
+I :16.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4554193810323558 V
+Eta Concentration : 0.003868177765284484 V
+Eta Ohmic : 0.030265675653048885 V
+Loss : 0.48955323445068916 V
+PEM Efficiency : 0.449485106121353
+Power : 11.429507278453766 W
+Power-Stack : 11.429507278453766 W
+Power-Thermal : 8.619492721546235 W
+VStack : 0.7011967655493108 V
+Vcell : 0.7011967655493108 V
+###########
+I :16.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.45582444620945517 V
+Eta Concentration : 0.003895045949600003 V
+Eta Ohmic : 0.030463741022166962 V
+Loss : 0.49018323318122214 V
+PEM Efficiency : 0.44908126078126787
+Power : 11.489294975827955 W
+Power-Stack : 11.489294975827955 W
+Power-Thermal : 8.682705024172042 W
+VStack : 0.7005667668187778 V
+Vcell : 0.7005667668187778 V
+###########
+I :16.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.45622704896904953 V
+Eta Concentration : 0.00392195932852776 V
+Eta Ohmic : 0.03066198439162355 V
+Loss : 0.4908109926892008 V
+PEM Efficiency : 0.4486788508402559
+Power : 11.548993620628186 W
+Power-Stack : 11.548993620628186 W
+Power-Thermal : 8.746006379371813 W
+VStack : 0.6999390073107992 V
+Vcell : 0.6999390073107992 V
+###########
+I :16.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4566272190687233 V
+Eta Concentration : 0.003948918054366472 V
+Eta Ohmic : 0.03086040633530024 V
+Loss : 0.49143654345839 V
+PEM Efficiency : 0.44827785675744225
+Power : 11.608603378590725 W
+Power-Stack : 11.608603378590725 W
+Power-Thermal : 8.809396621409276 W
+VStack : 0.6993134565416099 V
+Vcell : 0.6993134565416099 V
+###########
+I :16.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4570249857298818 V
+Eta Concentration : 0.003975922280185988 V
+Eta Ohmic : 0.031059007429007985 V
+Loss : 0.4920599154390758 V
+PEM Efficiency : 0.4478782593339258
+Power : 11.668124412167433 W
+Power-Stack : 11.668124412167433 W
+Power-Thermal : 8.872875587832565 W
+VStack : 0.6986900845609242 V
+Vcell : 0.6986900845609242 V
+###########
+I :16.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.45742037765055565 V
+Eta Concentration : 0.004002972159832509 V
+Eta Ohmic : 0.03125778825048585 V
+Loss : 0.49268113806087405 V
+PEM Efficiency : 0.4474800397045679
+Power : 11.727556880577318 W
+Power-Stack : 11.727556880577318 W
+Power-Thermal : 8.936443119422684 W
+VStack : 0.698068861939126 V
+Vcell : 0.698068861939126 V
+###########
+I :16.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4578134230178251 V
+Eta Concentration : 0.004030067847933837 V
+Eta Ohmic : 0.031456749379399844 V
+Loss : 0.49330024024515884 V
+PEM Efficiency : 0.44708317933002634
+Power : 11.786900939856814 W
+Power-Stack : 11.786900939856814 W
+Power-Thermal : 9.000099060143183 W
+VStack : 0.6974497597548411 V
+Vcell : 0.6974497597548411 V
+###########
+I :17.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4582041495198784 V
+Eta Concentration : 0.0040572094999046905 V
+Eta Ohmic : 0.03165589139734175 V
+Loss : 0.49391725041712486 V
+PEM Efficiency : 0.4466876599890225
+Power : 11.846156742908876 W
+Power-Stack : 11.846156742908876 W
+Power-Thermal : 9.063843257091122 W
+VStack : 0.6968327495828751 V
+Vcell : 0.6968327495828751 V
+###########
+I :17.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4585925843577159 V
+Eta Concentration : 0.004084397271952049 V
+Eta Ohmic : 0.03185521488782804 V
+Loss : 0.49453219651749597 V
+PEM Efficiency : 0.4462934637708359
+Power : 11.905324439550819 W
+Power-Stack : 11.905324439550819 W
+Power-Thermal : 9.127675560449182 W
+VStack : 0.696217803482504 V
+Vcell : 0.696217803482504 V
+###########
+I :17.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4589787542565131 V
+Eta Concentration : 0.0041116313210805356 V
+Eta Ohmic : 0.03205472043629867 V
+Loss : 0.49514510601389233 V
+PEM Efficiency : 0.4459005730680177
+Power : 11.964404176561052 W
+Power-Stack : 11.964404176561052 W
+Power-Thermal : 9.191595823438947 W
+VStack : 0.6956048939861077 V
+Vcell : 0.6956048939861077 V
+###########
+I :17.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4593626854766547 V
+Eta Concentration : 0.0041389118050978784 V
+Eta Ohmic : 0.032254408630116214 V
+Loss : 0.4957560059118688 V
+PEM Efficiency : 0.4455089705693148
+Power : 12.02339609772467 W
+Power-Stack : 12.02339609772467 W
+Power-Thermal : 9.255603902275332 W
+VStack : 0.6949939940881311 V
+Vcell : 0.6949939940881311 V
+###########
+I :17.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4597444038244504 V
+Eta Concentration : 0.004166238882620375 V
+Eta Ohmic : 0.03245428005856456 V
+Loss : 0.4963649227656353 V
+PEM Efficiency : 0.4451186392527979
+Power : 12.082300343877945 W
+Power-Stack : 12.082300343877945 W
+Power-Thermal : 9.319699656122053 W
+VStack : 0.6943850772343647 V
+Vcell : 0.6943850772343647 V
+###########
+I :17.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.46012393466254337 V
+Eta Concentration : 0.0041936127130784455 V
+Eta Ohmic : 0.032654335312848184 V
+Loss : 0.49697188268847 V
+PEM Efficiency : 0.4447295623791859
+Power : 12.141117052951776 W
+Power-Stack : 12.141117052951776 W
+Power-Thermal : 9.383882947048225 W
+VStack : 0.69377811731153 V
+Vcell : 0.69377811731153 V
+###########
+I :17.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.46050130292002256 V
+Eta Concentration : 0.004221033456722202 V
+Eta Ohmic : 0.032854574986090956 V
+Loss : 0.4975769113628357 V
+PEM Efficiency : 0.4443417234853617
+Power : 12.199846360014092 W
+Power-Stack : 12.199846360014092 W
+Power-Thermal : 9.44815363998591 W
+VStack : 0.6931730886371643 V
+Vcell : 0.6931730886371643 V
+###########
+I :17.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.46087653310224846 V
+Eta Concentration : 0.004248501274627073 V
+Eta Ohmic : 0.03305499967333537 V
+Loss : 0.4981800340502109 V
+PEM Efficiency : 0.4439551063780699
+Power : 12.258488397311265 W
+Power-Stack : 12.258488397311265 W
+Power-Thermal : 9.512511602688733 W
+VStack : 0.692569965949789 V
+Vcell : 0.692569965949789 V
+###########
+I :17.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.46124964930040224 V
+Eta Concentration : 0.0042760163286995 V
+Eta Ohmic : 0.03325560997154148 V
+Loss : 0.4987812756006432 V
+PEM Efficiency : 0.4435696951277928
+Power : 12.31704329430855 W
+Power-Stack : 12.31704329430855 W
+Power-Thermal : 9.57695670569145 W
+VStack : 0.6919687243993567 V
+Vcell : 0.6919687243993567 V
+###########
+I :17.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4616206752007668 V
+Eta Concentration : 0.0043035787816826385 V
+Eta Ohmic : 0.033456406479586136 V
+Loss : 0.49938066046203555 V
+PEM Efficiency : 0.4431854740627977
+Power : 12.375511177729562 W
+Power-Stack : 12.375511177729562 W
+Power-Thermal : 9.641488822270436 W
+VStack : 0.6913693395379644 V
+Vcell : 0.6913693395379644 V
+###########
+I :18.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4619896340937498 V
+Eta Concentration : 0.004331188797162155 V
+Eta Ohmic : 0.033657389798262084 V
+Loss : 0.4999782126891741 V
+PEM Efficiency : 0.44280242776334994
+Power : 12.433892171594866 W
+Power-Stack : 12.433892171594866 W
+Power-Thermal : 9.706107828405134 W
+VStack : 0.6907717873108259 V
+Vcell : 0.6907717873108259 V
+###########
+I :18.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4623565488826571 V
+Eta Concentration : 0.00435884653957204 V
+Eta Ohmic : 0.03385856053027712 V
+Loss : 0.5005739559525063 V
+PEM Efficiency : 0.44242054105608564
+Power : 12.492186397259637 W
+Power-Stack : 12.492186397259637 W
+Power-Thermal : 9.770813602740365 W
+VStack : 0.6901760440474937 V
+Vcell : 0.6901760440474937 V
+###########
+I :18.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4627214420922232 V
+Eta Concentration : 0.004386552174200485 V
+Eta Ohmic : 0.034059919280253294 V
+Loss : 0.501167913546677 V
+PEM Efficiency : 0.44203979900854035
+Power : 12.550393973450477 W
+Power-Stack : 12.550393973450477 W
+Power-Thermal : 9.835606026549522 W
+VStack : 0.689582086453323 V
+Vcell : 0.689582086453323 V
+###########
+I :18.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.46308433587690956 V
+Eta Concentration : 0.00441430586719582 V
+Eta Ohmic : 0.034261466654726166 V
+Loss : 0.5017601083988316 V
+PEM Efficiency : 0.4416601869238259
+Power : 12.608515016301382 W
+Power-Stack : 12.608515016301382 W
+Power-Thermal : 9.900484983698618 W
+VStack : 0.6889898916011684 V
+Vcell : 0.6889898916011684 V
+###########
+I :18.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4634452520289756 V
+Eta Concentration : 0.004442107785572472 V
+Eta Ohmic : 0.034463203262144054 V
+Loss : 0.5023505630766921 V
+PEM Efficiency : 0.4412816903354537
+Power : 12.666549639388863 W
+Power-Stack : 12.666549639388863 W
+Power-Thermal : 9.965450360611134 W
+VStack : 0.6883994369233079 V
+Vcell : 0.6883994369233079 V
+###########
+I :18.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4638042119863316 V
+Eta Concentration : 0.004469958097217015 V
+Eta Ohmic : 0.034665129712867275 V
+Loss : 0.5029392997964159 V
+PEM Efficiency : 0.4409042950022975
+Power : 12.724497953766305 W
+Power-Stack : 12.724497953766305 W
+Power-Thermal : 10.030502046233694 W
+VStack : 0.687810700203584 V
+Vcell : 0.687810700203584 V
+###########
+I :18.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.46416123684017974 V
+Eta Concentration : 0.004497856970894247 V
+Eta Ohmic : 0.0348672466191675 V
+Loss : 0.5035263404302415 V
+PEM Efficiency : 0.4405279869036913
+Power : 12.782360067997509 W
+Power-Stack : 12.782360067997509 W
+Power-Thermal : 10.095639932002491 W
+VStack : 0.6872236595697585 V
+Vcell : 0.6872236595697585 V
+###########
+I :18.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4645163473424503 V
+Eta Concentration : 0.004525804576253312 V
+Eta Ohmic : 0.035069554595227086 V
+Loss : 0.5041117065139307 V
+PEM Efficiency : 0.44015275223465977
+Power : 12.840136088189496 W
+Power-Stack : 12.840136088189496 W
+Power-Thermal : 10.160863911810504 W
+VStack : 0.6866382934860693 V
+Vcell : 0.6866382934860693 V
+###########
+I :18.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4648695639130393 V
+Eta Concentration : 0.004553801083833917 V
+Eta Ohmic : 0.0352720542571384 V
+Loss : 0.5046954192540116 V
+PEM Efficiency : 0.4397785774012746
+Power : 12.897826118024582 W
+Power-Stack : 12.897826118024582 W
+Power-Thermal : 10.226173881975418 W
+VStack : 0.6860545807459884 V
+Vcell : 0.6860545807459884 V
+###########
+I :18.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4652209066468548 V
+Eta Concentration : 0.004581846665072546 V
+Eta Ohmic : 0.035474746222903225 V
+Loss : 0.5052774995348306 V
+PEM Efficiency : 0.4394054490161342
+Power : 12.9554302587917 W
+Power-Stack : 12.9554302587917 W
+Power-Thermal : 10.291569741208297 W
+VStack : 0.6854725004651694 V
+Vcell : 0.6854725004651694 V
+###########
+I :19.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.46557039532067657 V
+Eta Concentration : 0.004609941492308783 V
+Eta Ohmic : 0.03567763111243219 V
+Loss : 0.5058579679254175 V
+PEM Efficiency : 0.43903335389396314
+Power : 13.012948609417068 W
+Power-Stack : 13.012948609417068 W
+Power-Thermal : 10.357051390582932 W
+VStack : 0.6848920320745825 V
+Vcell : 0.6848920320745825 V
+###########
+I :19.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4659180493998364 V
+Eta Concentration : 0.004638085738791657 V
+Eta Ohmic : 0.03588070954754419 V
+Loss : 0.5064368446861722 V
+PEM Efficiency : 0.4386622790473254
+Power : 13.070381266494111 W
+Power-Stack : 13.070381266494111 W
+Power-Thermal : 10.42261873350589 W
+VStack : 0.6843131553138277 V
+Vcell : 0.6843131553138277 V
+###########
+I :19.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.46626388804472285 V
+Eta Concentration : 0.004666279578686045 V
+Eta Ohmic : 0.03608398215196579 V
+Loss : 0.5070141497753746 V
+PEM Efficiency : 0.4382922116824522
+Power : 13.127728324312807 W
+Power-Stack : 13.127728324312807 W
+Power-Thermal : 10.488271675687193 W
+VStack : 0.6837358502246254 V
+Vcell : 0.6837358502246254 V
+###########
+I :19.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4666079301171189 V
+Eta Concentration : 0.004694523187079151 V
+Eta Ohmic : 0.036287449551330835 V
+Loss : 0.5075899028555289 V
+PEM Efficiency : 0.43792313919517384
+Power : 13.184989874888293 W
+Power-Stack : 13.184989874888293 W
+Power-Thermal : 10.554010125111708 W
+VStack : 0.6831600971444711 V
+Vcell : 0.6831600971444711 V
+###########
+I :19.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4669501941863737 V
+Eta Concentration : 0.004722816739987023 V
+Eta Ohmic : 0.03649111237317982 V
+Loss : 0.5081641232995405 V
+PEM Efficiency : 0.43755504916696114
+Power : 13.242166007988912 W
+Power-Stack : 13.242166007988912 W
+Power-Thermal : 10.619833992011085 W
+VStack : 0.6825858767004594 V
+Vcell : 0.6825858767004594 V
+###########
+I :19.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.46729069853541744 V
+Eta Concentration : 0.004751160414361138 V
+Eta Ohmic : 0.03669497124695956 V
+Loss : 0.5087368301967382 V
+PEM Efficiency : 0.43718792936106526
+Power : 13.299256811163604 W
+Power-Stack : 13.299256811163604 W
+Power-Thermal : 10.685743188836396 W
+VStack : 0.6820131698032618 V
+Vcell : 0.6820131698032618 V
+###########
+I :19.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4676294611666213 V
+Eta Concentration : 0.004779554388095034 V
+Eta Ohmic : 0.0368990268040226 V
+Loss : 0.5093080423587389 V
+PEM Efficiency : 0.436821767718757
+Power : 13.356262369768718 W
+Power-Stack : 13.356262369768718 W
+Power-Thermal : 10.751737630231284 W
+VStack : 0.681441957641261 V
+Vcell : 0.681441957641261 V
+###########
+I :19.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4679664998075086 V
+Eta Concentration : 0.004807998840031021 V
+Eta Ohmic : 0.0371032796776269 V
+Loss : 0.5098777783251666 V
+PEM Efficiency : 0.43645655235566244
+Power : 13.413182766994218 W
+Power-Stack : 13.413182766994218 W
+Power-Thermal : 10.817817233005782 W
+VStack : 0.6808722216748334 V
+Vcell : 0.6808722216748334 V
+###########
+I :19.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4683018319163217 V
+Eta Concentration : 0.004836493949966939 V
+Eta Ohmic : 0.03730773050293541 V
+Loss : 0.5104460563692241 V
+PEM Efficiency : 0.43609227155818964
+Power : 13.470018083889363 W
+Power-Stack : 13.470018083889363 W
+Power-Thermal : 10.883981916110638 W
+VStack : 0.6803039436307758 V
+Vcell : 0.6803039436307758 V
+###########
+I :19.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.46863547468744804 V
+Eta Concentration : 0.004865039898662958 V
+Eta Ohmic : 0.03751237991701566 V
+Loss : 0.5110128945031266 V
+PEM Efficiency : 0.435728913780047
+Power : 13.526768399387779 W
+Power-Stack : 13.526768399387779 W
+Power-Thermal : 10.950231600612218 W
+VStack : 0.6797371054968734 V
+Vcell : 0.6797371054968734 V
+###########
+I :20.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4689674450567106 V
+Eta Concentration : 0.004893636867848492 V
+Eta Ohmic : 0.03771722855883948 V
+Loss : 0.5115783104833986 V
+PEM Efficiency : 0.435366467638847
+Power : 13.583433790332027 W
+Power-Stack : 13.583433790332027 W
+Power-Thermal : 11.016566209667973 W
+VStack : 0.6791716895166013 V
+Vcell : 0.6791716895166013 V
+###########
+I :20.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.46929775970652665 V
+Eta Concentration : 0.004922285040229104 V
+Eta Ohmic : 0.03792227706928259 V
+Loss : 0.5121423218160384 V
+PEM Efficiency : 0.4350049219127959
+Power : 13.64001433149763 W
+Power-Stack : 13.64001433149763 W
+Power-Thermal : 11.082985668502372 W
+VStack : 0.6786076781839616 V
+Vcell : 0.6786076781839616 V
+###########
+I :20.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4696264350709377 V
+Eta Concentration : 0.004950984599493534 V
+Eta Ohmic : 0.038127526091124304 V
+Loss : 0.5127049457615556 V
+PEM Efficiency : 0.4346442655374643
+Power : 13.696510095616576 W
+Power-Stack : 13.696510095616576 W
+Power-Thermal : 11.149489904383422 W
+VStack : 0.6780450542384444 V
+Vcell : 0.6780450542384444 V
+###########
+I :20.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4699534873405161 V
+Eta Concentration : 0.0049797357303207595 V
+Eta Ohmic : 0.03833297626904733 V
+Loss : 0.5132661993398842 V
+PEM Efficiency : 0.4342844876026383
+Power : 13.75292115340035 W
+Power-Stack : 13.75292115340035 W
+Power-Thermal : 11.216078846599649 W
+VStack : 0.6774838006601158 V
+Vcell : 0.6774838006601158 V
+###########
+I :20.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4702789324671506 V
+Eta Concentration : 0.005008538618387127 V
+Eta Ohmic : 0.038538628249637365 V
+Loss : 0.5138260993351751 V
+PEM Efficiency : 0.4339255773492467
+Power : 13.809247573562427 W
+Power-Stack : 13.809247573562427 W
+Power-Thermal : 11.282752426437572 W
+VStack : 0.6769239006648249 V
+Vcell : 0.6769239006648249 V
+###########
+I :20.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4706027861687151 V
+Eta Concentration : 0.005037393450373539 V
+Eta Ohmic : 0.03874448268138298 V
+Loss : 0.5143846623004716 V
+PEM Efficiency : 0.4335675241663643
+Power : 13.86548942284033 W
+Power-Stack : 13.86548942284033 W
+Power-Thermal : 11.349510577159668 W
+VStack : 0.6763653376995283 V
+Vcell : 0.6763653376995283 V
+###########
+I :20.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4709250639336235 V
+Eta Concentration : 0.0050663004139727226 V
+Eta Ohmic : 0.0389505402146753 V
+Loss : 0.5149419045622715 V
+PEM Efficiency : 0.4332103175882875
+Power : 13.921646766017208 W
+Power-Stack : 13.921646766017208 W
+Power-Thermal : 11.416353233982795 W
+VStack : 0.6758080954377285 V
+Vcell : 0.6758080954377285 V
+###########
+I :20.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.47124578102527476 V
+Eta Concentration : 0.0050952596978965535 V
+Eta Ohmic : 0.03915680150180786 V
+Loss : 0.5154978422249792 V
+PEM Efficiency : 0.43285394729168
+Power : 13.97771966594293 W
+Power-Stack : 13.97771966594293 W
+Power-Thermal : 11.483280334057069 W
+VStack : 0.6752521577750208 V
+Vcell : 0.6752521577750208 V
+###########
+I :20.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.47156495248639047 V
+Eta Concentration : 0.005124271491883448 V
+Eta Ohmic : 0.039363267196976394 V
+Loss : 0.5160524911752503 V
+PEM Efficiency : 0.4324984030927882
+Power : 14.033708183554793 W
+Power-Stack : 14.033708183554793 W
+Power-Thermal : 11.550291816445208 W
+VStack : 0.6746975088247497 V
+Vcell : 0.6746975088247497 V
+###########
+I :20.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.47188259314324843 V
+Eta Concentration : 0.005153335986705811 V
+Eta Ohmic : 0.0395699379562787 V
+Loss : 0.516605867086233 V
+PEM Efficiency : 0.4321436749447224
+Power : 14.089612377897728 W
+Power-Stack : 14.089612377897728 W
+Power-Thermal : 11.61738762210227 W
+VStack : 0.674144132913767 V
+Vcell : 0.674144132913767 V
+###########
+I :21.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4721987176098155 V
+Eta Concentration : 0.005182453374177587 V
+Eta Ohmic : 0.039776814437714476 V
+Loss : 0.5171579854217075 V
+PEM Efficiency : 0.4317897529348028
+Power : 14.14543230614414 W
+Power-Stack : 14.14543230614414 W
+Power-Thermal : 11.68456769385586 W
+VStack : 0.6735920145782924 V
+Vcell : 0.6735920145782924 V
+###########
+I :21.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4725133402917818 V
+Eta Concentration : 0.005211623847161831 V
+Eta Ohmic : 0.039983897301185185 V
+Loss : 0.5177088614401288 V
+PEM Efficiency : 0.4314366272819687
+Power : 14.201168023613281 W
+Power-Stack : 14.201168023613281 W
+Power-Thermal : 11.75183197638672 W
+VStack : 0.6730411385598711 V
+Vcell : 0.6730411385598711 V
+###########
+I :21.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4728264753904998 V
+Eta Concentration : 0.00524084759957838 V
+Eta Ohmic : 0.04019118720849396 V
+Loss : 0.5182585101985722 V
+PEM Efficiency : 0.4310842883342486
+Power : 14.25681958379027 W
+Power-Stack : 14.25681958379027 W
+Power-Thermal : 11.81918041620973 W
+VStack : 0.6724914898014278 V
+Vcell : 0.6724914898014278 V
+###########
+I :21.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.47313813690683104 V
+Eta Concentration : 0.005270124826411597 V
+Eta Ohmic : 0.0403986848233456 V
+Loss : 0.5188069465565883 V
+PEM Efficiency : 0.4307327265662895
+Power : 14.312387038344669 W
+Power-Stack : 14.312387038344669 W
+Power-Thermal : 11.886612961655333 W
+VStack : 0.6719430534434117 V
+Vcell : 0.6719430534434117 V
+###########
+I :21.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.473448338644902 V
+Eta Concentration : 0.005299455723718174 V
+Eta Ohmic : 0.04060639081134638 V
+Loss : 0.5193541851799666 V
+PEM Efficiency : 0.43038193257694446
+Power : 14.367870437148714 W
+Power-Stack : 14.367870437148714 W
+Power-Thermal : 11.954129562851284 W
+VStack : 0.6713958148200334 V
+Vcell : 0.6713958148200334 V
+###########
+I :21.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.473757094215773 V
+Eta Concentration : 0.005328840488634998 V
+Eta Ohmic : 0.0408143058400041 V
+Loss : 0.5199002405444121 V
+PEM Efficiency : 0.43003189708691525
+Power : 14.42326982829514 W
+Power-Stack : 14.42326982829514 W
+Power-Thermal : 12.02173017170486 W
+VStack : 0.6708497594555879 V
+Vcell : 0.6708497594555879 V
+###########
+I :21.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4740644170410221 V
+Eta Concentration : 0.005358279319387112 V
+Eta Ohmic : 0.041022430578727995 V
+Loss : 0.5204451269391372 V
+PEM Efficiency : 0.42968261093645044
+Power : 14.478585258114636 W
+Power-Stack : 14.478585258114636 W
+Power-Thermal : 12.089414741885365 W
+VStack : 0.6703048730608627 V
+Vcell : 0.6703048730608627 V
+###########
+I :21.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.47437032035624543 V
+Eta Concentration : 0.0053877724152957395 V
+Eta Ohmic : 0.041230765698828796 V
+Loss : 0.52098885847037 V
+PEM Efficiency : 0.42933406508309613
+Power : 14.533816771192969 W
+Power-Stack : 14.533816771192969 W
+Power-Thermal : 12.15718322880703 W
+VStack : 0.66976114152963 V
+Vcell : 0.66976114152963 V
+###########
+I :21.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.47467481721447824 V
+Eta Concentration : 0.005417319976786375 V
+Eta Ohmic : 0.0414393118735187 V
+Loss : 0.5215314490647833 V
+PEM Efficiency : 0.4289862505994978
+Power : 14.588964410387723 W
+Power-Stack : 14.588964410387723 W
+Power-Thermal : 12.225035589612277 W
+VStack : 0.6692185509352166 V
+Vcell : 0.6692185509352166 V
+###########
+I :21.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.47497792048953624 V
+Eta Concentration : 0.005446922205396955 V
+Eta Ohmic : 0.04164806977791138 V
+Loss : 0.5220729124728446 V
+PEM Efficiency : 0.4286391586712534
+Power : 14.644028216844703 W
+Power-Stack : 14.644028216844703 W
+Power-Thermal : 12.292971783155297 W
+VStack : 0.6686770875271554 V
+Vcell : 0.6686770875271554 V
+###########
+I :22.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4752796428792825 V
+Eta Concentration : 0.0054765793037861235 V
+Eta Ohmic : 0.041857040089022135 V
+Loss : 0.5226132622720907 V
+PEM Efficiency : 0.4282927805948136
+Power : 14.699008230014003 W
+Power-Stack : 14.699008230014003 W
+Power-Thermal : 12.360991769985995 W
+VStack : 0.6681367377279093 V
+Vcell : 0.6681367377279093 V
+###########
+I :22.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4755799969088182 V
+Eta Concentration : 0.005506291475741529 V
+Eta Ohmic : 0.042066223485767815 V
+Loss : 0.5231525118703275 V
+PEM Efficiency : 0.4279471077754311
+Power : 14.753904487665762 W
+Power-Stack : 14.753904487665762 W
+Power-Thermal : 12.42909551233424 W
+VStack : 0.6675974881296725 V
+Vcell : 0.6675974881296725 V
+###########
+I :22.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.47587899493360375 V
+Eta Concentration : 0.005536058926188243 V
+Eta Ohmic : 0.04227562064896701 V
+Loss : 0.5236906745087591 V
+PEM Efficiency : 0.42760213172515443
+Power : 14.808717025905548 W
+Power-Stack : 14.808717025905548 W
+Power-Thermal : 12.497282974094452 W
+VStack : 0.6670593254912409 V
+Vcell : 0.6670593254912409 V
+###########
+I :22.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4761766491425077 V
+Eta Concentration : 0.005565881861197245 V
+Eta Ohmic : 0.042485232261340135 V
+Loss : 0.524227763265045 V
+PEM Efficiency : 0.4272578440608685
+Power : 14.863445879189495 W
+Power-Stack : 14.863445879189495 W
+Power-Thermal : 12.565554120810505 W
+VStack : 0.6665222367349549 V
+Vcell : 0.6665222367349549 V
+###########
+I :22.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4764729715607885 V
+Eta Concentration : 0.005595760487993974 V
+Eta Ohmic : 0.042695059007509514 V
+Loss : 0.5247637910562919 V
+PEM Efficiency : 0.4269142365023769
+Power : 14.91809108033906 W
+Power-Stack : 14.91809108033906 W
+Power-Thermal : 12.633908919660938 W
+VStack : 0.6659862089437081 V
+Vcell : 0.6659862089437081 V
+###########
+I :22.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.47676797405300975 V
+Eta Concentration : 0.005625695014966963 V
+Eta Ohmic : 0.04290510157399955 V
+Loss : 0.5252987706419763 V
+PEM Efficiency : 0.42657130087052797
+Power : 14.972652660555534 W
+Power-Stack : 14.972652660555534 W
+Power-Thermal : 12.702347339444467 W
+VStack : 0.6654512293580237 V
+Vcell : 0.6654512293580237 V
+###########
+I :22.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.47706166832589053 V
+Eta Concentration : 0.0056556856516765674 V
+Eta Ohmic : 0.043115360649236864 V
+Loss : 0.525832714626804 V
+PEM Efficiency : 0.426229029085382
+Power : 15.027130649434229 W
+Power-Stack : 15.027130649434229 W
+Power-Thermal : 12.770869350565771 W
+VStack : 0.6649172853731959 V
+Vcell : 0.6649172853731959 V
+###########
+I :22.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.477354065931093 V
+Eta Concentration : 0.005685732608863768 V
+Eta Ohmic : 0.04332583692355051 V
+Loss : 0.5263656354635072 V
+PEM Efficiency : 0.42588741316441836
+Power : 15.081525074978385 W
+Power-Stack : 15.081525074978385 W
+Power-Thermal : 12.839474925021614 W
+VStack : 0.6643843645364927 V
+Vcell : 0.6643843645364927 V
+###########
+I :22.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.47764517826794883 V
+Eta Concentration : 0.005715836098459058 V
+Eta Ohmic : 0.04353653108917211 V
+Loss : 0.52689754545558 V
+PEM Efficiency : 0.42554644522078205
+Power : 15.135835963612776 W
+Power-Stack : 15.135835963612776 W
+Power-Thermal : 12.908164036387225 W
+VStack : 0.66385245454442 V
+Vcell : 0.66385245454442 V
+###########
+I :22.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4779350165861256 V
+Eta Concentration : 0.0057459963335913964 V
+Eta Ohmic : 0.04374744384023605 V
+Loss : 0.5274284567599531 V
+PEM Efficiency : 0.4252061174615685
+Power : 15.190063340197073 W
+Power-Stack : 15.190063340197073 W
+Power-Thermal : 12.976936659802925 W
+VStack : 0.6633215432400469 V
+Vcell : 0.6633215432400469 V
+###########
+I :23.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4782235919882355 V
+Eta Concentration : 0.005776213528597288 V
+Eta Ohmic : 0.043958575872779806 V
+Loss : 0.5279583813896126 V
+PEM Efficiency : 0.42486642218614573
+Power : 15.24420722803891 W
+Power-Stack : 15.24420722803891 W
+Power-Thermal : 13.04579277196109 W
+VStack : 0.6627916186103874 V
+Vcell : 0.6627916186103874 V
+###########
+I :23.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.47851091543238733 V
+Eta Concentration : 0.005806487899029896 V
+Eta Ohmic : 0.04416992788474406 V
+Loss : 0.5284873312161613 V
+PEM Efficiency : 0.42452735178451195
+Power : 15.298267648906673 W
+Power-Stack : 15.298267648906673 W
+Power-Thermal : 13.114732351093327 W
+VStack : 0.6622626687838387 V
+Vcell : 0.6622626687838387 V
+###########
+I :23.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4787969977346833 V
+Eta Concentration : 0.005836819661668281 V
+Eta Ohmic : 0.044381500575972996 V
+Loss : 0.5290153179723246 V
+PEM Efficiency : 0.42418889873568927
+Power : 15.352244623042068 W
+Power-Stack : 15.352244623042068 W
+Power-Thermal : 13.183755376957931 W
+VStack : 0.6617346820276754 V
+Vcell : 0.6617346820276754 V
+###########
+I :23.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4790818495716621 V
+Eta Concentration : 0.005867209034526719 V
+Eta Ohmic : 0.04459329464821463 V
+Loss : 0.5295423532544035 V
+PEM Efficiency : 0.4238510556061516
+Power : 15.406138169172399 W
+Power-Stack : 15.406138169172399 W
+Power-Thermal : 13.252861830827602 W
+VStack : 0.6612076467455965 V
+Vcell : 0.6612076467455965 V
+###########
+I :23.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.47936548148268965 V
+Eta Concentration : 0.005897656236864099 V
+Eta Ohmic : 0.04480531080512105 V
+Loss : 0.5300684485246748 V
+PEM Efficiency : 0.42351381504828534
+Power : 15.459948304522607 W
+Power-Stack : 15.459948304522607 W
+Power-Thermal : 13.32205169547739 W
+VStack : 0.6606815514753251 V
+Vcell : 0.6606815514753251 V
+###########
+I :23.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4796479038722992 V
+Eta Concentration : 0.005928161489193406 V
+Eta Ohmic : 0.045017549752248684 V
+Loss : 0.5305936151137413 V
+PEM Efficiency : 0.4231771697988838
+Power : 15.51367504482708 W
+Power-Stack : 15.51367504482708 W
+Power-Thermal : 13.39132495517292 W
+VStack : 0.6601563848862587 V
+Vcell : 0.6601563848862587 V
+###########
+I :23.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4799291270124814 V
+Eta Concentration : 0.005958725013291313 V
+Eta Ohmic : 0.04523001219705872 V
+Loss : 0.5311178642228315 V
+PEM Efficiency : 0.4228411126776721
+Power : 15.567318404341178 W
+Power-Stack : 15.567318404341178 W
+Power-Thermal : 13.460681595658823 W
+VStack : 0.6596321357771685 V
+Vcell : 0.6596321357771685 V
+###########
+I :23.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.48020916104492595 V
+Eta Concentration : 0.0059893470322078595 V
+Eta Ohmic : 0.045442698848917315 V
+Loss : 0.5316412069260511 V
+PEM Efficiency : 0.4225056365858646
+Power : 15.620878395852587 W
+Power-Stack : 15.620878395852587 W
+Power-Thermal : 13.53012160414741 W
+VStack : 0.6591087930739489 V
+Vcell : 0.6591087930739489 V
+###########
+I :23.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.48048801598321633 V
+Eta Concentration : 0.006020027770276209 V
+Eta Ohmic : 0.045655610419096056 V
+Loss : 0.5321636541725886 V
+PEM Efficiency : 0.42217073450475084
+Power : 15.674355030692391 W
+Power-Stack : 15.674355030692391 W
+Power-Thermal : 13.59964496930761 W
+VStack : 0.6585863458274114 V
+Vcell : 0.6585863458274114 V
+###########
+I :23.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.480765701714978 V
+Eta Concentration : 0.006050767453122507 V
+Eta Ohmic : 0.04586874762077227 V
+Loss : 0.5326852167888728 V
+PEM Efficiency : 0.4218363994943123
+Power : 15.727748318745938 W
+Power-Stack : 15.727748318745938 W
+Power-Thermal : 13.66925168125406 W
+VStack : 0.6580647832111272 V
+Vcell : 0.6580647832111272 V
+###########
+I :24.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4810422280039828 V
+Eta Concentration : 0.00608156630767586 V
+Eta Ohmic : 0.046082111169029445 V
+Loss : 0.5332059054806881 V
+PEM Efficiency : 0.4215026246918665
+Power : 15.781058268463484 W
+Power-Stack : 15.781058268463484 W
+Power-Thermal : 13.738941731536515 W
+VStack : 0.6575440945193118 V
+Vcell : 0.6575440945193118 V
+###########
+I :24.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.48131760449220795 V
+Eta Concentration : 0.00611242456217835 V
+Eta Ohmic : 0.04629570178085757 V
+Loss : 0.5337257308352438 V
+PEM Efficiency : 0.42116940331074115
+Power : 15.834284886870625 W
+Power-Stack : 15.834284886870625 W
+Power-Thermal : 13.808715113129375 W
+VStack : 0.6570242691647562 V
+Vcell : 0.6570242691647562 V
+###########
+I :24.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.48159184070185423 V
+Eta Concentration : 0.006143342446195212 V
+Eta Ohmic : 0.046509520175153606 V
+Loss : 0.5342447033232031 V
+PEM Efficiency : 0.42083672863897237
+Power : 15.887428179578485 W
+Power-Stack : 15.887428179578485 W
+Power-Thermal : 13.878571820421515 W
+VStack : 0.6565052966767969 V
+Vcell : 0.6565052966767969 V
+###########
+I :24.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4818649460373212 V
+Eta Concentration : 0.0061743201906250735 V
+Eta Ohmic : 0.046723567072721905 V
+Loss : 0.5347628333006682 V
+PEM Efficiency : 0.4205045940380332
+Power : 15.940488150793762 W
+Power-Stack : 15.940488150793762 W
+Power-Thermal : 13.948511849206238 W
+VStack : 0.6559871666993318 V
+Vcell : 0.6559871666993318 V
+###########
+I :24.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.48213692978714245 V
+Eta Concentration : 0.0062053580277103 V
+Eta Ohmic : 0.04693784319627458 V
+Loss : 0.5352801310111273 V
+PEM Efficiency : 0.42017299294158506
+Power : 15.993464803328493 W
+Power-Stack : 15.993464803328493 W
+Power-Thermal : 14.018535196671504 W
+VStack : 0.6554698689888727 V
+Vcell : 0.6554698689888727 V
+###########
+I :24.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4824078011258812 V
+Eta Concentration : 0.006236456191047439 V
+Eta Ohmic : 0.047152349270432055 V
+Loss : 0.5357966065873607 V
+PEM Efficiency : 0.41984191885425587
+Power : 16.046358138609662 W
+Power-Stack : 16.046358138609662 W
+Power-Thermal : 14.088641861390338 W
+VStack : 0.6549533934126393 V
+Vcell : 0.6549533934126393 V
+###########
+I :24.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.48267756911598725 V
+Eta Concentration : 0.006267614915597766 V
+Eta Ohmic : 0.0473670860217235 V
+Loss : 0.5363122700533085 V
+PEM Efficiency : 0.4195113653504432
+Power : 16.09916815668861 W
+Power-Stack : 16.09916815668861 W
+Power-Thermal : 14.15883184331139 W
+VStack : 0.6544377299466915 V
+Vcell : 0.6544377299466915 V
+###########
+I :24.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4829462427096164 V
+Eta Concentration : 0.006298834437697954 V
+Eta Ohmic : 0.04758205417858733 V
+Loss : 0.5368271313259017 V
+PEM Efficiency : 0.4191813260731399
+Power : 16.151894856250227 W
+Power-Stack : 16.151894856250227 W
+Power-Thermal : 14.22910514374977 W
+VStack : 0.6539228686740983 V
+Vcell : 0.6539228686740983 V
+###########
+I :24.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4832138307504127 V
+Eta Concentration : 0.006330114995070809 V
+Eta Ohmic : 0.047797254471371654 V
+Loss : 0.5373412002168552 V
+PEM Efficiency : 0.4188517947327851
+Power : 16.204538234621992 W
+Power-Stack : 16.204538234621992 W
+Power-Thermal : 14.299461765378009 W
+VStack : 0.6534087997831448 V
+Vcell : 0.6534087997831448 V
+###########
+I :24.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.48348034197525536 V
+Eta Concentration : 0.006361456826836132 V
+Eta Ohmic : 0.04801268763233488 V
+Loss : 0.5378544864344263 V
+PEM Efficiency : 0.4185227651061369
+Power : 16.25709828778278 W
+Power-Stack : 16.25709828778278 W
+Power-Thermal : 14.369901712217215 W
+VStack : 0.6528955135655736 V
+Vcell : 0.6528955135655736 V
+###########
+I :25.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.48374578501597054 V
+Eta Concentration : 0.006392860173521715 V
+Eta Ohmic : 0.048228354395646135 V
+Loss : 0.5383669995851383 V
+PEM Efficiency : 0.4181942310351677
+Power : 16.309575010371542 W
+Power-Stack : 16.309575010371542 W
+Power-Thermal : 14.44042498962846 W
+VStack : 0.6523830004148616 V
+Vcell : 0.6523830004148616 V
+###########
+I :25.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4840101684010084 V
+Eta Concentration : 0.006424325277074369 V
+Eta Ohmic : 0.04844425549738593 V
+Loss : 0.5388787491754687 V
+PEM Efficiency : 0.41786618642598156
+Power : 16.361968395695733 W
+Power-Stack : 16.361968395695733 W
+Power-Thermal : 14.511031604304266 W
+VStack : 0.6518712508245312 V
+Vcell : 0.6518712508245312 V
+###########
+I :25.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.48427350055708773 V
+Eta Concentration : 0.006455852380871148 V
+Eta Ohmic : 0.0486603916755466 V
+Loss : 0.5393897446135054 V
+PEM Efficiency : 0.4175386252477529
+Power : 16.41427843573966 W
+Power-Stack : 16.41427843573966 W
+Power-Thermal : 14.581721564260336 W
+VStack : 0.6513602553864946 V
+Vcell : 0.6513602553864946 V
+###########
+I :25.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4845357898108073 V
+Eta Concentration : 0.006487441729730628 V
+Eta Ohmic : 0.04887676367003294 V
+Loss : 0.5398999952105709 V
+PEM Efficiency : 0.4172115415316853
+Power : 16.466505121172556 W
+Power-Stack : 16.466505121172556 W
+Power-Thermal : 14.652494878827444 W
+VStack : 0.6508500047894291 V
+Vcell : 0.6508500047894291 V
+###########
+I :25.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.48479704439022586 V
+Eta Concentration : 0.006519093569924322 V
+Eta Ohmic : 0.04909337222266282 V
+Loss : 0.540409510182813 V
+PEM Efficiency : 0.4168849293699916
+Power : 16.518648441356547 W
+Power-Stack : 16.518648441356547 W
+Power-Thermal : 14.72335155864345 W
+VStack : 0.650340489817187 V
+Vcell : 0.650340489817187 V
+###########
+I :25.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4850572724264105 V
+Eta Concentration : 0.006550808149188183 V
+Eta Ohmic : 0.049310218077167706 V
+Loss : 0.5409182986527664 V
+PEM Efficiency : 0.4165587829148933
+Power : 16.570708384354457 W
+Power-Stack : 16.570708384354457 W
+Power-Thermal : 14.794291615645545 W
+VStack : 0.6498317013472336 V
+Vcell : 0.6498317013472336 V
+###########
+I :25.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4853164819549558 V
+Eta Concentration : 0.0065825857167342485 V
+Eta Ohmic : 0.04952730197919328 V
+Loss : 0.5414263696508833 V
+PEM Efficiency : 0.4162330963776389
+Power : 16.622684936937386 W
+Power-Stack : 16.622684936937386 W
+Power-Thermal : 14.865315063062614 W
+VStack : 0.6493236303491167 V
+Vcell : 0.6493236303491167 V
+###########
+I :25.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4855746809174719 V
+Eta Concentration : 0.006614426523262411 V
+Eta Ohmic : 0.04974462467630013 V
+Loss : 0.5419337321170344 V
+PEM Efficiency : 0.415907864027542
+Power : 16.674578084592213 W
+Power-Stack : 16.674578084592213 W
+Power-Thermal : 14.936421915407784 W
+VStack : 0.6488162678829655 V
+Vcell : 0.6488162678829655 V
+###########
+I :25.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4858318771630452 V
+Eta Concentration : 0.006646330820972243 V
+Eta Ohmic : 0.04996218691796437 V
+Loss : 0.5424403949019818 V
+PEM Efficiency : 0.4155830801910373
+Power : 16.72638781152887 W
+Power-Stack : 16.72638781152887 W
+Power-Thermal : 15.007612188471132 W
+VStack : 0.6483096050980182 V
+Vcell : 0.6483096050980182 V
+###########
+I :25.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.48608807844966945 V
+Eta Concentration : 0.0066782988635750076 V
+Eta Ohmic : 0.05017998945557822 V
+Loss : 0.5429463667688226 V
+PEM Efficiency : 0.4152587392507547
+Power : 16.778114100687493 W
+Power-Stack : 16.778114100687493 W
+Power-Thermal : 15.078885899312503 W
+VStack : 0.6478036332311774 V
+Vcell : 0.6478036332311774 V
+###########
+I :26.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4863432924456504 V
+Eta Concentration : 0.006710330906305779 V
+Eta Ohmic : 0.05039803304245079 V
+Loss : 0.543451656394407 V
+PEM Efficiency : 0.4149348356446109
+Power : 16.82975693374542 W
+Power-Stack : 16.82975693374542 W
+Power-Thermal : 15.150243066254582 W
+VStack : 0.647298343605593 V
+Vcell : 0.647298343605593 V
+###########
+I :26.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.48659752673098255 V
+Eta Concentration : 0.006742427205935633 V
+Eta Ohmic : 0.050616318433808656 V
+Loss : 0.5439562723707269 V
+PEM Efficiency : 0.41461136386491865
+Power : 16.88131629112403 W
+Power-Stack : 16.88131629112403 W
+Power-Thermal : 15.221683708875972 W
+VStack : 0.6467937276292731 V
+Vcell : 0.6467937276292731 V
+###########
+I :26.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.48685078879870025 V
+Eta Concentration : 0.006774588020784021 V
+Eta Ohmic : 0.05083484638679655 V
+Loss : 0.5444602232062808 V
+PEM Efficiency : 0.41428831845751224
+Power : 16.93279215199544 W
+Power-Stack : 16.93279215199544 W
+Power-Thermal : 15.293207848004558 W
+VStack : 0.6462897767937191 V
+Vcell : 0.6462897767937191 V
+###########
+I :26.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4871030860562029 V
+Eta Concentration : 0.006806813610731237 V
+Eta Ohmic : 0.05105361766047818 V
+Loss : 0.5449635173274123 V
+PEM Efficiency : 0.4139656940208895
+Power : 16.984184494289057 W
+Power-Stack : 16.984184494289057 W
+Power-Thermal : 15.364815505710945 W
+VStack : 0.6457864826725876 V
+Vcell : 0.6457864826725876 V
+###########
+I :26.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.48735442582655464 V
+Eta Concentration : 0.006839104237231034 V
+Eta Ohmic : 0.05127263301583682 V
+Loss : 0.5454661630796225 V
+PEM Efficiency : 0.41364348520537014
+Power : 17.035493294697964 W
+Power-Stack : 17.035493294697964 W
+Power-Thermal : 15.436506705302033 W
+VStack : 0.6452838369203775 V
+Vcell : 0.6452838369203775 V
+###########
+I :26.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.48760481534975975 V
+Eta Concentration : 0.00687146016332332 V
+Eta Ohmic : 0.05149189321577612 V
+Loss : 0.5459681687288591 V
+PEM Efficiency : 0.41332168671226976
+Power : 17.086718528685232 W
+Power-Stack : 17.086718528685232 W
+Power-Thermal : 15.508281471314767 W
+VStack : 0.6447818312711409 V
+Vcell : 0.6447818312711409 V
+###########
+I :26.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4878542617840145 V
+Eta Concentration : 0.006903881653647035 V
+Eta Ohmic : 0.05171139902512077 V
+Loss : 0.5464695424627823 V
+PEM Efficiency : 0.4130002932930882
+Power : 17.13786017048999 W
+Power-Stack : 17.13786017048999 W
+Power-Thermal : 15.580139829510012 W
+VStack : 0.6442804575372176 V
+Vcell : 0.6442804575372176 V
+###########
+I :26.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4881027722069343 V
+Eta Concentration : 0.006936368974453148 V
+Eta Ohmic : 0.051931151210617366 V
+Loss : 0.5469702923920049 V
+PEM Efficiency : 0.41267929974871476
+Power : 17.188918193133468 W
+Power-Stack : 17.188918193133468 W
+Power-Thermal : 15.65208180686653 W
+VStack : 0.6437797076079951 V
+Vcell : 0.6437797076079951 V
+###########
+I :26.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.48835035361675955 V
+Eta Concentration : 0.00696892239361775 V
+Eta Ohmic : 0.052151150540935096 V
+Loss : 0.5474704265513124 V
+PEM Efficiency : 0.4123587009286459
+Power : 17.23989256842483 W
+Power-Stack : 17.23989256842483 W
+Power-Thermal : 15.724107431575172 W
+VStack : 0.6432795734486876 V
+Vcell : 0.6432795734486876 V
+###########
+I :26.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4885970129335372 V
+Eta Concentration : 0.007001542180655319 V
+Eta Ohmic : 0.05237139778666649 V
+Loss : 0.5479699529008589 V
+PEM Efficiency : 0.4120384917302186
+Power : 17.290783266966894 W
+Power-Stack : 17.290783266966894 W
+Power-Thermal : 15.796216733033104 W
+VStack : 0.642780047099141 V
+Vcell : 0.642780047099141 V
+###########
+I :27.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.48884275700028196 V
+Eta Concentration : 0.007034228606732125 V
+Eta Ohmic : 0.052591893720328346 V
+Loss : 0.5484688793273423 V
+PEM Efficiency : 0.4117186670978574
+Power : 17.341590258161755 W
+Power-Stack : 17.341590258161755 W
+Power-Thermal : 15.868409741838244 W
+VStack : 0.6422811206726576 V
+Vcell : 0.6422811206726576 V
+###########
+I :27.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4890875925841153 V
+Eta Concentration : 0.007066981944679724 V
+Eta Ohmic : 0.05281263911636236 V
+Loss : 0.5489672136451574 V
+PEM Efficiency : 0.4113992220223349
+Power : 17.392313510216233 W
+Power-Stack : 17.392313510216233 W
+Power-Thermal : 15.940686489783767 W
+VStack : 0.6417827863548425 V
+Vcell : 0.6417827863548425 V
+###########
+I :27.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.48933152637738353 V
+Eta Concentration : 0.007099802469008644 V
+Eta Ohmic : 0.05303363475113611 V
+Loss : 0.5494649635975283 V
+PEM Efficiency : 0.41108015154004596
+Power : 17.44295299014723 W
+Power-Stack : 17.44295299014723 W
+Power-Thermal : 16.01304700985277 W
+VStack : 0.6412850364024717 V
+Vcell : 0.6412850364024717 V
+###########
+I :27.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4895745649987553 V
+Eta Concentration : 0.0071326904559221764 V
+Eta Ohmic : 0.05325488140294374 V
+Loss : 0.5499621368576212 V
+PEM Efficiency : 0.41076145073229403
+Power : 17.49350866378694 W
+Power-Stack : 17.49350866378694 W
+Power-Thermal : 16.08549133621306 W
+VStack : 0.6407878631423788 V
+Vcell : 0.6407878631423788 V
+###########
+I :27.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.48981671499429935 V
+Eta Concentration : 0.007165646183330347 V
+Eta Ohmic : 0.05347637985200696 V
+Loss : 0.5504587410296367 V
+PEM Efficiency : 0.41044311472459183
+Power : 17.543980495787952 W
+Power-Stack : 17.543980495787952 W
+Power-Thermal : 16.158019504212042 W
+VStack : 0.6402912589703633 V
+Vcell : 0.6402912589703633 V
+###########
+I :27.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.49005798283854235 V
+Eta Concentration : 0.007198669930863973 V
+Eta Ohmic : 0.05369813088047572 V
+Loss : 0.550954783649882 V
+PEM Efficiency : 0.410125138685973
+Power : 17.59436844962824 W
+Power-Stack : 17.59436844962824 W
+Power-Thermal : 16.230631550371758 W
+VStack : 0.6397952163501179 V
+Vcell : 0.6397952163501179 V
+###########
+I :27.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.49029837493550765 V
+Eta Concentration : 0.007231761979888914 V
+Eta Ohmic : 0.05392013527242922 V
+Loss : 0.5514502721878258 V
+PEM Efficiency : 0.40980751782831676
+Power : 17.644672487616006 W
+Power-Stack : 17.644672487616006 W
+Power-Thermal : 16.303327512383994 W
+VStack : 0.6392997278121741 V
+Vcell : 0.6392997278121741 V
+###########
+I :27.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4905378976197353 V
+Eta Concentration : 0.007264922613520473 V
+Eta Ohmic : 0.05414239381387667 V
+Loss : 0.5519452140471325 V
+PEM Efficiency : 0.40949024740568424
+Power : 17.694892570894428 W
+Power-Stack : 17.694892570894428 W
+Power-Thermal : 16.37610742910557 W
+VStack : 0.6388047859528675 V
+Vcell : 0.6388047859528675 V
+###########
+I :27.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4907765571572834 V
+Eta Concentration : 0.007298152116637901 V
+Eta Ohmic : 0.05436490729275831 V
+Loss : 0.5524396165666796 V
+PEM Efficiency : 0.4091733227136669
+Power : 17.745028659446305 W
+Power-Stack : 17.745028659446305 W
+Power-Thermal : 16.448971340553694 W
+VStack : 0.6383103834333204 V
+Vcell : 0.6383103834333204 V
+###########
+I :27.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.49101435974671187 V
+Eta Concentration : 0.00733145077589909 V
+Eta Ohmic : 0.05458767649894617 V
+Loss : 0.5529334870215572 V
+PEM Efficiency : 0.4088567390887453
+Power : 17.795080712098553 W
+Power-Stack : 17.795080712098553 W
+Power-Thermal : 16.521919287901444 W
+VStack : 0.6378165129784428 V
+Vcell : 0.6378165129784428 V
+###########
+I :28.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4912513115200484 V
+Eta Concentration : 0.007364818879755434 V
+Eta Ohmic : 0.054810702224245104 V
+Loss : 0.553426832624049 V
+PEM Efficiency : 0.40854049190766084
+Power : 17.845048686526628 W
+Power-Stack : 17.845048686526628 W
+Power-Thermal : 16.594951313473373 W
+VStack : 0.637323167375951 V
+Vcell : 0.637323167375951 V
+###########
+I :28.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4914874185437374 V
+Eta Concentration : 0.007398256718466784 V
+Eta Ohmic : 0.05503398526239362 V
+Loss : 0.5539196605245978 V
+PEM Efficiency : 0.40822457658679623
+Power : 17.8949325392588 W
+Power-Stack : 17.8949325392588 W
+Power-Thermal : 16.668067460741202 W
+VStack : 0.6368303394754021 V
+Vcell : 0.6368303394754021 V
+###########
+I :28.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.49172268681957143 V
+Eta Concentration : 0.007431764584116621 V
+Eta Ohmic : 0.055257526409064915 V
+Loss : 0.554411977812753 V
+PEM Efficiency : 0.40790898858156854
+Power : 17.944732225680365 W
+Power-Stack : 17.944732225680365 W
+Power-Thermal : 16.741267774319635 W
+VStack : 0.636338022187247 V
+Vcell : 0.636338022187247 V
+###########
+I :28.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.491957122285607 V
+Eta Concentration : 0.007465342770627357 V
+Eta Ohmic : 0.05548132646186765 V
+Loss : 0.554903791518102 V
+PEM Efficiency : 0.40759372338583205
+Power : 17.994447700037714 W
+Power-Stack : 17.994447700037714 W
+Power-Thermal : 16.814552299962287 W
+VStack : 0.635846208481898 V
+Vcell : 0.635846208481898 V
+###########
+I :28.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.492190730817064 V
+Eta Concentration : 0.007498991573775819 V
+Eta Ohmic : 0.05570538622034712 V
+Loss : 0.555395108611187 V
+PEM Efficiency : 0.40727877653129035
+Power : 18.044078915442288 W
+Power-Stack : 18.044078915442288 W
+Power-Thermal : 16.88792108455771 W
+VStack : 0.635354891388813 V
+Vcell : 0.635354891388813 V
+###########
+I :28.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.49242351822720876 V
+Eta Concentration : 0.007532711291208857 V
+Eta Ohmic : 0.055929706485986073 V
+Loss : 0.5558859360044036 V
+PEM Efficiency : 0.40696414358692073
+Power : 18.093625823874497 W
+Power-Stack : 18.093625823874497 W
+Power-Thermal : 16.961374176125503 W
+VStack : 0.6348640639955964 V
+Vcell : 0.6348640639955964 V
+###########
+I :28.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4926554902682222 V
+Eta Concentration : 0.0075665022224591545 V
+Eta Ohmic : 0.056154288062205765 V
+Loss : 0.5563762805528871 V
+PEM Efficiency : 0.4066498201584056
+Power : 18.14308837618743 W
+Power-Stack : 18.14308837618743 W
+Power-Thermal : 17.034911623812572 W
+VStack : 0.6343737194471128 V
+Vcell : 0.6343737194471128 V
+###########
+I :28.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.49288665263205295 V
+Eta Concentration : 0.007600364668961192 V
+Eta Ohmic : 0.05637913175436686 V
+Loss : 0.556866149055381 V
+PEM Efficiency : 0.4063358018875763
+Power : 18.192466522110564 W
+Power-Stack : 18.192466522110564 W
+Power-Thermal : 17.108533477889434 W
+VStack : 0.633883850944619 V
+Vcell : 0.633883850944619 V
+###########
+I :28.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.49311701095125493 V
+Eta Concentration : 0.007634298934067396 V
+Eta Ohmic : 0.056604238369770604 V
+Loss : 0.5573555482550929 V
+PEM Efficiency : 0.40602208445186344
+Power : 18.241760210253325 W
+Power-Stack : 18.241760210253325 W
+Power-Thermal : 17.182239789746678 W
+VStack : 0.633394451744907 V
+Vcell : 0.633394451744907 V
+###########
+I :28.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.49334657079981126 V
+Eta Concentration : 0.007668305323064408 V
+Eta Ohmic : 0.05682960871765962 V
+Loss : 0.5578444848405353 V
+PEM Efficiency : 0.4057086635637594
+Power : 18.29096938810853 W
+Power-Stack : 18.29096938810853 W
+Power-Thermal : 17.256030611891468 W
+VStack : 0.6329055151594647 V
+Vcell : 0.6329055151594647 V
+###########
+I :29.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.49357533769394324 V
+Eta Concentration : 0.007702384143189607 V
+Eta Ohmic : 0.05705524360921909 V
+Loss : 0.5583329654463519 V
+PEM Efficiency : 0.4053955349702872
+Power : 18.340094002055793 W
+Power-Stack : 18.340094002055793 W
+Power-Thermal : 17.329905997944206 W
+VStack : 0.6324170345536481 V
+Vcell : 0.6324170345536481 V
+###########
+I :29.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4938033170929058 V
+Eta Concentration : 0.007736535703647731 V
+Eta Ohmic : 0.05728114385757777 V
+Loss : 0.5588209966541313 V
+PEM Efficiency : 0.40508269445247985
+Power : 18.38913399736478 W
+Power-Stack : 18.38913399736478 W
+Power-Thermal : 17.403866002635223 W
+VStack : 0.6319290033458687 V
+Vcell : 0.6319290033458687 V
+###########
+I :29.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4940305143997692 V
+Eta Concentration : 0.007770760315627724 V
+Eta Ohmic : 0.05750731027780895 V
+Loss : 0.5593085849932059 V
+PEM Efficiency : 0.404770137824868
+Power : 18.438089318198386 W
+Power-Stack : 18.438089318198386 W
+Power-Thermal : 17.477910681801614 W
+VStack : 0.6314414150067941 V
+Vcell : 0.6314414150067941 V
+###########
+I :29.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4942569349621875 V
+Eta Concentration : 0.007805058292319742 V
+Eta Ohmic : 0.05773374368693162 V
+Loss : 0.5597957369414388 V
+PEM Efficiency : 0.40445786093497516
+Power : 18.486959907615844 W
+Power-Stack : 18.486959907615844 W
+Power-Thermal : 17.552040092384157 W
+VStack : 0.6309542630585612 V
+Vcell : 0.6309542630585612 V
+###########
+I :29.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4944825840731534 V
+Eta Concentration : 0.007839429948932377 V
+Eta Ohmic : 0.057960444903911446 V
+Loss : 0.5602824589259972 V
+PEM Efficiency : 0.40414585966282235
+Power : 18.535745707575682 W
+Power-Stack : 18.535745707575682 W
+Power-Thermal : 17.626254292424317 W
+VStack : 0.6304675410740028 V
+Vcell : 0.6304675410740028 V
+###########
+I :29.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.49470746697174134 V
+Eta Concentration : 0.007873875602709995 V
+Eta Ohmic : 0.05818741474966191 V
+Loss : 0.5607687573241132 V
+PEM Efficiency : 0.4038341299204402
+Power : 18.58444665893866 W
+Power-Stack : 18.58444665893866 W
+Power-Thermal : 17.70055334106134 W
+VStack : 0.6299812426758867 V
+Vcell : 0.6299812426758867 V
+###########
+I :29.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4949315888438367 V
+Eta Concentration : 0.007908395572950337 V
+Eta Ohmic : 0.058414654047045406 V
+Loss : 0.5612546384638324 V
+PEM Efficiency : 0.4035226676513895
+Power : 18.63306270147056 W
+Power-Stack : 18.63306270147056 W
+Power-Thermal : 17.77493729852944 W
+VStack : 0.6294953615361676 V
+Vcell : 0.6294953615361676 V
+###########
+I :29.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.49515495482285377 V
+Eta Concentration : 0.007942990181022257 V
+Eta Ohmic : 0.058642163620874266 V
+Loss : 0.5617401086247503 V
+PEM Efficiency : 0.40321146883028824
+Power : 18.681593773844913 W
+Power-Stack : 18.681593773844913 W
+Power-Thermal : 17.849406226155086 W
+VStack : 0.6290098913752497 V
+Vcell : 0.6290098913752497 V
+###########
+I :29.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.49537756999044114 V
+Eta Concentration : 0.007977659750383705 V
+Eta Ohmic : 0.058869944297911946 V
+Loss : 0.5622251740387367 V
+PEM Efficiency : 0.4029005294623482
+Power : 18.730039813645647 W
+Power-Stack : 18.730039813645647 W
+Power-Thermal : 17.923960186354357 W
+VStack : 0.6285248259612632 V
+Vcell : 0.6285248259612632 V
+###########
+I :29.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4955994393771752 V
+Eta Concentration : 0.008012404606599825 V
+Eta Ohmic : 0.05909799690687407 V
+Loss : 0.5627098408906491 V
+PEM Efficiency : 0.4025898455829172
+Power : 18.77840075736959 W
+Power-Stack : 18.77840075736959 W
+Power-Thermal : 17.99859924263041 W
+VStack : 0.6280401591093508 V
+Vcell : 0.6280401591093508 V
+###########
+I :30.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4958205679632427 V
+Eta Concentration : 0.008047225077361353 V
+Eta Ohmic : 0.059326322278429655 V
+Loss : 0.5631941153190336 V
+PEM Efficiency : 0.4022794132570297
+Power : 18.82667654042899 W
+Power-Stack : 18.82667654042899 W
+Power-Thermal : 18.073323459571007 W
+VStack : 0.6275558846809663 V
+Vcell : 0.6275558846809663 V
+###########
+I :30.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.49604096067911085 V
+Eta Concentration : 0.00808212149250312 V
+Eta Ohmic : 0.05955492124520222 V
+Loss : 0.5636780034168162 V
+PEM Efficiency : 0.401969228578964
+Power : 18.87486709715383 W
+Power-Stack : 18.87486709715383 W
+Power-Thermal : 18.148132902846168 W
+VStack : 0.6270719965831838 V
+Vcell : 0.6270719965831838 V
+###########
+I :30.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4962606224061875 V
+Eta Concentration : 0.008117094184022806 V
+Eta Ohmic : 0.05978379464177088 V
+Loss : 0.5641615112319812 V
+PEM Efficiency : 0.4016592876718069
+Power : 18.922972360794166 W
+Power-Stack : 18.922972360794166 W
+Power-Thermal : 18.22302763920583 W
+VStack : 0.6265884887680188 V
+Vcell : 0.6265884887680188 V
+###########
+I :30.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4964795579774698 V
+Eta Concentration : 0.008152143486099899 V
+Eta Ohmic : 0.06001294330467158 V
+Loss : 0.5646446447682413 V
+PEM Efficiency : 0.4013495866870248
+Power : 18.970992263522287 W
+Power-Stack : 18.970992263522287 W
+Power-Thermal : 18.29800773647771 W
+VStack : 0.6261053552317587 V
+Vcell : 0.6261053552317587 V
+###########
+I :30.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.49669777217818173 V
+Eta Concentration : 0.00818726973511487 V
+Eta Ohmic : 0.06024236807239825 V
+Loss : 0.5651274099856949 V
+PEM Efficiency : 0.40104012180404175
+Power : 19.018926736434874 W
+Power-Stack : 19.018926736434874 W
+Power-Thermal : 18.373073263565125 W
+VStack : 0.6256225900143051 V
+Vcell : 0.6256225900143051 V
+###########
+I :30.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4969152697464024 V
+Eta Concentration : 0.008222473269668512 V
+Eta Ohmic : 0.060472069785403905 V
+Loss : 0.5656098128014748 V
+PEM Efficiency : 0.4007308892298238
+Power : 19.066775709555017 W
+Power-Stack : 19.066775709555017 W
+Power-Thermal : 18.448224290444983 W
+VStack : 0.6251401871985252 V
+Vcell : 0.6251401871985252 V
+###########
+I :30.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.49713205537368277 V
+Eta Concentration : 0.008257754430601538 V
+Eta Ohmic : 0.06070204928610198 V
+Loss : 0.5660918590903863 V
+PEM Efficiency : 0.4004218851984703
+Power : 19.11453911183418 W
+Power-Stack : 19.11453911183418 W
+Power-Thermal : 18.523460888165822 W
+VStack : 0.6246581409096137 V
+Vcell : 0.6246581409096137 V
+###########
+I :30.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.49734813370565306 V
+Eta Concentration : 0.008293113561014379 V
+Eta Ohmic : 0.06093230741886741 V
+Loss : 0.5665735546855348 V
+PEM Efficiency : 0.40011310597081096
+Power : 19.16221687115408 W
+Power-Stack : 19.16221687115408 W
+Power-Thermal : 18.59878312884592 W
+VStack : 0.6241764453144651 V
+Vcell : 0.6241764453144651 V
+###########
+I :30.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4975635093426203 V
+Eta Concentration : 0.008328551006287226 V
+Eta Ohmic : 0.06116284503003799 V
+Loss : 0.5670549053789455 V
+PEM Efficiency : 0.39980454783400926
+Power : 19.209808914328477 W
+Power-Stack : 19.209808914328477 W
+Power-Thermal : 18.674191085671524 W
+VStack : 0.6236950946210544 V
+Vcell : 0.6236950946210544 V
+###########
+I :30.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.49777818684015557 V
+Eta Concentration : 0.008364067114100229 V
+Eta Ohmic : 0.061393662967915416 V
+Loss : 0.5675359169221712 V
+PEM Efficiency : 0.3994962071011723
+Power : 19.25731516710491 W
+Power-Stack : 19.25731516710491 W
+Power-Thermal : 18.74968483289509 W
+VStack : 0.6232140830778288 V
+Vcell : 0.6232140830778288 V
+###########
+I :31.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4979921707096726 V
+Eta Concentration : 0.008399662234454009 V
+Eta Ohmic : 0.06162476208276662 V
+Loss : 0.5680165950268932 V
+PEM Efficiency : 0.39918808011096585
+Power : 19.30473555416631 W
+Power-Stack : 19.30473555416631 W
+Power-Thermal : 18.82526444583369 W
+VStack : 0.6227334049731068 V
+Vcell : 0.6227334049731068 V
+###########
+I :31.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.49820546541899624 V
+Eta Concentration : 0.008435336719690316 V
+Eta Ohmic : 0.061856143226825006 V
+Loss : 0.5684969453655115 V
+PEM Efficiency : 0.39888016322723613
+Power : 19.352069999132592 W
+Power-Stack : 19.352069999132592 W
+Power-Thermal : 18.90093000086741 W
+VStack : 0.6222530546344884 V
+Vcell : 0.6222530546344884 V
+###########
+I :31.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.49841807539292254 V
+Eta Concentration : 0.00847109092451298 V
+Eta Ohmic : 0.06208780725429169 V
+Loss : 0.5689769735717272 V
+PEM Efficiency : 0.3985724528386364
+Power : 19.39931842456211 W
+Power-Stack : 19.39931842456211 W
+Power-Thermal : 18.976681575437887 W
+VStack : 0.6217730264282728 V
+Vcell : 0.6217730264282728 V
+###########
+I :31.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4986300050137693 V
+Eta Concentration : 0.00850692520600905 V
+Eta Ohmic : 0.06231975502133677 V
+Loss : 0.5694566852411151 V
+PEM Efficiency : 0.39826494535825946
+Power : 19.446480751953096 W
+Power-Stack : 19.446480751953096 W
+Power-Thermal : 19.052519248046906 W
+VStack : 0.6212933147588848 V
+Vcell : 0.6212933147588848 V
+###########
+I :31.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4988412586219181 V
+Eta Concentration : 0.008542839923670234 V
+Eta Ohmic : 0.0625519873861006 V
+Loss : 0.5699360859316889 V
+PEM Efficiency : 0.3979576372232763
+Power : 19.493556901744967 W
+Power-Stack : 19.493556901744967 W
+Power-Thermal : 19.12844309825503 W
+VStack : 0.6208139140683111 V
+Vcell : 0.6208139140683111 V
+###########
+I :31.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.49905184051634766 V
+Eta Concentration : 0.008578835439414484 V
+Eta Ohmic : 0.0627845052086951 V
+Loss : 0.5704151811644572 V
+PEM Efficiency : 0.39765052489457864
+Power : 19.540546793319596 W
+Power-Stack : 19.540546793319596 W
+Power-Thermal : 19.2044532066804 W
+VStack : 0.6203348188355428 V
+Vcell : 0.6203348188355428 V
+###########
+I :31.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4992617549551589 V
+Eta Concentration : 0.008614912117607912 V
+Eta Ohmic : 0.06301730935120495 V
+Loss : 0.5708939764239718 V
+PEM Efficiency : 0.39734360485642833
+Power : 19.58745034500249 W
+Power-Stack : 19.58745034500249 W
+Power-Thermal : 19.280549654997508 W
+VStack : 0.6198560235760282 V
+Vcell : 0.6198560235760282 V
+###########
+I :31.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4994710061560914 V
+Eta Concentration : 0.008651070325086907 V
+Eta Ohmic : 0.06325040067768894 V
+Loss : 0.5713724771588673 V
+PEM Efficiency : 0.3970368736161107
+Power : 19.634267474063904 W
+Power-Stack : 19.634267474063904 W
+Power-Thermal : 19.356732525936092 W
+VStack : 0.6193775228411327 V
+Vcell : 0.6193775228411327 V
+###########
+I :31.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.49967959829703196 V
+Eta Concentration : 0.008687310431180545 V
+Eta Ohmic : 0.06348378005418145 V
+Loss : 0.571850688782394 V
+PEM Efficiency : 0.39673032770359357
+Power : 19.680998096719872 W
+Power-Stack : 19.680998096719872 W
+Power-Thermal : 19.43300190328013 W
+VStack : 0.618899311217606 V
+Vcell : 0.618899311217606 V
+###########
+I :31.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.4998875355165151 V
+Eta Concentration : 0.008723632807733165 V
+Eta Ohmic : 0.0637174483486934 V
+Loss : 0.5723286166729417 V
+PEM Efficiency : 0.3964239636711912
+Power : 19.72764212813316 W
+Power-Stack : 19.72764212813316 W
+Power-Thermal : 19.50935787186684 W
+VStack : 0.6184213833270583 V
+Vcell : 0.6184213833270583 V
+###########
+I :32.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5000948219142157 V
+Eta Concentration : 0.008760037829127336 V
+Eta Ohmic : 0.063951406431214 V
+Loss : 0.5728062661745571 V
+PEM Efficiency : 0.3961177780932326
+Power : 19.774199482414172 W
+Power-Stack : 19.774199482414172 W
+Power-Thermal : 19.585800517585827 W
+VStack : 0.6179437338254429 V
+Vcell : 0.6179437338254429 V
+###########
+I :32.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5003014615514341 V
+Eta Concentration : 0.00879652587230694 V
+Eta Ohmic : 0.06418565517371173 V
+Loss : 0.5732836425974528 V
+PEM Efficiency : 0.3958117675657354
+Power : 19.820670072621766 W
+Power-Stack : 19.820670072621766 W
+Power-Thermal : 19.662329927378234 W
+VStack : 0.6174663574025472 V
+Vcell : 0.6174663574025472 V
+###########
+I :32.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5005074584515734 V
+Eta Concentration : 0.008833097316800638 V
+Eta Ohmic : 0.06442019545013601 V
+Loss : 0.57376075121851 V
+PEM Efficiency : 0.3955059287060833
+Power : 19.867053810763977 W
+Power-Stack : 19.867053810763977 W
+Power-Thermal : 19.738946189236025 W
+VStack : 0.61698924878149 V
+Vcell : 0.61698924878149 V
+###########
+I :32.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5007128166006095 V
+Eta Concentration : 0.008869752544745526 V
+Eta Ohmic : 0.06465502813641823 V
+Loss : 0.5742375972817733 V
+PEM Efficiency : 0.3952002581527094
+Power : 19.913350607798723 W
+Power-Stack : 19.913350607798723 W
+Power-Thermal : 19.815649392201276 W
+VStack : 0.6165124027182267 V
+Vcell : 0.6165124027182267 V
+###########
+I :32.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5009175399475542 V
+Eta Concentration : 0.008906491940911133 V
+Eta Ohmic : 0.06489015411047336 V
+Loss : 0.5747141859989386 V
+PEM Efficiency : 0.3948947525647829
+Power : 19.959560373634385 W
+Power-Stack : 19.959560373634385 W
+Power-Thermal : 19.89243962636561 W
+VStack : 0.6160358140010613 V
+Vcell : 0.6160358140010613 V
+###########
+I :32.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5011216324049103 V
+Eta Concentration : 0.008943315892723602 V
+Eta Ohmic : 0.06512557425220132 V
+Loss : 0.5751905225498352 V
+PEM Efficiency : 0.3945894086219005
+Power : 20.005683017130355 W
+Power-Stack : 20.005683017130355 W
+Power-Thermal : 19.969316982869643 W
+VStack : 0.6155594774501648 V
+Vcell : 0.6155594774501648 V
+###########
+I :32.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5013250978491208 V
+Eta Concentration : 0.008980224790290243 V
+Eta Ohmic : 0.0653612894434882 V
+Loss : 0.5756666120828993 V
+PEM Efficiency : 0.39428422302378247
+Power : 20.051718446097485 W
+Power-Stack : 20.051718446097485 W
+Power-Thermal : 20.046281553902517 W
+VStack : 0.6150833879171007 V
+Vcell : 0.6150833879171007 V
+###########
+I :32.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5015279401210103 V
+Eta Concentration : 0.009017219026424312 V
+Eta Ohmic : 0.06559730056820774 V
+Loss : 0.5761424597156424 V
+PEM Efficiency : 0.3939791924899728
+Power : 20.097666567298496 W
+Power-Stack : 20.097666567298496 W
+Power-Thermal : 20.123333432701507 W
+VStack : 0.6146075402843576 V
+Vcell : 0.6146075402843576 V
+###########
+I :32.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5017301630262202 V
+Eta Concentration : 0.009054298996670115 V
+Eta Ohmic : 0.06583360851222288 V
+Loss : 0.5766180705351132 V
+PEM Efficiency : 0.3936743137595428
+Power : 20.143527286448286 W
+Power-Stack : 20.143527286448286 W
+Power-Thermal : 20.20047271355171 W
+VStack : 0.6141319294648868 V
+Vcell : 0.6141319294648868 V
+###########
+I :32.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5019317703356371 V
+Eta Concentration : 0.009091465099328346 V
+Eta Ohmic : 0.0660702141633869 V
+Loss : 0.5770934495983523 V
+PEM Efficiency : 0.39336958359079977
+Power : 20.18930050821421 W
+Power-Stack : 20.18930050821421 W
+Power-Thermal : 20.27769949178579 W
+VStack : 0.6136565504016477 V
+Vcell : 0.6136565504016477 V
+###########
+I :33.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5021327657858146 V
+Eta Concentration : 0.009128717735481805 V
+Eta Ohmic : 0.06630711841154514 V
+Loss : 0.5775686019328415 V
+PEM Efficiency : 0.393064998760999
+Power : 20.23498613621623 W
+Power-Stack : 20.23498613621623 W
+Power-Thermal : 20.35501386378377 W
+VStack : 0.6131813980671584 V
+Vcell : 0.6131813980671584 V
+###########
+I :33.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5023331530793889 V
+Eta Concentration : 0.00916605730902133 V
+Eta Ohmic : 0.06654432214853614 V
+Loss : 0.5780435325369463 V
+PEM Efficiency : 0.3927605560660601
+Power : 20.28058407302708 W
+Power-Stack : 20.28058407302708 W
+Power-Thermal : 20.432415926972922 W
+VStack : 0.6127064674630537 V
+Vcell : 0.6127064674630537 V
+###########
+I :33.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5025329358854883 V
+Eta Concentration : 0.009203484226672089 V
+Eta Ohmic : 0.06678182626819332 V
+Loss : 0.5785182463803537 V
+PEM Efficiency : 0.3924562523202861
+Power : 20.32609422017226 W
+Power-Stack : 20.32609422017226 W
+Power-Thermal : 20.509905779827744 W
+VStack : 0.6122317536196463 V
+Vcell : 0.6122317536196463 V
+###########
+I :33.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5027321178401358 V
+Eta Concentration : 0.00924099889802015 V
+Eta Ohmic : 0.06701963166634627 V
+Loss : 0.5789927484045022 V
+PEM Efficiency : 0.39215208435608834
+Power : 20.371516478130072 W
+Power-Stack : 20.371516478130072 W
+Power-Thermal : 20.58748352186992 W
+VStack : 0.6117572515954978 V
+Vcell : 0.6117572515954978 V
+###########
+I :33.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5029307025466467 V
+Eta Concentration : 0.00927860173553941 V
+Eta Ohmic : 0.06725773924082235 V
+Loss : 0.5794670435230085 V
+PEM Efficiency : 0.39184804902371245
+Power : 20.416850746331516 W
+Power-Stack : 20.416850746331516 W
+Power-Thermal : 20.66514925366848 W
+VStack : 0.6112829564769915 V
+Vcell : 0.6112829564769915 V
+###########
+I :33.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5031286935760195 V
+Eta Concentration : 0.009316293154618755 V
+Eta Ohmic : 0.06749614989144799 V
+Loss : 0.5799411366220864 V
+PEM Efficiency : 0.39154414319097025
+Power : 20.462096923160107 W
+Power-Stack : 20.462096923160107 W
+Power-Thermal : 20.742903076839895 W
+VStack : 0.6108088633779136 V
+Vcell : 0.6108088633779136 V
+###########
+I :33.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5033260944673207 V
+Eta Concentration : 0.009354073573589635 V
+Eta Ohmic : 0.06773486452005044 V
+Loss : 0.5804150325609607 V
+PEM Efficiency : 0.3912403637429739
+Power : 20.50725490595172 W
+Power-Stack : 20.50725490595172 W
+Power-Thermal : 20.82074509404828 W
+VStack : 0.6103349674390393 V
+Vcell : 0.6103349674390393 V
+###########
+I :33.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5035229087280653 V
+Eta Concentration : 0.00939194341375389 V
+Eta Ohmic : 0.06797388403045887 V
+Loss : 0.5808887361722781 V
+PEM Efficiency : 0.390936707581873
+Power : 20.55232459099423 W
+Power-Stack : 20.55232459099423 W
+Power-Thermal : 20.898675409005772 W
+VStack : 0.6098612638277219 V
+Vcell : 0.6098612638277219 V
+###########
+I :33.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5037191398345902 V
+Eta Concentration : 0.009429903099411977 V
+Eta Ohmic : 0.0682132093285062 V
+Loss : 0.5813622522625083 V
+PEM Efficiency : 0.3906331716265972
+Power : 20.59730587352722 W
+Power-Stack : 20.59730587352722 W
+Power-Thermal : 20.97669412647278 W
+VStack : 0.6093877477374917 V
+Vcell : 0.6093877477374917 V
+###########
+I :33.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5039147912324227 V
+Eta Concentration : 0.009467953057891451 V
+Eta Ohmic : 0.06845284132203049 V
+Loss : 0.5818355856123446 V
+PEM Efficiency : 0.3903297528125996
+Power : 20.642198647741516 W
+Power-Stack : 20.642198647741516 W
+Power-Thermal : 21.054801352258483 W
+VStack : 0.6089144143876554 V
+Vcell : 0.6089144143876554 V
+###########
+I :34.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5041098663366435 V
+Eta Concentration : 0.009506093719575873 V
+Eta Ohmic : 0.06869278092087643 V
+Loss : 0.5823087409770957 V
+PEM Efficiency : 0.39002644809160525
+Power : 20.687002806778743 W
+Power-Stack : 20.687002806778743 W
+Power-Thermal : 21.132997193221254 W
+VStack : 0.6084412590229042 V
+Vcell : 0.6084412590229042 V
+###########
+I :34.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5043043685322444 V
+Eta Concentration : 0.009544325517933978 V
+Eta Ohmic : 0.06893302903689681 V
+Loss : 0.5827817230870751 V
+PEM Efficiency : 0.38972325443136213
+Power : 20.73171824273074 W
+Power-Stack : 20.73171824273074 W
+Power-Thermal : 21.211281757269262 W
+VStack : 0.6079682769129249 V
+Vcell : 0.6079682769129249 V
+###########
+I :34.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5044983011744809 V
+Eta Concentration : 0.009582648889549258 V
+Eta Ohmic : 0.0691735865839543 V
+Loss : 0.5832545366479845 V
+PEM Efficiency : 0.3894201688153945
+Power : 20.776344846638928 W
+Power-Stack : 20.776344846638928 W
+Power-Thermal : 21.289655153361075 W
+VStack : 0.6074954633520154 V
+Vcell : 0.6074954633520154 V
+###########
+I :34.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.504691667589219 V
+Eta Concentration : 0.009621064274149865 V
+Eta Ohmic : 0.06941445447792262 V
+Loss : 0.5837271863412915 V
+PEM Efficiency : 0.3891171882427618
+Power : 20.8208825084937 W
+Power-Stack : 20.8208825084937 W
+Power-Thermal : 21.368117491506297 W
+VStack : 0.6070228136587085 V
+Vcell : 0.6070228136587085 V
+###########
+I :34.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.504884471073278 V
+Eta Concentration : 0.009659572114638906 V
+Eta Ohmic : 0.06965563363668842 V
+Loss : 0.5841996768246054 V
+PEM Efficiency : 0.38881430972781705
+Power : 20.865331117233573 W
+Power-Stack : 20.865331117233573 W
+Power-Thermal : 21.446668882766424 W
+VStack : 0.6065503231753946 V
+Vcell : 0.6065503231753946 V
+###########
+I :34.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5050767148947676 V
+Eta Concentration : 0.00969817285712505 V
+Eta Ohmic : 0.06989712498015266 V
+Loss : 0.5846720127320453 V
+PEM Efficiency : 0.388511530299971
+Power : 20.909690560744437 W
+Power-Stack : 20.909690560744437 W
+Power-Thermal : 21.52530943925556 W
+VStack : 0.6060779872679547 V
+Vcell : 0.6060779872679547 V
+###########
+I :34.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5052684022934197 V
+Eta Concentration : 0.00973686695095356 V
+Eta Ohmic : 0.07013892943023221 V
+Loss : 0.5851441986746055 V
+PEM Efficiency : 0.3882088470034579
+Power : 20.95396072585865 W
+Power-Stack : 20.95396072585865 W
+Power-Thermal : 21.604039274141353 W
+VStack : 0.6056058013253944 V
+Vcell : 0.6056058013253944 V
+###########
+I :34.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5054595364809171 V
+Eta Concentration : 0.009775654848737656 V
+Eta Ohmic : 0.07038104791086143 V
+Loss : 0.5856162392405162 V
+PEM Efficiency : 0.38790625689710495
+Power : 20.998141498354087 W
+Power-Stack : 20.998141498354087 W
+Power-Thermal : 21.682858501645914 W
+VStack : 0.6051337607594838 V
+Vcell : 0.6051337607594838 V
+###########
+I :34.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5056501206412154 V
+Eta Concentration : 0.009814537006390326 V
+Eta Ohmic : 0.07062348134799383 V
+Loss : 0.5860881389955995 V
+PEM Efficiency : 0.3876037570541028
+Power : 21.042232762953134 W
+Power-Stack : 21.042232762953134 W
+Power-Thermal : 21.76176723704686 W
+VStack : 0.6046618610044004 V
+Vcell : 0.6046618610044004 V
+###########
+I :34.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5058401579308618 V
+Eta Concentration : 0.009853513883156419 V
+Eta Ohmic : 0.07086623066960353 V
+Loss : 0.5865599024836218 V
+PEM Efficiency : 0.38730134456178084
+Power : 21.086234403321598 W
+Power-Stack : 21.086234403321598 W
+Power-Thermal : 21.8407655966784 W
+VStack : 0.6041900975163782 V
+Vcell : 0.6041900975163782 V
+###########
+I :35.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5060296514793083 V
+Eta Concentration : 0.00989258594164525 V
+Eta Ohmic : 0.07110929680568694 V
+Loss : 0.5870315342266405 V
+PEM Efficiency : 0.3869990165213843
+Power : 21.130146302067583 W
+Power-Stack : 21.130146302067583 W
+Power-Thermal : 21.919853697932417 W
+VStack : 0.6037184657733595 V
+Vcell : 0.6037184657733595 V
+###########
+I :35.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5062186043892217 V
+Eta Concentration : 0.009931753647863492 V
+Eta Ohmic : 0.07135268068826434 V
+Loss : 0.5875030387253496 V
+PEM Efficiency : 0.3866967700478528
+Power : 21.17396834074023 W
+Power-Stack : 21.17396834074023 W
+Power-Thermal : 21.99903165925977 W
+VStack : 0.6032469612746504 V
+Vcell : 0.6032469612746504 V
+###########
+I :35.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5064070197367876 V
+Eta Concentration : 0.00997101747124856 V
+Eta Ohmic : 0.0715963832513816 V
+Loss : 0.5879744204594177 V
+PEM Efficiency : 0.38639460226960404
+Power : 21.217700399828498 W
+Power-Stack : 21.217700399828498 W
+Power-Thermal : 22.078299600171505 W
+VStack : 0.6027755795405823 V
+Vcell : 0.6027755795405823 V
+###########
+I :35.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5065949005720111 V
+Eta Concentration : 0.010010377884702354 V
+Eta Ohmic : 0.07184040543111159 V
+Loss : 0.588445683887825 V
+PEM Efficiency : 0.3860925103283173
+Power : 21.261342358759773 W
+Power-Stack : 21.261342358759773 W
+Power-Thermal : 22.15765764124022 W
+VStack : 0.6023043161121749 V
+Vcell : 0.6023043161121749 V
+###########
+I :35.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5067822499190135 V
+Eta Concentration : 0.010049835364625451 V
+Eta Ohmic : 0.07208474816555607 V
+Loss : 0.5889168334491951 V
+PEM Efficiency : 0.38579049137872107
+Power : 21.30489409589849 W
+Power-Stack : 21.30489409589849 W
+Power-Thermal : 22.237105904101504 W
+VStack : 0.6018331665508049 V
+Vcell : 0.6018331665508049 V
+###########
+I :35.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5069690707763239 V
+Eta Concentration : 0.010089390390951677 V
+Eta Ohmic : 0.07232941239484718 V
+Loss : 0.5893878735621227 V
+PEM Efficiency : 0.3854885425883828
+Power : 21.34835548854464 W
+Power-Stack : 21.34835548854464 W
+Power-Thermal : 22.316644511455358 W
+VStack : 0.6013621264378772 V
+Vcell : 0.6013621264378772 V
+###########
+I :35.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5071553661171673 V
+Eta Concentration : 0.010129043447183154 V
+Eta Ohmic : 0.07257439906114913 V
+Loss : 0.5898588086254996 V
+PEM Efficiency : 0.3851866611375002
+Power : 21.391726412932215 W
+Power-Stack : 21.391726412932215 W
+Power-Thermal : 22.396273587067785 W
+VStack : 0.6008911913745004 V
+Vcell : 0.6008911913745004 V
+###########
+I :35.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5073411388897484 V
+Eta Concentration : 0.01016879502042574 V
+Eta Ohmic : 0.07281970910865981 V
+Loss : 0.590329643018834 V
+PEM Efficiency : 0.3848848442186962
+Power : 21.43500674422763 W
+Power-Stack : 21.43500674422763 W
+Power-Thermal : 22.475993255772373 W
+VStack : 0.600420356981166 V
+Vcell : 0.600420356981166 V
+###########
+I :35.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5075263920175318 V
+Eta Concentration : 0.010208645601424973 V
+Eta Ohmic : 0.0730653434836126 V
+Loss : 0.5908003811025694 V
+PEM Efficiency : 0.3845830890368145
+Power : 21.478196356528013 W
+Power-Stack : 21.478196356528013 W
+Power-Thermal : 22.555803643471982 W
+VStack : 0.5999496188974306 V
+Vcell : 0.5999496188974306 V
+###########
+I :35.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5077111283995178 V
+Eta Concentration : 0.010248595684602362 V
+Eta Ohmic : 0.07331130313427789 V
+Loss : 0.5912710272183981 V
+PEM Efficiency : 0.38428139280871915
+Power : 21.521295122859506 W
+Power-Stack : 21.521295122859506 W
+Power-Thermal : 22.63570487714049 W
+VStack : 0.5994789727816019 V
+Vcell : 0.5994789727816019 V
+###########
+I :36.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5078953509105149 V
+Eta Concentration : 0.01028864576809226 V
+Eta Ohmic : 0.0735575890109649 V
+Loss : 0.591741585689572 V
+PEM Efficiency : 0.3839797527630948
+Power : 21.564302915175407 W
+Power-Stack : 21.564302915175407 W
+Power-Thermal : 22.715697084824594 W
+VStack : 0.599008414310428 V
+Vcell : 0.599008414310428 V
+###########
+I :36.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5080790624014077 V
+Eta Concentration : 0.010328796353779077 V
+Eta Ohmic : 0.07380420206602321 V
+Loss : 0.5922120608212099 V
+PEM Efficiency : 0.38367816614024997
+Power : 21.607219604354324 W
+Power-Stack : 21.607219604354324 W
+Power-Thermal : 22.79578039564568 W
+VStack : 0.5985379391787901 V
+Vcell : 0.5985379391787901 V
+###########
+I :36.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5082622656994221 V
+Eta Concentration : 0.010369047947335034 V
+Eta Ohmic : 0.07405114325384474 V
+Loss : 0.592682456900602 V
+PEM Efficiency : 0.3833766301919218
+Power : 21.65004506019821 W
+Power-Stack : 21.65004506019821 W
+Power-Thermal : 22.875954939801794 W
+VStack : 0.598067543099398 V
+Vcell : 0.598067543099398 V
+###########
+I :36.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5084449636083863 V
+Eta Concentration : 0.010409401058258388 V
+Eta Ohmic : 0.07429841353086501 V
+Loss : 0.5931527781975097 V
+PEM Efficiency : 0.3830751421810835
+Power : 21.692779151430397 W
+Power-Stack : 21.692779151430397 W
+Power-Thermal : 22.9562208485696 W
+VStack : 0.5975972218024903 V
+Vcell : 0.5975972218024903 V
+###########
+I :36.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5086271589089882 V
+Eta Concentration : 0.010449856199912129 V
+Eta Ohmic : 0.07454601385556552 V
+Loss : 0.5936230289644658 V
+PEM Efficiency : 0.3827736993817526
+Power : 21.73542174569344 W
+Power-Stack : 21.73542174569344 W
+Power-Thermal : 23.036578254306555 W
+VStack : 0.5971269710355341 V
+Vcell : 0.5971269710355341 V
+###########
+I :36.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5088088543590291 V
+Eta Concentration : 0.010490413889563139 V
+Eta Ohmic : 0.07479394518847476 V
+Loss : 0.5940932134370671 V
+PEM Efficiency : 0.38247229907880315
+Power : 21.77797270954705 W
+Power-Stack : 21.77797270954705 W
+Power-Thermal : 23.11702729045295 W
+VStack : 0.5966567865629329 V
+Vcell : 0.5966567865629329 V
+###########
+I :36.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5089900526936746 V
+Eta Concentration : 0.010531074648421903 V
+Eta Ohmic : 0.07504220849217047 V
+Loss : 0.594563335834267 V
+PEM Efficiency : 0.3821709385677775
+Power : 21.820431908465828 W
+Power-Stack : 21.820431908465828 W
+Power-Thermal : 23.197568091534173 W
+VStack : 0.596186664165733 V
+Vcell : 0.596186664165733 V
+###########
+I :36.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5091707566257012 V
+Eta Concentration : 0.010571839001682676 V
+Eta Ohmic : 0.07529080473128108 V
+Loss : 0.595033400358665 V
+PEM Efficiency : 0.38186961515470186
+Power : 21.862799206836993 W
+Power-Stack : 21.862799206836993 W
+Power-Thermal : 23.27820079316301 W
+VStack : 0.5957165996413349 V
+Vcell : 0.5957165996413349 V
+###########
+I :36.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5093509688457406 V
+Eta Concentration : 0.010612707478564227 V
+Eta Ohmic : 0.07553973487248772 V
+Loss : 0.5955034111967925 V
+PEM Efficiency : 0.3815683261559022
+Power : 21.905074467958034 W
+Power-Stack : 21.905074467958034 W
+Power-Thermal : 23.35892553204196 W
+VStack : 0.5952465888032075 V
+Vcell : 0.5952465888032075 V
+###########
+I :36.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5095306920225193 V
+Eta Concentration : 0.010653680612351 V
+Eta Ohmic : 0.07578899988452573 V
+Loss : 0.595973372519396 V
+PEM Efficiency : 0.3812670688978231
+Power : 21.947257554034287 W
+Power-Stack : 21.947257554034287 W
+Power-Thermal : 23.43974244596571 W
+VStack : 0.594776627480604 V
+Vcell : 0.594776627480604 V
+###########
+I :37.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5097099288030966 V
+Eta Concentration : 0.010694758940434935 V
+Eta Ohmic : 0.07603860073818666 V
+Loss : 0.5964432884817182 V
+PEM Efficiency : 0.38096584071684725
+Power : 21.989348326176426 W
+Power-Stack : 21.989348326176426 W
+Power-Thermal : 23.520651673823576 W
+VStack : 0.5943067115182817 V
+Vcell : 0.5943067115182817 V
+###########
+I :37.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5098886818130977 V
+Eta Concentration : 0.010735943004357705 V
+Eta Ohmic : 0.07628853840631983 V
+Loss : 0.5969131632237752 V
+PEM Efficiency : 0.38066463895911845
+Power : 22.03134664439794 W
+Power-Stack : 22.03134664439794 W
+Power-Thermal : 23.60165335560206 W
+VStack : 0.5938368367762248 V
+Vcell : 0.5938368367762248 V
+###########
+I :37.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5100669536569448 V
+Eta Concentration : 0.01077723334985357 V
+Eta Ohmic : 0.07653881386383425 V
+Loss : 0.5973830008706326 V
+PEM Efficiency : 0.3803634609803637
+Power : 22.07325236761247 W
+Power-Stack : 22.07325236761247 W
+Power-Thermal : 23.68274763238753 W
+VStack : 0.5933669991293674 V
+Vcell : 0.5933669991293674 V
+###########
+I :37.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5102447469180852 V
+Eta Concentration : 0.010818630526892782 V
+Eta Ohmic : 0.07678942808770041 V
+Loss : 0.5978528055326784 V
+PEM Efficiency : 0.380062304145719
+Power : 22.115065353631092 W
+Power-Stack : 22.115065353631092 W
+Power-Thermal : 23.763934646368902 W
+VStack : 0.5928971944673216 V
+Vcell : 0.5928971944673216 V
+###########
+I :37.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5104220641592153 V
+Eta Concentration : 0.01086013508972553 V
+Eta Ohmic : 0.07704038205695209 V
+Loss : 0.5983225813058929 V
+PEM Efficiency : 0.37976116582955577
+Power : 22.156785459159604 W
+Power-Stack : 22.156785459159604 W
+Power-Thermal : 23.845214540840395 W
+VStack : 0.5924274186941071 V
+Vcell : 0.5924274186941071 V
+###########
+I :37.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5105989079225026 V
+Eta Concentration : 0.01090174759692645 V
+Eta Ohmic : 0.07729167675268801 V
+Loss : 0.598792332272117 V
+PEM Efficiency : 0.3794600434153096
+Power : 22.198412539795612 W
+Power-Stack : 22.198412539795612 W
+Power-Thermal : 23.926587460204388 W
+VStack : 0.5919576677278829 V
+Vcell : 0.5919576677278829 V
+###########
+I :37.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5107752807298043 V
+Eta Concentration : 0.010943468611439746 V
+Eta Ohmic : 0.07754331315807399 V
+Loss : 0.599262062499318 V
+PEM Efficiency : 0.3791589342953089
+Power : 22.23994645002564 W
+Power-Stack : 22.23994645002564 W
+Power-Thermal : 24.00805354997436 W
+VStack : 0.591487937500682 V
+Vcell : 0.591487937500682 V
+###########
+I :37.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5109511850828831 V
+Eta Concentration : 0.010985298700624873 V
+Eta Ohmic : 0.07779529225834435 V
+Loss : 0.5997317760418523 V
+PEM Efficiency : 0.37885783587060745
+Power : 22.281387043222168 W
+Power-Stack : 22.281387043222168 W
+Power-Thermal : 24.089612956777835 W
+VStack : 0.5910182239581476 V
+Vcell : 0.5910182239581476 V
+###########
+I :37.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5111266234636198 V
+Eta Concentration : 0.011027238436302865 V
+Eta Ohmic : 0.0780476150408041 V
+Loss : 0.6002014769407267 V
+PEM Efficiency : 0.3785567455508162
+Power : 22.32273417164053 W
+Power-Stack : 22.32273417164053 W
+Power-Thermal : 24.171265828359466 W
+VStack : 0.5905485230592733 V
+Vcell : 0.5905485230592733 V
+###########
+I :37.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5113015983342242 V
+Eta Concentration : 0.01106928839480318 V
+Eta Ohmic : 0.0783002824948306 V
+Loss : 0.6006711692238579 V
+PEM Efficiency : 0.37825566075393724
+Power : 22.363987686415786 W
+Power-Stack : 22.363987686415786 W
+Power-Thermal : 24.253012313584215 W
+VStack : 0.5900788307761421 V
+Vcell : 0.5900788307761421 V
+###########
+I :38.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5114761121374416 V
+Eta Concentration : 0.011111449157011257 V
+Eta Ohmic : 0.07855329561187546 V
+Loss : 0.6011408569063283 V
+PEM Efficiency : 0.37795457890619977
+Power : 22.40514743755952 W
+Power-Stack : 22.40514743755952 W
+Power-Thermal : 24.334852562440478 W
+VStack : 0.5896091430936716 V
+Vcell : 0.5896091430936716 V
+###########
+I :38.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5116501672967579 V
+Eta Concentration : 0.011153721308416676 V
+Eta Ohmic : 0.0788066553854664 V
+Loss : 0.601610543990641 V
+PEM Efficiency : 0.3776534974418968
+Power : 22.44621327395658 W
+Power-Stack : 22.44621327395658 W
+Power-Thermal : 24.416786726043423 W
+VStack : 0.589139456009359 V
+Vcell : 0.589139456009359 V
+###########
+I :38.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5118237662166014 V
+Eta Concentration : 0.011196105439161908 V
+Eta Ohmic : 0.07906036281120911 V
+Loss : 0.6020802344669725 V
+PEM Efficiency : 0.37735241380322276
+Power : 22.487185043361652 W
+Power-Stack : 22.487185043361652 W
+Power-Thermal : 24.49881495663835 W
+VStack : 0.5886697655330275 V
+Vcell : 0.5886697655330275 V
+###########
+I :38.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5119969112825419 V
+Eta Concentration : 0.011238602144091767 V
+Eta Ohmic : 0.07931441888678915 V
+Loss : 0.6025499323134228 V
+PEM Efficiency : 0.37705132544011355
+Power : 22.528062592395905 W
+Power-Stack : 22.528062592395905 W
+Power-Thermal : 24.580937407604093 W
+VStack : 0.5882000676865772 V
+Vcell : 0.5882000676865772 V
+###########
+I :38.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5121696048614879 V
+Eta Concentration : 0.011281212022803504 V
+Eta Ohmic : 0.07956882461197379 V
+Loss : 0.6030196414962652 V
+PEM Efficiency : 0.3767502298100864
+Power : 22.568845766543415 W
+Power-Stack : 22.568845766543415 W
+Power-Thermal : 24.663154233456584 W
+VStack : 0.5877303585037348 V
+Vcell : 0.5877303585037348 V
+###########
+I :38.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5123418493018802 V
+Eta Concentration : 0.011323935679697564 V
+Eta Ohmic : 0.07982358098861389 V
+Loss : 0.6034893659701916 V
+PEM Efficiency : 0.37644912437808226
+Power : 22.60953441014762 W
+Power-Stack : 22.60953441014762 W
+Power-Thermal : 24.74546558985238 W
+VStack : 0.5872606340298083 V
+Vcell : 0.5872606340298083 V
+###########
+I :38.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5125136469338839 V
+Eta Concentration : 0.01136677372402903 V
+Eta Ohmic : 0.08007868902064594 V
+Loss : 0.6039591096785589 V
+PEM Efficiency : 0.3761480066163083
+Power : 22.650128366407625 W
+Power-Stack : 22.650128366407625 W
+Power-Thermal : 24.827871633592377 W
+VStack : 0.586790890321441 V
+Vcell : 0.586790890321441 V
+###########
+I :38.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5126850000695773 V
+Eta Concentration : 0.011409726769959737 V
+Eta Ohmic : 0.08033414971409375 V
+Loss : 0.6044288765536308 V
+PEM Efficiency : 0.37584687400408284
+Power : 22.69062747737449 W
+Power-Stack : 22.69062747737449 W
+Power-Thermal : 24.91037252262551 W
+VStack : 0.5863211234463692 V
+Vcell : 0.5863211234463692 V
+###########
+I :38.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5128559110031388 V
+Eta Concentration : 0.011452795436611114 V
+Eta Ohmic : 0.08058996407707052 V
+Loss : 0.6048986705168204 V
+PEM Efficiency : 0.37554572402767916
+Power : 22.731031583947363 W
+Power-Stack : 22.731031583947363 W
+Power-Thermal : 24.992968416052634 W
+VStack : 0.5858513294831795 V
+Vcell : 0.5858513294831795 V
+###########
+I :38.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5130263820110308 V
+Eta Concentration : 0.011495980348117756 V
+Eta Ohmic : 0.08084613311978077 V
+Loss : 0.6053684954789292 V
+PEM Efficiency : 0.3752445541801735
+Power : 22.77134052586965 W
+Power-Stack : 22.77134052586965 W
+Power-Thermal : 25.075659474130347 W
+VStack : 0.5853815045210707 V
+Vcell : 0.5853815045210707 V
+###########
+I :39.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5131964153521824 V
+Eta Concentration : 0.011539282133681645 V
+Eta Ohmic : 0.08110265785452217 V
+Loss : 0.6058383553403862 V
+PEM Efficiency : 0.37494336196129086
+Power : 22.811554141724937 W
+Power-Stack : 22.811554141724937 W
+Power-Thermal : 25.158445858275062 W
+VStack : 0.5849116446596138 V
+Vcell : 0.5849116446596138 V
+###########
+I :39.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5133660132681683 V
+Eta Concentration : 0.011582701427627184 V
+Eta Ohmic : 0.08135953929568747 V
+Loss : 0.606308253991483 V
+PEM Efficiency : 0.37464214487725445
+Power : 22.851672268933015 W
+Power-Stack : 22.851672268933015 W
+Power-Thermal : 25.24132773106699 W
+VStack : 0.584441746008517 V
+Vcell : 0.584441746008517 V
+###########
+I :39.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5135351779833863 V
+Eta Concentration : 0.011626238869456957 V
+Eta Ohmic : 0.08161677845976664 V
+Loss : 0.6067781953126099 V
+PEM Efficiency : 0.3743409004406346
+Power : 22.891694743745692 W
+Power-Stack : 22.891694743745692 W
+Power-Thermal : 25.32430525625431 W
+VStack : 0.5839718046873901 V
+Vcell : 0.5839718046873901 V
+###########
+I :39.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5137039117052323 V
+Eta Concentration : 0.01166989510390822 V
+Eta Ohmic : 0.08187437636534861 V
+Loss : 0.6072481831744891 V
+PEM Efficiency : 0.37403962617019926
+Power : 22.931621401242573 W
+Power-Stack : 22.931621401242573 W
+Power-Thermal : 25.407378598757422 W
+VStack : 0.5835018168255108 V
+Vcell : 0.5835018168255108 V
+###########
+I :39.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5138722166242736 V
+Eta Concentration : 0.011713670781010214 V
+Eta Ohmic : 0.08213233403312334 V
+Loss : 0.6077182214384073 V
+PEM Efficiency : 0.37373831959076453
+Power : 22.971452075326752 W
+Power-Stack : 22.971452075326752 W
+Power-Thermal : 25.490547924673244 W
+VStack : 0.5830317785615927 V
+Vcell : 0.5830317785615927 V
+###########
+I :39.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5140400949144188 V
+Eta Concentration : 0.011757566556142227 V
+Eta Ohmic : 0.08239065248588376 V
+Loss : 0.6081883139564448 V
+PEM Efficiency : 0.37343697823304817
+Power : 23.01118659872043 W
+Power-Stack : 23.01118659872043 W
+Power-Thermal : 25.57381340127957 W
+VStack : 0.5825616860435552 V
+Vcell : 0.5825616860435552 V
+###########
+I :39.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5142075487330867 V
+Eta Concentration : 0.011801583090092466 V
+Eta Ohmic : 0.08264933274852776 V
+Loss : 0.6086584645717069 V
+PEM Efficiency : 0.3731355996335212
+Power : 23.050824802960406 W
+Power-Stack : 23.050824802960406 W
+Power-Thermal : 25.657175197039596 W
+VStack : 0.5820915354282931 V
+Vcell : 0.5820915354282931 V
+###########
+I :39.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5143745802213728 V
+Eta Concentration : 0.011845721049117745 V
+Eta Ohmic : 0.0829083758480601 V
+Loss : 0.6091286771185507 V
+PEM Efficiency : 0.3728341813342624
+Power : 23.090366518393537 W
+Power-Stack : 23.090366518393537 W
+Power-Thermal : 25.740633481606466 W
+VStack : 0.5816213228814493 V
+Vcell : 0.5816213228814493 V
+###########
+I :39.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5145411915042131 V
+Eta Concentration : 0.011889981105003982 V
+Eta Ohmic : 0.08316778281359463 V
+Loss : 0.6095989554228116 V
+PEM Efficiency : 0.37253272088281303
+Power : 23.129811574172095 W
+Power-Stack : 23.129811574172095 W
+Power-Thermal : 25.824188425827902 W
+VStack : 0.5811510445771884 V
+Vcell : 0.5811510445771884 V
+###########
+I :39.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5147073846905466 V
+Eta Concentration : 0.011934363935127588 V
+Eta Ohmic : 0.08342755467635603 V
+Loss : 0.6100693033020301 V
+PEM Efficiency : 0.37223121583203195
+Power : 23.169159798248995 W
+Power-Stack : 23.169159798248995 W
+Power-Thermal : 25.907840201751 W
+VStack : 0.5806806966979698 V
+Vcell : 0.5806806966979698 V
+###########
+I :40.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5148731618734756 V
+Eta Concentration : 0.011978870222517618 V
+Eta Ohmic : 0.08368769246968191 V
+Loss : 0.6105397245656752 V
+PEM Efficiency : 0.3719296637399518
+Power : 23.208411017372992 W
+Power-Stack : 23.208411017372992 W
+Power-Thermal : 25.991588982627007 W
+VStack : 0.5802102754343248 V
+Vcell : 0.5802102754343248 V
+###########
+I :40.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5150385251304237 V
+Eta Concentration : 0.012023500655918874 V
+Eta Ohmic : 0.08394819722902486 V
+Loss : 0.6110102230153673 V
+PEM Efficiency : 0.3716280621696363
+Power : 23.24756505708377 W
+Power-Stack : 23.24756505708377 W
+Power-Thermal : 26.07543494291623 W
+VStack : 0.5797397769846326 V
+Vcell : 0.5797397769846326 V
+###########
+I :40.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5152034765232917 V
+Eta Concentration : 0.012068255929855855 V
+Eta Ohmic : 0.08420906999195456 V
+Loss : 0.6114808024451021 V
+PEM Efficiency : 0.3713264086890371
+Power : 23.2866217417069 W
+Power-Stack : 23.2866217417069 W
+Power-Thermal : 26.159378258293106 W
+VStack : 0.5792691975548979 V
+Vcell : 0.5792691975548979 V
+###########
+I :40.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5153680180986123 V
+Eta Concentration : 0.012113136744697592 V
+Eta Ohmic : 0.08447031179815957 V
+Loss : 0.6119514666414695 V
+PEM Efficiency : 0.3710247008708529
+Power : 23.32558089434878 W
+Power-Stack : 23.32558089434878 W
+Power-Thermal : 26.24341910565122 W
+VStack : 0.5787985333585305 V
+Vcell : 0.5787985333585305 V
+###########
+I :40.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5155321518877027 V
+Eta Concentration : 0.012158143806723426 V
+Eta Ohmic : 0.08473192368944961 V
+Loss : 0.6124222193838758 V
+PEM Efficiency : 0.3707229362923873
+Power : 23.36444233689142 W
+Power-Stack : 23.36444233689142 W
+Power-Thermal : 26.32755766310858 W
+VStack : 0.5783277806161242 V
+Vcell : 0.5783277806161242 V
+###########
+I :40.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5156958799068141 V
+Eta Concentration : 0.012203277828189684 V
+Eta Ohmic : 0.08499390670975746 V
+Loss : 0.6128930644447612 V
+PEM Efficiency : 0.3704211125354095
+Power : 23.40320588998717 W
+Power-Stack : 23.40320588998717 W
+Power-Thermal : 26.411794110012828 W
+VStack : 0.5778569355552388 V
+Vcell : 0.5778569355552388 V
+###########
+I :40.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5158592041572811 V
+Eta Concentration : 0.01224853952739733 V
+Eta Ohmic : 0.08525626190514109 V
+Loss : 0.6133640055898196 V
+PEM Efficiency : 0.37011922718601303
+Power : 23.441871373053324 W
+Power-Stack : 23.441871373053324 W
+Power-Thermal : 26.49612862694668 W
+VStack : 0.5773859944101803 V
+Vcell : 0.5773859944101803 V
+###########
+I :40.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5160221266256685 V
+Eta Concentration : 0.012293929628760527 V
+Eta Ohmic : 0.08551899032378568 V
+Loss : 0.6138350465782147 V
+PEM Efficiency : 0.3698172778344777
+Power : 23.48043860426666 W
+Power-Stack : 23.48043860426666 W
+Power-Thermal : 26.580561395733344 W
+VStack : 0.5769149534217852 V
+Vcell : 0.5769149534217852 V
+###########
+I :40.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5161846492839156 V
+Eta Concentration : 0.012339448862876223 V
+Eta Ohmic : 0.08578209301600574 V
+Loss : 0.6143061911627975 V
+PEM Efficiency : 0.36951526207512975
+Power : 23.51890740055786 W
+Power-Stack : 23.51890740055786 W
+Power-Thermal : 26.665092599442136 W
+VStack : 0.5764438088372025 V
+Vcell : 0.5764438088372025 V
+###########
+I :40.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5163467740894804 V
+Eta Concentration : 0.012385097966594727 V
+Eta Ohmic : 0.08604557103424718 V
+Loss : 0.6147774430903222 V
+PEM Efficiency : 0.36921317750620364
+Power : 23.55727757760582 W
+Power-Stack : 23.55727757760582 W
+Power-Thermal : 26.74972242239418 W
+VStack : 0.5759725569096777 V
+Vcell : 0.5759725569096777 V
+###########
+I :41.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5165085029854801 V
+Eta Concentration : 0.012430877683091245 V
+Eta Ohmic : 0.08630942543308939 V
+Loss : 0.6152488061016608 V
+PEM Efficiency : 0.3689110217297046
+Power : 23.595548949831908 W
+Power-Stack : 23.595548949831908 W
+Power-Thermal : 26.83445105016809 W
+VStack : 0.5755011938983392 V
+Vcell : 0.5755011938983392 V
+###########
+I :41.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5166698379008314 V
+Eta Concentration : 0.012476788761938489 V
+Eta Ohmic : 0.08657365726924719 V
+Loss : 0.615720283932017 V
+PEM Efficiency : 0.3686087923512711
+Power : 23.6337213303941 W
+Power-Stack : 23.6337213303941 W
+Power-Thermal : 26.9192786696059 W
+VStack : 0.5750297160679829 V
+Vcell : 0.5750297160679829 V
+###########
+I :41.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5168307807503885 V
+Eta Concentration : 0.012522831959180334 V
+Eta Ohmic : 0.08683826760157334 V
+Loss : 0.6161918803111421 V
+PEM Efficiency : 0.36830648698003704
+Power : 23.671794531180943 W
+Power-Stack : 23.671794531180943 W
+Power-Thermal : 27.00420546881906 W
+VStack : 0.5745581196888578 V
+Vcell : 0.5745581196888578 V
+###########
+I :41.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5169913334350792 V
+Eta Concentration : 0.01256900803740649 V
+Eta Ohmic : 0.08710325749106 V
+Loss : 0.6166635989635456 V
+PEM Efficiency : 0.36800410322849636
+Power : 23.709768362805562 W
+Power-Stack : 23.709768362805562 W
+Power-Thermal : 27.089231637194434 W
+VStack : 0.5740864010364544 V
+Vcell : 0.5740864010364544 V
+###########
+I :41.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5171514978420397 V
+Eta Concentration : 0.012615317765828322 V
+Eta Ohmic : 0.08736862800084162 V
+Loss : 0.6171354436087098 V
+PEM Efficiency : 0.3677016387123655
+Power : 23.747642634599416 W
+Power-Stack : 23.747642634599416 W
+Power-Thermal : 27.17435736540058 W
+VStack : 0.5736145563912902 V
+Vcell : 0.5736145563912902 V
+###########
+I :41.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5173112758447482 V
+Eta Concentration : 0.012661761920355704 V
+Eta Ohmic : 0.08763438019619642 V
+Loss : 0.6176074179613004 V
+PEM Efficiency : 0.3673990910504485
+Power : 23.785417154606034 W
+Power-Stack : 23.785417154606034 W
+Power-Thermal : 27.259582845393965 W
+VStack : 0.5731425820386996 V
+Vcell : 0.5731425820386996 V
+###########
+I :41.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5174706693031554 V
+Eta Concentration : 0.01270834128367504 V
+Eta Ohmic : 0.08790051514454887 V
+Loss : 0.6180795257313794 V
+PEM Efficiency : 0.36709645786450035
+Power : 23.823091729574617 W
+Power-Stack : 23.823091729574617 W
+Power-Thermal : 27.344908270425382 W
+VStack : 0.5726704742686206 V
+Vcell : 0.5726704742686206 V
+###########
+I :41.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5176296800638155 V
+Eta Concentration : 0.012755056645328399 V
+Eta Ohmic : 0.0881670339154717 V
+Loss : 0.6185517706246156 V
+PEM Efficiency : 0.3667937367790925
+Power : 23.86066616495353 W
+Power-Stack : 23.86066616495353 W
+Power-Thermal : 27.430333835046476 W
+VStack : 0.5721982293753843 V
+Vcell : 0.5721982293753843 V
+###########
+I :41.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5177883099600135 V
+Eta Concentration : 0.012801908801793806 V
+Eta Ohmic : 0.08843393758068811 V
+Loss : 0.6190241563424953 V
+PEM Efficiency : 0.3664909254214774
+Power : 23.898140264883693 W
+Power-Stack : 23.898140264883693 W
+Power-Thermal : 27.5158597351163 W
+VStack : 0.5717258436575047 V
+Vcell : 0.5717258436575047 V
+###########
+I :41.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5179465608118929 V
+Eta Concentration : 0.012848898556566764 V
+Eta Ohmic : 0.08870122721407388 V
+Loss : 0.6194966865825337 V
+PEM Efficiency : 0.3661880214214528
+Power : 23.935513832191837 W
+Power-Stack : 23.935513832191837 W
+Power-Thermal : 27.601486167808158 W
+VStack : 0.5712533134174663 V
+Vcell : 0.5712533134174663 V
+###########
+I :42.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5181044344265806 V
+Eta Concentration : 0.012896026720242875 V
+Eta Ohmic : 0.08896890389165962 V
+Loss : 0.6199693650384832 V
+PEM Efficiency : 0.3658850224112287
+Power : 23.972786668383705 W
+Power-Stack : 23.972786668383705 W
+Power-Thermal : 27.687213331616295 W
+VStack : 0.5707806349615168 V
+Vcell : 0.5707806349615168 V
+###########
+I :42.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5182619325983107 V
+Eta Concentration : 0.012943294110601779 V
+Eta Ohmic : 0.08923696869163278 V
+Loss : 0.6204421954005452 V
+PEM Efficiency : 0.3655819260252915
+Power : 24.009958573637046 W
+Power-Stack : 24.009958573637046 W
+Power-Thermal : 27.773041426362955 W
+VStack : 0.5703078045994547 V
+Vcell : 0.5703078045994547 V
+###########
+I :42.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5184190571085469 V
+Eta Concentration : 0.012990701552692293 V
+Eta Ohmic : 0.08950542269434 V
+Loss : 0.6209151813555792 V
+PEM Efficiency : 0.3652787299002697
+Power : 24.047029346794556 W
+Power-Stack : 24.047029346794556 W
+Power-Thermal : 27.858970653205446 W
+VStack : 0.5698348186444208 V
+Vcell : 0.5698348186444208 V
+###########
+I :42.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5185758097261035 V
+Eta Concentration : 0.013038249878918813 V
+Eta Ohmic : 0.08977426698228919 V
+Loss : 0.6213883265873115 V
+PEM Efficiency : 0.3649754316748003
+Power : 24.083998785356723 W
+Power-Stack : 24.083998785356723 W
+Power-Thermal : 27.945001214643273 W
+VStack : 0.5693616734126885 V
+Vcell : 0.5693616734126885 V
+###########
+I :42.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.518732192207265 V
+Eta Concentration : 0.013085939929129015 V
+Eta Ohmic : 0.09004350264015176 V
+Loss : 0.6218616347765458 V
+PEM Efficiency : 0.3646720289893937
+Power : 24.120866685474457 W
+Power-Stack : 24.120866685474457 W
+Power-Thermal : 28.03113331452554 W
+VStack : 0.5688883652234542 V
+Vcell : 0.5688883652234542 V
+###########
+I :42.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5188882062959034 V
+Eta Concentration : 0.013133772550702869 V
+Eta Ohmic : 0.09031313075476483 V
+Loss : 0.6223351096013711 V
+PEM Efficiency : 0.36436851948630056
+Power : 24.15763284194173 W
+Power-Stack : 24.15763284194173 W
+Power-Thermal : 28.117367158058272 W
+VStack : 0.5684148903986289 V
+Vcell : 0.5684148903986289 V
+###########
+I :42.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5190438537235961 V
+Eta Concentration : 0.013181748598642977 V
+Eta Ohmic : 0.09058315241513344 V
+Loss : 0.6228087547373725 V
+PEM Efficiency : 0.36406490080937653
+Power : 24.19429704818793 W
+Power-Stack : 24.19429704818793 W
+Power-Thermal : 28.20370295181207 W
+VStack : 0.5679412452626275 V
+Vcell : 0.5679412452626275 V
+###########
+I :42.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5191991362097402 V
+Eta Concentration : 0.013229868935666264 V
+Eta Ohmic : 0.09085356871243275 V
+Loss : 0.6232825738578393 V
+PEM Efficiency : 0.3637611706039492
+Power : 24.230859096270265 W
+Power-Stack : 24.230859096270265 W
+Power-Thermal : 28.29014090372974 W
+VStack : 0.5674674261421607 V
+Vcell : 0.5674674261421607 V
+###########
+I :42.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.519354055461667 V
+Eta Concentration : 0.013278134432297068 V
+Eta Ohmic : 0.09112438074001017 V
+Loss : 0.6237565706339743 V
+PEM Efficiency : 0.3634573265166831
+Power : 24.2673187768659 W
+Power-Stack : 24.2673187768659 W
+Power-Thermal : 28.376681223134096 W
+VStack : 0.5669934293660257 V
+Vcell : 0.5669934293660257 V
+###########
+I :42.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5195086131747543 V
+Eta Concentration : 0.013326545966961662 V
+Eta Ohmic : 0.0913955895933879 V
+Loss : 0.6242307487351039 V
+PEM Efficiency : 0.3631533661954462
+Power : 24.30367587926404 W
+Power-Stack : 24.30367587926404 W
+Power-Thermal : 28.463324120735955 W
+VStack : 0.5665192512648961 V
+Vcell : 0.5665192512648961 V
+###########
+I :43.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5196628110325381 V
+Eta Concentration : 0.01337510442608413 V
+Eta Ohmic : 0.0916671963702648 V
+Loss : 0.624705111828887 V
+PEM Efficiency : 0.362849287289175
+Power : 24.33993019135786 W
+Power-Stack : 24.33993019135786 W
+Power-Thermal : 28.550069808642142 W
+VStack : 0.566044888171113 V
+Vcell : 0.566044888171113 V
+###########
+I :43.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.519816650706822 V
+Eta Concentration : 0.013423810704183779 V
+Eta Ohmic : 0.09193920217051878 V
+Loss : 0.6251796635815245 V
+PEM Efficiency : 0.36254508744774067
+Power : 24.376081499636292 W
+Power-Stack : 24.376081499636292 W
+Power-Thermal : 28.63691850036371 W
+VStack : 0.5655703364184754 V
+Vcell : 0.5655703364184754 V
+###########
+I :43.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5199701338577871 V
+Eta Concentration : 0.013472665703974027 V
+Eta Ohmic : 0.09221160809620929 V
+Loss : 0.6256544076579704 V
+PEM Efficiency : 0.3622407643218138
+Power : 24.412129589175677 W
+Power-Stack : 24.412129589175677 W
+Power-Thermal : 28.723870410824325 W
+VStack : 0.5650955923420296 V
+Vcell : 0.5650955923420296 V
+###########
+I :43.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5201232621340981 V
+Eta Concentration : 0.013521670336462756 V
+Eta Ohmic : 0.09248441525157906 V
+Loss : 0.6261293477221399 V
+PEM Efficiency : 0.3619363155627308
+Power : 24.44807424363134 W
+Power-Stack : 24.44807424363134 W
+Power-Thermal : 28.810925756368658 W
+VStack : 0.5646206522778601 V
+Vcell : 0.5646206522778601 V
+###########
+I :43.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5202760371730104 V
+Eta Concentration : 0.013570825521054278 V
+Eta Ohmic : 0.09275762474305699 V
+Loss : 0.6266044874371217 V
+PEM Efficiency : 0.36163173882235783
+Power : 24.483915245228914 W
+Power-Stack : 24.483915245228914 W
+Power-Thermal : 28.89808475477108 W
+VStack : 0.5641455125628783 V
+Vcell : 0.5641455125628783 V
+###########
+I :43.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5204284606004753 V
+Eta Concentration : 0.013620132185652806 V
+Eta Ohmic : 0.09303123767925982 V
+Loss : 0.627079830465388 V
+PEM Efficiency : 0.3613270317529564
+Power : 24.519652374755623 W
+Power-Stack : 24.519652374755623 W
+Power-Thermal : 28.985347625244376 W
+VStack : 0.563670169534612 V
+Vcell : 0.563670169534612 V
+###########
+I :43.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5205805340312433 V
+Eta Concentration : 0.013669591266767573 V
+Eta Ohmic : 0.09330525517099496 V
+Loss : 0.6275553804690058 V
+PEM Efficiency : 0.3610221920070475
+Power : 24.555285411551345 W
+Power-Stack : 24.555285411551345 W
+Power-Thermal : 29.072714588448655 W
+VStack : 0.5631946195309941 V
+Vcell : 0.5631946195309941 V
+###########
+I :43.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5207322590689665 V
+Eta Concentration : 0.013719203709619548 V
+Eta Ohmic : 0.09357967833126239 V
+Loss : 0.6280311411098484 V
+PEM Efficiency : 0.3607172172372767
+Power : 24.590814133499627 W
+Power-Stack : 24.590814133499627 W
+Power-Thermal : 29.160185866500377 W
+VStack : 0.5627188588901516 V
+Vcell : 0.5627188588901516 V
+###########
+I :43.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5208836373063013 V
+Eta Concentration : 0.013768970468249821 V
+Eta Ohmic : 0.09385450827525715 V
+Loss : 0.6285071160498082 V
+PEM Efficiency : 0.36041210509627675
+Power : 24.626238317018394 W
+Power-Stack : 24.626238317018394 W
+Power-Thermal : 29.2477616829816 W
+VStack : 0.5622428839501917 V
+Vcell : 0.5622428839501917 V
+###########
+I :43.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5210346703250073 V
+Eta Concentration : 0.013818892505629721 V
+Eta Ohmic : 0.09412974612037153 V
+Loss : 0.6289833089510085 V
+PEM Efficiency : 0.36010685323653296
+Power : 24.661557737050725 W
+Power-Stack : 24.661557737050725 W
+Power-Thermal : 29.33544226294927 W
+VStack : 0.5617666910489915 V
+Vcell : 0.5617666910489915 V
+###########
+I :44.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5211853596960474 V
+Eta Concentration : 0.013868970793772566 V
+Eta Ohmic : 0.09440539298619767 V
+Loss : 0.6294597234760176 V
+PEM Efficiency : 0.3598014593102451
+Power : 24.696772167055222 W
+Power-Stack : 24.696772167055222 W
+Power-Thermal : 29.423227832944775 W
+VStack : 0.5612902765239823 V
+Vcell : 0.5612902765239823 V
+###########
+I :44.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5213357069796855 V
+Eta Concentration : 0.013919206313847248 V
+Eta Ohmic : 0.09468144999452935 V
+Loss : 0.629936363288062 V
+PEM Efficiency : 0.359495920969191
+Power : 24.731881378996466 W
+Power-Stack : 24.731881378996466 W
+Power-Thermal : 29.511118621003536 W
+VStack : 0.560813636711938 V
+Vcell : 0.560813636711938 V
+###########
+I :44.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5214857137255833 V
+Eta Concentration : 0.01396960005629359 V
+Eta Ohmic : 0.0949579182693649 V
+Loss : 0.6304132320512418 V
+PEM Efficiency : 0.35919023586458854
+Power : 24.766885143335113 W
+Power-Stack : 24.766885143335113 W
+Power-Thermal : 29.59911485666489 W
+VStack : 0.5603367679487582 V
+Vcell : 0.5603367679487582 V
+###########
+I :44.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5216353814728962 V
+Eta Concentration : 0.014020153020939485 V
+Eta Ohmic : 0.09523479893690913 V
+Loss : 0.6308903334307449 V
+PEM Efficiency : 0.3588844016469584
+Power : 24.801783229018 W
+Power-Stack : 24.801783229018 W
+Power-Thermal : 29.687216770981994 W
+VStack : 0.5598596665692551 V
+Vcell : 0.5598596665692551 V
+###########
+I :44.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5217847117503689 V
+Eta Concentration : 0.014070866217119948 V
+Eta Ohmic : 0.09551209312557597 V
+Loss : 0.6313676710930648 V
+PEM Efficiency : 0.35857841596598405
+Power : 24.836575403467922 W
+Power-Stack : 24.836575403467922 W
+Power-Thermal : 29.775424596532076 W
+VStack : 0.5593823289069352 V
+Vcell : 0.5593823289069352 V
+###########
+I :44.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5219337060764272 V
+Eta Concentration : 0.014121740663798026 V
+Eta Ohmic : 0.09578980196599053 V
+Loss : 0.6318452487062157 V
+PEM Efficiency : 0.3582722764703745
+Power : 24.871261432573398 W
+Power-Stack : 24.871261432573398 W
+Power-Thermal : 29.8637385674266 W
+VStack : 0.5589047512937843 V
+Vcell : 0.5589047512937843 V
+###########
+I :44.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5220823659592728 V
+Eta Concentration : 0.014172777389687627 V
+Eta Ohmic : 0.09606792659099168 V
+Loss : 0.6323230699399521 V
+PEM Efficiency : 0.357965980807723
+Power : 24.905841080678133 W
+Power-Stack : 24.905841080678133 W
+Power-Thermal : 29.952158919321867 W
+VStack : 0.5584269300600478 V
+Vcell : 0.5584269300600478 V
+###########
+I :44.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5222306928969733 V
+Eta Concentration : 0.014223977433378363 V
+Eta Ohmic : 0.0963464681356343 V
+Loss : 0.632801138465986 V
+PEM Efficiency : 0.35765952662436795
+Power : 24.940314110570426 W
+Power-Stack : 24.940314110570426 W
+Power-Thermal : 30.040685889429575 W
+VStack : 0.557948861534014 V
+Vcell : 0.557948861534014 V
+###########
+I :44.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5223786883775536 V
+Eta Concentration : 0.014275341843462328 V
+Eta Ohmic : 0.09662542773719171 V
+Loss : 0.6332794579582077 V
+PEM Efficiency : 0.3573529115652514
+Power : 24.974680283472292 W
+Power-Stack : 24.974680283472292 W
+Power-Thermal : 30.129319716527704 W
+VStack : 0.5574705420417922 V
+Vcell : 0.5574705420417922 V
+###########
+I :44.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5225263538790852 V
+Eta Concentration : 0.014326871678663006 V
+Eta Ohmic : 0.09690480653515815 V
+Loss : 0.6337580320929063 V
+PEM Efficiency : 0.357046133273778
+Power : 25.008939359028506 W
+Power-Stack : 25.008939359028506 W
+Power-Thermal : 30.21806064097149 W
+VStack : 0.5569919679070937 V
+Vcell : 0.5569919679070937 V
+###########
+I :45.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5226736908697748 V
+Eta Concentration : 0.014378568007966152 V
+Eta Ohmic : 0.09718460567125091 V
+Loss : 0.6342368645489918 V
+PEM Efficiency : 0.35673918939167193
+Power : 25.04309109529537 W
+Power-Stack : 25.04309109529537 W
+Power-Thermal : 30.306908904704628 W
+VStack : 0.5565131354510082 V
+Vcell : 0.5565131354510082 V
+###########
+I :45.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5228207008080519 V
+Eta Concentration : 0.014430431910752887 V
+Eta Ohmic : 0.09746482628941297 V
+Loss : 0.6347159590082178 V
+PEM Efficiency : 0.35643207755883477
+Power : 25.07713524872938 W
+Power-Stack : 25.07713524872938 W
+Power-Thermal : 30.395864751270622 W
+VStack : 0.5560340409917822 V
+Vcell : 0.5560340409917822 V
+###########
+I :45.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5229673851426555 V
+Eta Concentration : 0.014482464476934926 V
+Eta Ohmic : 0.09774546953581531 V
+Loss : 0.6351953191554057 V
+PEM Efficiency : 0.35612479541320147
+Power : 25.11107157417566 W
+Power-Stack : 25.11107157417566 W
+Power-Thermal : 30.48492842582434 W
+VStack : 0.5555546808445943 V
+Vcell : 0.5555546808445943 V
+###########
+I :45.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5231137453127197 V
+Eta Concentration : 0.014534666807091987 V
+Eta Ohmic : 0.09802653655885919 V
+Loss : 0.6356749486786709 V
+PEM Efficiency : 0.35581734059059555
+Power : 25.144899824856203 W
+Power-Stack : 25.144899824856203 W
+Power-Thermal : 30.57410017514379 W
+VStack : 0.5550750513213291 V
+Vcell : 0.5550750513213291 V
+###########
+I :45.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.523259782747858 V
+Eta Concentration : 0.01458704001261149 V
+Eta Ohmic : 0.09830802850917902 V
+Loss : 0.6361548512696485 V
+PEM Efficiency : 0.3555097107245842
+Power : 25.178619752357953 W
+Power-Stack : 25.178619752357953 W
+Power-Thermal : 30.663380247642042 W
+VStack : 0.5545951487303514 V
+Vcell : 0.5545951487303514 V
+###########
+I :45.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5234054988682482 V
+Eta Concentration : 0.014639585215830532 V
+Eta Ohmic : 0.09858994653964417 V
+Loss : 0.6366350306237228 V
+PEM Efficiency : 0.35520190344633146
+Power : 25.21223110662061 W
+Power-Stack : 25.21223110662061 W
+Power-Thermal : 30.75276889337939 W
+VStack : 0.5541149693762771 V
+Vcell : 0.5541149693762771 V
+###########
+I :45.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5235508950847139 V
+Eta Concentration : 0.01469230355018017 V
+Eta Ohmic : 0.09887229180536189 V
+Loss : 0.637115490440256 V
+PEM Efficiency : 0.3548939163844513
+Power : 25.245733635924328 W
+Power-Stack : 25.245733635924328 W
+Power-Thermal : 30.842266364075673 W
+VStack : 0.553634509559744 V
+Vcell : 0.553634509559744 V
+###########
+I :45.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5236959727988074 V
+Eta Concentration : 0.014745196160332168 V
+Eta Ohmic : 0.09915506546367951 V
+Loss : 0.6375962344228191 V
+PEM Efficiency : 0.3545857471648595
+Power : 25.279127086877168 W
+Power-Stack : 25.279127086877168 W
+Power-Thermal : 30.931872913122834 W
+VStack : 0.5531537655771809 V
+Vcell : 0.5531537655771809 V
+###########
+I :45.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5238407334028905 V
+Eta Concentration : 0.014798264202348064 V
+Eta Ohmic : 0.09943826867418692 V
+Loss : 0.6380772662794255 V
+PEM Efficiency : 0.3542773934106247
+Power : 25.31241120440231 W
+Power-Stack : 25.31241120440231 W
+Power-Thermal : 31.021588795597687 W
+VStack : 0.5526727337205745 V
+Vcell : 0.5526727337205745 V
+###########
+I :45.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5239851782802148 V
+Eta Concentration : 0.01485150884383086 V
+Eta Ohmic : 0.09972190259871919 V
+Loss : 0.6385585897227649 V
+PEM Efficiency : 0.35396885274181733
+Power : 25.345585731725087 W
+Power-Stack : 25.345585731725087 W
+Power-Thermal : 31.11141426827491 W
+VStack : 0.5521914102772351 V
+Vcell : 0.5521914102772351 V
+###########
+I :46.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5241293088050005 V
+Eta Concentration : 0.014904931264079097 V
+Eta Ohmic : 0.10000596840135878 V
+Loss : 0.6390402084704384 V
+PEM Efficiency : 0.35366012277535996
+Power : 25.378650410359832 W
+Power-Stack : 25.378650410359832 W
+Power-Thermal : 31.201349589640166 W
+VStack : 0.5517097915295616 V
+Vcell : 0.5517097915295616 V
+###########
+I :46.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5242731263425154 V
+Eta Concentration : 0.014958532654243607 V
+Eta Ohmic : 0.10029046724843826 V
+Loss : 0.6395221262451973 V
+PEM Efficiency : 0.3533512011248735
+Power : 25.411604980096403 W
+Power-Stack : 25.411604980096403 W
+Power-Thermal : 31.291395019903597 W
+VStack : 0.5512278737548026 V
+Vcell : 0.5512278737548026 V
+###########
+I :46.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5244166322491524 V
+Eta Concentration : 0.015012314217486887 V
+Eta Ohmic : 0.10057540030854255 V
+Loss : 0.6400043467751817 V
+PEM Efficiency : 0.35304208540052456
+Power : 25.444449178986606 W
+Power-Stack : 25.444449178986606 W
+Power-Thermal : 31.3815508210134 W
+VStack : 0.5507456532248183 V
+Vcell : 0.5507456532248183 V
+###########
+I :46.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5245598278725059 V
+Eta Concentration : 0.015066277169145114 V
+Eta Ohmic : 0.1008607687525116 V
+Loss : 0.6404868737941626 V
+PEM Efficiency : 0.3527327732088701
+Power : 25.47718274333027 W
+Power-Stack : 25.47718274333027 W
+Power-Thermal : 31.471817256669727 W
+VStack : 0.5502631262058374 V
+Vcell : 0.5502631262058374 V
+###########
+I :46.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5247027145514483 V
+Eta Concentration : 0.01512042273689296 V
+Eta Ohmic : 0.10114657375344284 V
+Loss : 0.6409697110417841 V
+PEM Efficiency : 0.3524232621527024
+Power : 25.509805407661215 W
+Power-Stack : 25.509805407661215 W
+Power-Thermal : 31.562194592338784 W
+VStack : 0.5497802889582158 V
+Vcell : 0.5497802889582158 V
+###########
+I :46.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5248452936162047 V
+Eta Concentration : 0.015174752160911175 V
+Eta Ohmic : 0.10143281648669362 V
+Loss : 0.6414528622638095 V
+PEM Efficiency : 0.3521135498308913
+Power : 25.542316904732857 W
+Power-Stack : 25.542316904732857 W
+Power-Thermal : 31.652683095267143 W
+VStack : 0.5492971377361905 V
+Vcell : 0.5492971377361905 V
+###########
+I :46.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5249875663884271 V
+Eta Concentration : 0.015229266694057001 V
+Eta Ohmic : 0.1017194981298838 V
+Loss : 0.6419363312123679 V
+PEM Efficiency : 0.35180363383822566
+Power : 25.574716965503654 W
+Power-Stack : 25.574716965503654 W
+Power-Thermal : 31.743283034496347 W
+VStack : 0.548813668787632 V
+Vcell : 0.548813668787632 V
+###########
+I :46.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5251295341812684 V
+Eta Concentration : 0.015283967602037573 V
+Eta Ohmic : 0.10200661986289813 V
+Loss : 0.6424201216462041 V
+PEM Efficiency : 0.35149351176525373
+Power : 25.60700531912227 W
+Power-Stack : 25.60700531912227 W
+Power-Thermal : 31.833994680877733 W
+VStack : 0.5483298783537959 V
+Vcell : 0.5483298783537959 V
+###########
+I :46.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5252711982994547 V
+Eta Concentration : 0.015338856163586193 V
+Eta Ohmic : 0.10229418286788901 V
+Loss : 0.6429042373309299 V
+PEM Efficiency : 0.3511831811981218
+Power : 25.639181692912477 W
+Power-Stack : 25.639181692912477 W
+Power-Thermal : 31.92481830708752 W
+VStack : 0.54784576266907 V
+Vcell : 0.54784576266907 V
+###########
+I :46.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5254125600393573 V
+Eta Concentration : 0.015393933670641761 V
+Eta Ohmic : 0.10258218832927879 V
+Loss : 0.6433886820392779 V
+PEM Efficiency : 0.3508726397184116
+Power : 25.671245812357864 W
+Power-Stack : 25.671245812357864 W
+Power-Thermal : 32.01575418764213 W
+VStack : 0.5473613179607221 V
+Vcell : 0.5473613179607221 V
+###########
+I :47.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5255536206890642 V
+Eta Concentration : 0.015449201428531165 V
+Eta Ohmic : 0.10287063743376239 V
+Loss : 0.6438734595513577 V
+PEM Efficiency : 0.35056188490297585
+Power : 25.70319740108619 W
+Power-Stack : 25.70319740108619 W
+Power-Thermal : 32.10680259891381 W
+VStack : 0.5468765404486423 V
+Vcell : 0.5468765404486423 V
+###########
+I :47.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5256943815284502 V
+Eta Concentration : 0.015504660756154942 V
+Eta Ohmic : 0.10315953137031 V
+Loss : 0.6443585736549151 V
+PEM Efficiency : 0.3502509143237723
+Power : 25.7350361808535 W
+Power-Stack : 25.7350361808535 W
+Power-Thermal : 32.1979638191465 W
+VStack : 0.5463914263450849 V
+Vcell : 0.5463914263450849 V
+###########
+I :47.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5258348438292464 V
+Eta Concentration : 0.015560312986176144 V
+Eta Ohmic : 0.10344887133016936 V
+Loss : 0.6448440281455918 V
+PEM Efficiency : 0.34993972554769753
+Power : 25.766761871528065 W
+Power-Stack : 25.766761871528065 W
+Power-Thermal : 32.289238128471936 W
+VStack : 0.5459059718544081 V
+Vcell : 0.5459059718544081 V
+###########
+I :47.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5259750088551098 V
+Eta Concentration : 0.015616159465212437 V
+Eta Ohmic : 0.10373865850686849 V
+Loss : 0.6453298268271908 V
+PEM Efficiency : 0.34962831613641615
+Power : 25.798374191073876 W
+Power-Stack : 25.798374191073876 W
+Power-Thermal : 32.38062580892612 W
+VStack : 0.5454201731728092 V
+Vcell : 0.5454201731728092 V
+###########
+I :47.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.526114877861691 V
+Eta Concentration : 0.015672201554031668 V
+Eta Ohmic : 0.10402889409621825 V
+Loss : 0.645815973511941 V
+PEM Efficiency : 0.3493166836461916
+Power : 25.829872855533996 W
+Power-Stack : 25.829872855533996 W
+Power-Thermal : 32.472127144466 W
+VStack : 0.544934026488059 V
+Vcell : 0.544934026488059 V
+###########
+I :47.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5262544520967016 V
+Eta Concentration : 0.01572844062775078 V
+Eta Ohmic : 0.10431957929631494 V
+Loss : 0.6463024720207674 V
+PEM Efficiency : 0.3490048256277132
+Power : 25.861257579013547 W
+Power-Stack : 25.861257579013547 W
+Power-Thermal : 32.56374242098645 W
+VStack : 0.5444475279792326 V
+Vcell : 0.5444475279792326 V
+###########
+I :47.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5263937327999813 V
+Eta Concentration : 0.015784878076038275 V
+Eta Ohmic : 0.1046107153075428 V
+Loss : 0.6467893261835623 V
+PEM Efficiency : 0.34869273962592157
+Power : 25.892528073662433 W
+Power-Stack : 25.892528073662433 W
+Power-Thermal : 32.65547192633757 W
+VStack : 0.5439606738164376 V
+Vcell : 0.5439606738164376 V
+###########
+I :47.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5265327212035641 V
+Eta Concentration : 0.01584151530332026 V
+Eta Ohmic : 0.10490230333257664 V
+Loss : 0.647276539839461 V
+PEM Efficiency : 0.34838042317983264
+Power : 25.923684049657712 W
+Power-Stack : 25.923684049657712 W
+Power-Thermal : 32.74731595034229 W
+VStack : 0.543473460160539 V
+Vcell : 0.543473460160539 V
+###########
+I :47.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.526671418531743 V
+Eta Concentration : 0.015898353728990143 V
+Eta Ohmic : 0.10519434457638442 V
+Loss : 0.6477641168371177 V
+PEM Efficiency : 0.34806787382236043
+Power : 25.954725215185775 W
+Power-Stack : 25.954725215185775 W
+Power-Thermal : 32.83927478481422 W
+VStack : 0.5429858831628823 V
+Vcell : 0.5429858831628823 V
+###########
+I :47.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5268098260011358 V
+Eta Concentration : 0.015955394787622083 V
+Eta Ohmic : 0.10548684024623002 V
+Loss : 0.6482520610349879 V
+PEM Efficiency : 0.34775508908013597
+Power : 25.98565127642408 W
+Power-Stack : 25.98565127642408 W
+Power-Thermal : 32.93134872357592 W
+VStack : 0.5424979389650121 V
+Vcell : 0.5424979389650121 V
+###########
+I :48.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5269479448207478 V
+Eta Concentration : 0.01601263992918823 V
+Eta Ohmic : 0.10577979155167558 V
+Loss : 0.6487403763016116 V
+PEM Efficiency : 0.3474420664733258
+Power : 26.016461937522642 W
+Power-Stack : 26.016461937522642 W
+Power-Thermal : 33.02353806247736 W
+VStack : 0.5420096236983883 V
+Vcell : 0.5420096236983883 V
+###########
+I :48.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5270857761920364 V
+Eta Concentration : 0.016070090619279886 V
+Eta Ohmic : 0.10607319970458429 V
+Loss : 0.6492290665159006 V
+PEM Efficiency : 0.3471288035154483
+Power : 26.04715690058518 W
+Power-Stack : 26.04715690058518 W
+Power-Thermal : 33.115843099414825 W
+VStack : 0.5415209334840994 V
+Vcell : 0.5415209334840994 V
+###########
+I :48.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.527223321308973 V
+Eta Concentration : 0.016127748339332667 V
+Eta Ohmic : 0.10636706591912307 V
+Loss : 0.6497181355674286 V
+PEM Efficiency : 0.3468152977131867
+Power : 26.07773586564994 W
+Power-Stack : 26.07773586564994 W
+Power-Thermal : 33.20826413435006 W
+VStack : 0.5410318644325713 V
+Vcell : 0.5410318644325713 V
+###########
+I :48.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5273605813581055 V
+Eta Concentration : 0.01618561458685568 V
+Eta Ohmic : 0.10666139141176499 V
+Loss : 0.6502075873567261 V
+PEM Efficiency : 0.3465015465662012
+Power : 26.108198530670126 W
+Power-Stack : 26.108198530670126 W
+Power-Thermal : 33.30080146932987 W
+VStack : 0.5405424126432739 V
+Vcell : 0.5405424126432739 V
+###########
+I :48.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5274975575186193 V
+Eta Concentration : 0.016243690875664935 V
+Eta Ohmic : 0.10695617740129224 V
+Loss : 0.6506974257955764 V
+PEM Efficiency : 0.34618754756693815
+Power : 26.1385445914941 W
+Power-Stack : 26.1385445914941 W
+Power-Thermal : 33.3934554085059 W
+VStack : 0.5400525742044235 V
+Vcell : 0.5400525742044235 V
+###########
+I :48.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5276342509623986 V
+Eta Concentration : 0.016301978736120954 V
+Eta Ohmic : 0.10725142510879844 V
+Loss : 0.651187654807318 V
+PEM Efficiency : 0.3458732982004371
+Power : 26.168773741845076 W
+Power-Stack : 26.168773741845076 W
+Power-Thermal : 33.48622625815492 W
+VStack : 0.539562345192682 V
+Vcell : 0.539562345192682 V
+###########
+I :48.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5277706628540862 V
+Eta Concentration : 0.01636047971537072 V
+Eta Ohmic : 0.10754713575769158 V
+Loss : 0.6516782783271485 V
+PEM Efficiency : 0.3455587959441355
+Power : 26.19888567330058 W
+Power-Stack : 26.19888567330058 W
+Power-Thermal : 33.57911432669942 W
+VStack : 0.5390717216728514 V
+Vcell : 0.5390717216728514 V
+###########
+I :48.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5279067943511431 V
+Eta Concentration : 0.01641919537759412 V
+Eta Ohmic : 0.1078433105736964 V
+Loss : 0.6521693003024336 V
+PEM Efficiency : 0.34524403826767075
+Power : 26.228880075271483 W
+Power-Stack : 26.228880075271483 W
+Power-Thermal : 33.67211992472852 W
+VStack : 0.5385806996975664 V
+Vcell : 0.5385806996975664 V
+###########
+I :48.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5280426466039074 V
+Eta Concentration : 0.01647812730425486 V
+Eta Ohmic : 0.10813995078485744 V
+Loss : 0.6526607246930198 V
+PEM Efficiency : 0.34492902263267955
+Power : 26.258756634980628 W
+Power-Stack : 26.258756634980628 W
+Power-Thermal : 33.765243365019366 W
+VStack : 0.5380892753069801 V
+Vcell : 0.5380892753069801 V
+###########
+I :48.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5281782207556529 V
+Eta Concentration : 0.01653727709435608 V
+Eta Ohmic : 0.10843705762154138 V
+Loss : 0.6531525554715504 V
+PEM Efficiency : 0.34461374649259585
+Power : 26.288515037441183 W
+Power-Stack : 26.288515037441183 W
+Power-Thermal : 33.85848496255881 W
+VStack : 0.5375974445284496 V
+Vcell : 0.5375974445284496 V
+###########
+I :49.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5283135179426461 V
+Eta Concentration : 0.016596646364700655 V
+Eta Ohmic : 0.10873463231643991 V
+Loss : 0.6536447966237867 V
+PEM Efficiency : 0.34429820729244437
+Power : 26.31815496543445 W
+Power-Stack : 26.31815496543445 W
+Power-Thermal : 33.95184503456555 W
+VStack : 0.5371052033762133 V
+Vcell : 0.5371052033762133 V
+###########
+I :49.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5284485392942047 V
+Eta Concentration : 0.016656236750156372 V
+Eta Ohmic : 0.10903267610457242 V
+Loss : 0.6541374521489335 V
+PEM Efficiency : 0.3439824024686323
+Power : 26.347676099487366 W
+Power-Stack : 26.347676099487366 W
+Power-Thermal : 34.045323900512635 W
+VStack : 0.5366125478510665 V
+Vcell : 0.5366125478510665 V
+###########
+I :49.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5285832859327523 V
+Eta Concentration : 0.016716049903926087 V
+Eta Ohmic : 0.10933119022328851 V
+Loss : 0.6546305260599669 V
+PEM Efficiency : 0.3436663294487392
+Power : 26.37707811784963 W
+Power-Stack : 26.37707811784963 W
+Power-Thermal : 34.13892188215037 W
+VStack : 0.5361194739400331 V
+Vcell : 0.5361194739400331 V
+###########
+I :49.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5287177589738761 V
+Eta Concentration : 0.016776087497822893 V
+Eta Ohmic : 0.10963017591227106 V
+Loss : 0.65512402238397 V
+PEM Efficiency : 0.34334998565130126
+Power : 26.406360696470273 W
+Power-Stack : 26.406360696470273 W
+Power-Thermal : 34.23263930352972 W
+VStack : 0.5356259776160299 V
+Vcell : 0.5356259776160299 V
+###########
+I :49.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5288519595263814 V
+Eta Concentration : 0.016836351222550523 V
+Eta Ohmic : 0.10992963441353867 V
+Loss : 0.6556179451624706 V
+PEM Efficiency : 0.3430333684855957
+Power : 26.435523508973947 W
+Power-Stack : 26.435523508973947 W
+Power-Thermal : 34.32647649102605 W
+VStack : 0.5351320548375293 V
+Vcell : 0.5351320548375293 V
+###########
+I :49.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5289858886923466 V
+Eta Concentration : 0.01689684278798902 V
+Eta Ohmic : 0.11022956697144844 V
+Loss : 0.6561122984517841 V
+PEM Efficiency : 0.3427164753514204
+Power : 26.464566226636688 W
+Power-Stack : 26.464566226636688 W
+Power-Thermal : 34.420433773363314 W
+VStack : 0.5346377015482159 V
+Vcell : 0.5346377015482159 V
+###########
+I :49.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5291195475671777 V
+Eta Concentration : 0.016957563923485842 V
+Eta Ohmic : 0.11052997483269875 V
+Loss : 0.6566070863233623 V
+PEM Efficiency : 0.3423993036388703
+Power : 26.49348851836123 W
+Power-Stack : 26.49348851836123 W
+Power-Thermal : 34.51451148163877 W
+VStack : 0.5341429136766377 V
+Vcell : 0.5341429136766377 V
+###########
+I :49.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5292529372396617 V
+Eta Concentration : 0.01701851637815253 V
+Eta Ohmic : 0.11083085924633197 V
+Loss : 0.6571023128641462 V
+PEM Efficiency : 0.34208185072811137
+Power : 26.522290050651932 W
+Power-Stack : 26.522290050651932 W
+Power-Thermal : 34.60870994934807 W
+VStack : 0.5336476871358538 V
+Vcell : 0.5336476871358538 V
+###########
+I :49.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5293860587920204 V
+Eta Concentration : 0.01707970192116698 V
+Eta Ohmic : 0.11113222146373729 V
+Loss : 0.6575979821769247 V
+PEM Efficiency : 0.34176411398915085
+Power : 26.550970487589147 W
+Power-Stack : 26.550970487589147 W
+Power-Thermal : 34.70302951241084 W
+VStack : 0.5331520178230753 V
+Vcell : 0.5331520178230753 V
+###########
+I :49.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5295189132999623 V
+Eta Concentration : 0.017141122342081632 V
+Eta Ohmic : 0.11143406273865342 V
+Loss : 0.6580940983806973 V
+PEM Efficiency : 0.34144609078160426
+Power : 26.5795294908032 W
+Power-Stack : 26.5795294908032 W
+Power-Thermal : 34.7974705091968 W
+VStack : 0.5326559016193027 V
+Vcell : 0.5326559016193027 V
+###########
+I :50.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5296515018327355 V
+Eta Concentration : 0.017202779451137473 V
+Eta Ohmic : 0.11173638432717126 V
+Loss : 0.6585906656110442 V
+PEM Efficiency : 0.34112777845445885
+Power : 26.60796671944779 W
+Power-Stack : 26.60796671944779 W
+Power-Thermal : 34.89203328055221 W
+VStack : 0.5321593343889558 V
+Vcell : 0.5321593343889558 V
+###########
+I :50.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5297838254531789 V
+Eta Concentration : 0.017264675079584197 V
+Eta Ohmic : 0.11203918748773686 V
+Loss : 0.6590876880205 V
+PEM Efficiency : 0.34080917434583335
+Power : 26.63628183017295 W
+Power-Stack : 26.63628183017295 W
+Power-Thermal : 34.98671816982705 W
+VStack : 0.5316623119795 V
+Vcell : 0.5316623119795 V
+###########
+I :50.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5299158852177734 V
+Eta Concentration : 0.017326811080006565 V
+Eta Ohmic : 0.11234247348115399 V
+Loss : 0.659585169778934 V
+PEM Efficiency : 0.34049027578273455
+Power : 26.664474477097514 W
+Power-Stack : 26.664474477097514 W
+Power-Thermal : 35.08152552290249 W
+VStack : 0.531164830221066 V
+Vcell : 0.531164830221066 V
+###########
+I :50.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5300476821766926 V
+Eta Concentration : 0.01738918932665708 V
+Eta Ohmic : 0.11264624357058717 V
+Loss : 0.6600831150739369 V
+PEM Efficiency : 0.34017108008080965
+Power : 26.69254431178097 W
+Power-Stack : 26.69254431178097 W
+Power-Thermal : 35.17645568821902 W
+VStack : 0.5306668849260631 V
+Vcell : 0.5306668849260631 V
+###########
+I :50.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5301792173738528 V
+Eta Concentration : 0.017451811715795258 V
+Eta Ohmic : 0.11295049902156427 V
+Loss : 0.6605815281112123 V
+PEM Efficiency : 0.33985158454409464
+Power : 26.7204909831949 W
+Power-Stack : 26.7204909831949 W
+Power-Thermal : 35.2715090168051 W
+VStack : 0.5301684718887877 V
+Vcell : 0.5301684718887877 V
+###########
+I :50.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5303104918469626 V
+Eta Concentration : 0.017514680166033494 V
+Eta Ohmic : 0.11325524110197947 V
+Loss : 0.6610804131149756 V
+PEM Efficiency : 0.33953178646475923
+Power : 26.748314137693733 W
+Power-Stack : 26.748314137693733 W
+Power-Thermal : 35.36668586230627 W
+VStack : 0.5296695868850244 V
+Vcell : 0.5296695868850244 V
+###########
+I :50.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5304415066275723 V
+Eta Concentration : 0.017577796618689752 V
+Eta Ohmic : 0.11356047108209583 V
+Loss : 0.6615797743283579 V
+PEM Efficiency : 0.3392116831228475
+Power : 26.77601341898509 W
+Power-Stack : 26.77601341898509 W
+Power-Thermal : 35.46198658101491 W
+VStack : 0.5291702256716421 V
+Vcell : 0.5291702256716421 V
+###########
+I :50.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5305722627411222 V
+Eta Concentration : 0.01764116303814731 V
+Eta Ohmic : 0.11386619023454839 V
+Loss : 0.6620796160138179 V
+PEM Efficiency : 0.33889127178601414
+Power : 26.80358846809943 W
+Power-Stack : 26.80358846809943 W
+Power-Thermal : 35.55741153190057 W
+VStack : 0.528670383986182 V
+Vcell : 0.528670383986182 V
+###########
+I :50.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5307027612069908 V
+Eta Concentration : 0.017704781412221537 V
+Eta Ohmic : 0.11417239983434675 V
+Loss : 0.6625799424535591 V
+PEM Efficiency : 0.33857054970925693
+Power : 26.831038923359195 W
+Power-Stack : 26.831038923359195 W
+Power-Thermal : 35.6529610766408 W
+VStack : 0.5281700575464409 V
+Vcell : 0.5281700575464409 V
+###########
+I :50.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5308330030385428 V
+Eta Concentration : 0.01776865375253413 V
+Eta Ohmic : 0.11447910115887816 V
+Loss : 0.663080757949955 V
+PEM Efficiency : 0.33824951413464416
+Power : 26.858364420347286 W
+Power-Stack : 26.858364420347286 W
+Power-Thermal : 35.74863557965271 W
+VStack : 0.527669242050045 V
+Vcell : 0.527669242050045 V
+###########
+I :51.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5309629892431755 V
+Eta Concentration : 0.017832782094894757 V
+Eta Ohmic : 0.11478629548791018 V
+Loss : 0.6635820668259805 V
+PEM Efficiency : 0.3379281622910381
+Power : 26.885564591874992 W
+Power-Stack : 26.885564591874992 W
+Power-Thermal : 35.84443540812501 W
+VStack : 0.5271679331740194 V
+Vcell : 0.5271679331740194 V
+###########
+I :51.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.531092720822367 V
+Eta Concentration : 0.017897168499690363 V
+Eta Ohmic : 0.11509398410359357 V
+Loss : 0.664083873425651 V
+PEM Efficiency : 0.33760649139381343
+Power : 26.912639067949232 W
+Power-Stack : 26.912639067949232 W
+Power-Thermal : 35.940360932050766 W
+VStack : 0.526666126574349 V
+Vcell : 0.526666126574349 V
+###########
+I :51.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5312221987717208 V
+Eta Concentration : 0.01796181505228244 V
+Eta Ohmic : 0.11540216829046507 V
+Loss : 0.6645861821144683 V
+PEM Efficiency : 0.3372844986445716
+Power : 26.939587475739224 W
+Power-Stack : 26.939587475739224 W
+Power-Thermal : 36.036412524260776 W
+VStack : 0.5261638178855317 V
+Vcell : 0.5261638178855317 V
+###########
+I :51.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.531351424081013 V
+Eta Concentration : 0.018026723863412274 V
+Eta Ohmic : 0.11571084933545042 V
+Loss : 0.6650889972798757 V
+PEM Efficiency : 0.33696218123084887
+Power : 26.966409439542375 W
+Power-Stack : 26.966409439542375 W
+Power-Thermal : 36.13259056045762 W
+VStack : 0.5256610027201243 V
+Vcell : 0.5256610027201243 V
+###########
+I :51.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5314803977342369 V
+Eta Concentration : 0.018091897069614445 V
+Eta Ohmic : 0.11602002852786714 V
+Loss : 0.6655923233317185 V
+PEM Efficiency : 0.33663953632582144
+Power : 26.99310458074967 W
+Power-Stack : 26.99310458074967 W
+Power-Thermal : 36.22889541925033 W
+VStack : 0.5251576766682815 V
+Vcell : 0.5251576766682815 V
+###########
+I :51.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5316091207096485 V
+Eta Concentration : 0.018157336833638845 V
+Eta Ohmic : 0.11632970715942749 V
+Loss : 0.6660961647027148 V
+PEM Efficiency : 0.3363165610880033
+Power : 27.019672517810186 W
+Power-Stack : 27.019672517810186 W
+Power-Thermal : 36.32532748218981 W
+VStack : 0.5246538352972852 V
+Vcell : 0.5246538352972852 V
+###########
+I :51.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5317375939798102 V
+Eta Concentration : 0.018223045344881308 V
+Eta Ohmic : 0.1166398865242411 V
+Loss : 0.6666005258489326 V
+PEM Efficiency : 0.3359932526609406
+Power : 27.046112866195077 W
+Power-Stack : 27.046112866195077 W
+Power-Thermal : 36.42188713380492 W
+VStack : 0.5241494741510674 V
+Vcell : 0.5241494741510674 V
+###########
+I :51.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5318658185116361 V
+Eta Concentration : 0.0182890248198231 V
+Eta Ohmic : 0.11695056791881833 V
+Loss : 0.6671054112502774 V
+PEM Efficiency : 0.33566960817289904
+Power : 27.072425238360655 W
+Power-Stack : 27.072425238360655 W
+Power-Thermal : 36.51857476163935 W
+VStack : 0.5236445887497225 V
+Vcell : 0.5236445887497225 V
+###########
+I :51.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5319937952664344 V
+Eta Concentration : 0.018355277502479592 V
+Eta Ohmic : 0.11726175264207261 V
+Loss : 0.6676108254109866 V
+PEM Efficiency : 0.33534562473654705
+Power : 27.098609243710893 W
+Power-Stack : 27.098609243710893 W
+Power-Thermal : 36.6153907562891 W
+VStack : 0.5231391745890134 V
+Vcell : 0.5231391745890134 V
+###########
+I :51.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5321215251999518 V
+Eta Concentration : 0.018421805664858217 V
+Eta Ohmic : 0.11757344199532387 V
+Loss : 0.6681167728601338 V
+PEM Efficiency : 0.3350212994486321
+Power : 27.124664488559052 W
+Power-Stack : 27.124664488559052 W
+Power-Thermal : 36.71233551144095 W
+VStack : 0.5226332271398662 V
+Vcell : 0.5226332271398662 V
+###########
+I :52.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5322490092624155 V
+Eta Concentration : 0.01848861160742591 V
+Eta Ohmic : 0.11788563728230114 V
+Loss : 0.6686232581521425 V
+PEM Efficiency : 0.3346966293896522
+Power : 27.15059057608859 W
+Power-Stack : 27.15059057608859 W
+Power-Thermal : 36.80940942391141 W
+VStack : 0.5221267418478575 V
+Vcell : 0.5221267418478575 V
+###########
+I :52.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5323762483985754 V
+Eta Concentration : 0.01855569765958649 V
+Eta Ohmic : 0.11819833980914542 V
+Loss : 0.6691302858673074 V
+PEM Efficiency : 0.3343716116235209
+Power : 27.176387106313285 W
+Power-Stack : 27.176387106313285 W
+Power-Thermal : 36.90661289368671 W
+VStack : 0.5216197141326926 V
+Vcell : 0.5216197141326926 V
+###########
+I :52.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5325032435477476 V
+Eta Concentration : 0.018623066180167982 V
+Eta Ohmic : 0.11851155088441305 V
+Loss : 0.6696378606123286 V
+PEM Efficiency : 0.33404624319722526
+Power : 27.20205367603645 W
+Power-Stack : 27.20205367603645 W
+Power-Thermal : 37.003946323963554 W
+VStack : 0.5211121393876714 V
+Vcell : 0.5211121393876714 V
+###########
+I :52.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.532629995643854 V
+Eta Concentration : 0.018690719557920312 V
+Eta Ohmic : 0.11882527181907808 V
+Loss : 0.6701459870208525 V
+PEM Efficiency : 0.3337205211404792
+Power : 27.22758987880941 W
+Power-Stack : 27.22758987880941 W
+Power-Thermal : 37.10141012119058 W
+VStack : 0.5206040129791475 V
+Vcell : 0.5206040129791475 V
+###########
+I :52.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5327565056154653 V
+Eta Concentration : 0.01875866021202354 V
+Eta Ohmic : 0.11913950392653568 V
+Loss : 0.6706546697540245 V
+PEM Efficiency : 0.33339444246536887
+Power : 27.25299530488911 W
+Power-Stack : 27.25299530488911 W
+Power-Thermal : 37.19900469511089 W
+VStack : 0.5200953302459754 V
+Vcell : 0.5200953302459754 V
+###########
+I :52.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5328827743858404 V
+Eta Concentration : 0.018826890592606855 V
+Eta Ohmic : 0.11945424852260479 V
+Loss : 0.6711639135010521 V
+PEM Efficiency : 0.3330680041659922
+Power : 27.278269541194764 W
+Power-Stack : 27.278269541194764 W
+Power-Thermal : 37.296730458805236 W
+VStack : 0.5195860864989479 V
+Vcell : 0.5195860864989479 V
+###########
+I :52.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.533008802872968 V
+Eta Concentration : 0.01889541318127887 V
+Eta Ohmic : 0.11976950692553116 V
+Loss : 0.671673722979778 V
+PEM Efficiency : 0.332741203218091
+Power : 27.303412171263677 W
+Power-Stack : 27.303412171263677 W
+Power-Thermal : 37.39458782873633 W
+VStack : 0.519076277020222 V
+Vcell : 0.519076277020222 V
+###########
+I :52.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5331345919896054 V
+Eta Concentration : 0.01896423049166912 V
+Eta Ohmic : 0.12008528045599057 V
+Loss : 0.672184102937265 V
+PEM Efficiency : 0.33241403657867624
+Power : 27.328422775206132 W
+Power-Stack : 27.328422775206132 W
+Power-Thermal : 37.49257722479387 W
+VStack : 0.5185658970627349 V
+Vcell : 0.5185658970627349 V
+###########
+I :52.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5332601426433197 V
+Eta Concentration : 0.01903334506998138 V
+Eta Ohmic : 0.12040157043709136 V
+Loss : 0.6726950581503923 V
+PEM Efficiency : 0.3320865011856459
+Power : 27.353300929659284 W
+Power-Stack : 27.353300929659284 W
+Power-Thermal : 37.59069907034071 W
+VStack : 0.5180549418496077 V
+Vcell : 0.5180549418496077 V
+###########
+I :52.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5333854557365254 V
+Eta Concentration : 0.01910275949555895 V
+Eta Ohmic : 0.12071837819437782 V
+Loss : 0.6732065934264622 V
+PEM Efficiency : 0.33175859395739604
+Power : 27.378046207740148 W
+Power-Stack : 27.378046207740148 W
+Power-Thermal : 37.688953792259845 W
+VStack : 0.5175434065735378 V
+Vcell : 0.5175434065735378 V
+###########
+I :53.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5335105321665248 V
+Eta Concentration : 0.019172476381462248 V
+Eta Ohmic : 0.12103570505583297 V
+Loss : 0.67371871360382 V
+PEM Efficiency : 0.3314303117924231
+Power : 27.40265817899754 W
+Power-Stack : 27.40265817899754 W
+Power-Thermal : 37.78734182100246 W
+VStack : 0.51703128639618 V
+Vcell : 0.51703128639618 V
+###########
+I :53.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5336353728255456 V
+Eta Concentration : 0.019242498375059026 V
+Eta Ohmic : 0.12135355235188156 V
+Loss : 0.6742314235524862 V
+PEM Efficiency : 0.3311016515689191
+Power : 27.42713640936298 W
+Power-Stack : 27.42713640936298 W
+Power-Thermal : 37.88586359063702 W
+VStack : 0.5165185764475138 V
+Vcell : 0.5165185764475138 V
+###########
+I :53.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5337599786007795 V
+Eta Concentration : 0.019312828158627632 V
+Eta Ohmic : 0.12167192141539328 V
+Loss : 0.6747447281748005 V
+PEM Efficiency : 0.33077261014435866
+Power : 27.451480461100616 W
+Power-Stack : 27.451480461100616 W
+Power-Thermal : 37.984519538899384 W
+VStack : 0.5160052718251995 V
+Vcell : 0.5160052718251995 V
+###########
+I :53.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.53388435037442 V
+Eta Concentration : 0.019383468449973504 V
+Eta Ohmic : 0.12199081358168544 V
+Loss : 0.6752586324060789 V
+PEM Efficiency : 0.3304431843550776
+Power : 27.475689892755994 W
+Power-Stack : 27.475689892755994 W
+Power-Thermal : 38.083310107244 W
+VStack : 0.5154913675939211 V
+Vcell : 0.5154913675939211 V
+###########
+I :53.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5340084890236994 V
+Eta Concentration : 0.019454422003059354 V
+Eta Ohmic : 0.1223102301885263 V
+Loss : 0.675773141215285 V
+PEM Efficiency : 0.3301133710158429
+Power : 27.49976425910378 W
+Power-Stack : 27.49976425910378 W
+Power-Thermal : 38.18223574089622 W
+VStack : 0.514976858784715 V
+Vcell : 0.514976858784715 V
+###########
+I :53.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5341323954209269 V
+Eta Concentration : 0.019525691608649434 V
+Eta Ohmic : 0.12263017257613794 V
+Loss : 0.6762882596057144 V
+PEM Efficiency : 0.32978316691941384
+Power : 27.52370311109428 W
+Power-Stack : 27.52370311109428 W
+Power-Thermal : 38.28129688890572 W
+VStack : 0.5144617403942856 V
+Vcell : 0.5144617403942856 V
+###########
+I :53.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5342560704335246 V
+Eta Concentration : 0.019597280094968184 V
+Eta Ohmic : 0.12295064208719941 V
+Loss : 0.6768039926156922 V
+PEM Efficiency : 0.3294525688360947
+Power : 27.547505995798897 W
+Power-Stack : 27.547505995798897 W
+Power-Thermal : 38.380494004201104 W
+VStack : 0.5139460073843077 V
+Vcell : 0.5139460073843077 V
+###########
+I :53.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.534379514924064 V
+Eta Concentration : 0.01966919032837361 V
+Eta Ohmic : 0.12327164006684965 V
+Loss : 0.6773203453192873 V
+PEM Efficiency : 0.32912157351327737
+Power : 27.571172456354272 W
+Power-Stack : 27.571172456354272 W
+Power-Thermal : 38.47982754364573 W
+VStack : 0.5134296546807127 V
+Vcell : 0.5134296546807127 V
+###########
+I :53.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5345027297503022 V
+Eta Concentration : 0.019741425214046024 V
+Eta Ohmic : 0.12359316786269064 V
+Loss : 0.6778373228270389 V
+PEM Efficiency : 0.32879017767497504
+Power : 27.594702031905303 W
+Power-Stack : 27.594702031905303 W
+Power-Thermal : 38.57929796809469 W
+VStack : 0.5129126771729611 V
+Vcell : 0.5129126771729611 V
+###########
+I :53.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5346257157652181 V
+Eta Concentration : 0.019813987696692292 V
+Eta Ohmic : 0.12391522682479045 V
+Loss : 0.6783549302867009 V
+PEM Efficiency : 0.32845837802134553
+Power : 27.61809425754682 W
+Power-Stack : 27.61809425754682 W
+Power-Thermal : 38.678905742453175 W
+VStack : 0.5123950697132991 V
+Vcell : 0.5123950697132991 V
+###########
+I :54.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5347484738170469 V
+Eta Concentration : 0.019886880761266067 V
+Eta Ohmic : 0.12423781830568631 V
+Loss : 0.6788731728839993 V
+PEM Efficiency : 0.32812617122820553
+Power : 27.641348664264036 W
+Power-Stack : 27.641348664264036 W
+Power-Thermal : 38.778651335735965 W
+VStack : 0.5118768271160007 V
+Vcell : 0.5118768271160007 V
+###########
+I :54.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5348710047493164 V
+Eta Concentration : 0.019960107433704657 V
+Eta Ohmic : 0.12456094366038759 V
+Loss : 0.6793920558434087 V
+PEM Efficiency : 0.32779355394653287
+Power : 27.66446477887159 W
+Power-Stack : 27.66446477887159 W
+Power-Thermal : 38.87853522112841 W
+VStack : 0.5113579441565913 V
+Vcell : 0.5113579441565913 V
+###########
+I :54.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5349933094008803 V
+Eta Concentration : 0.020033670781682725 V
+Eta Ohmic : 0.12488460424637908 V
+Loss : 0.6799115844289421 V
+PEM Efficiency : 0.3274605228019602
+Power : 27.68744212395134 W
+Power-Stack : 27.68744212395134 W
+Power-Thermal : 38.97855787604866 W
+VStack : 0.5108384155710579 V
+Vcell : 0.5108384155710579 V
+###########
+I :54.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5351153886059542 V
+Eta Concentration : 0.020107573915383436 V
+Eta Ohmic : 0.12520880142362384 V
+Loss : 0.6804317639449614 V
+PEM Efficiency : 0.3271270743942555
+Power : 27.710280217788593 W
+Power-Stack : 27.710280217788593 W
+Power-Thermal : 39.0787197822114 W
+VStack : 0.5103182360550386 V
+Vcell : 0.5103182360550386 V
+###########
+I :54.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5352372431941486 V
+Eta Concentration : 0.020181819988287476 V
+Eta Ohmic : 0.12553353655456664 V
+Loss : 0.6809525997370027 V
+PEM Efficiency : 0.32679320529679307
+Power : 27.73297857430705 W
+Power-Stack : 27.73297857430705 W
+Power-Thermal : 39.179021425692945 W
+VStack : 0.5097974002629972 V
+Vcell : 0.5097974002629972 V
+###########
+I :54.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5353588739905031 V
+Eta Concentration : 0.020256412197980456 V
+Eta Ohmic : 0.1258588110041367 V
+Loss : 0.6814740971926203 V
+PEM Efficiency : 0.3264589120560126
+Power : 27.755536703002193 W
+Power-Stack : 27.755536703002193 W
+Power-Thermal : 39.279463296997804 W
+VStack : 0.5092759028073797 V
+Vcell : 0.5092759028073797 V
+###########
+I :54.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5354802818155203 V
+Eta Concentration : 0.020331353786979273 V
+Eta Ohmic : 0.12618462613975112 V
+Loss : 0.6819962617422507 V
+PEM Efficiency : 0.3261241911908649
+Power : 27.77795410887311 W
+Power-Stack : 27.77795410887311 W
+Power-Thermal : 39.38004589112689 W
+VStack : 0.5087537382577493 V
+Vcell : 0.5087537382577493 V
+###########
+I :54.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5356014674851983 V
+Eta Concentration : 0.02040664804357788 V
+Eta Ohmic : 0.1265109833313177 V
+Loss : 0.6825190988600939 V
+PEM Efficiency : 0.3257890391922475
+Power : 27.800230292352865 W
+Power-Stack : 27.800230292352865 W
+Power-Thermal : 39.480769707647134 W
+VStack : 0.5082309011399061 V
+Vcell : 0.5082309011399061 V
+###########
+I :54.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5357224318110644 V
+Eta Concentration : 0.020482298302713014 V
+Eta Ohmic : 0.12683788395123827 V
+Loss : 0.6830426140650157 V
+PEM Efficiency : 0.32545345252242586
+Power : 27.82236474923714 W
+Power-Stack : 27.82236474923714 W
+Power-Thermal : 39.58163525076286 W
+VStack : 0.5077073859349843 V
+Vcell : 0.5077073859349843 V
+###########
+I :54.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5358431756002067 V
+Eta Concentration : 0.020558307946850575 V
+Eta Ohmic : 0.12716532937441208 V
+Loss : 0.6835668129214693 V
+PEM Efficiency : 0.32511742761444273
+Power : 27.844356970611337 W
+Power-Stack : 27.844356970611337 W
+Power-Thermal : 39.682643029388665 W
+VStack : 0.5071831870785307 V
+Vcell : 0.5071831870785307 V
+###########
+I :55.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5359636996553074 V
+Eta Concentration : 0.020634680406893105 V
+Eta Ohmic : 0.12749332097823823 V
+Loss : 0.6840917010404388 V
+PEM Efficiency : 0.32478096087151354
+Power : 27.866206442775862 W
+Power-Stack : 27.866206442775862 W
+Power-Thermal : 39.783793557224136 W
+VStack : 0.5066582989595612 V
+Vcell : 0.5066582989595612 V
+###########
+I :55.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5360840047746743 V
+Eta Concentration : 0.02071141916310899 V
+Eta Ohmic : 0.12782186014261962 V
+Loss : 0.684617284080403 V
+PEM Efficiency : 0.3244440486664083
+Power : 27.887912647169795 W
+Power-Stack : 27.887912647169795 W
+Power-Thermal : 39.885087352830205 W
+VStack : 0.506132715919597 V
+Vcell : 0.506132715919597 V
+###########
+I :55.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5362040917522728 V
+Eta Concentration : 0.020788527746084168 V
+Eta Ohmic : 0.12815094824996565 V
+Loss : 0.6851435677483226 V
+PEM Efficiency : 0.3241066873408188
+Power : 27.90947506029259 W
+Power-Stack : 27.90947506029259 W
+Power-Thermal : 39.986524939707415 W
+VStack : 0.5056064322516773 V
+Vcell : 0.5056064322516773 V
+###########
+I :55.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5363239613777566 V
+Eta Concentration : 0.02086600973769678 V
+Eta Ohmic : 0.1284805866851953 V
+Loss : 0.6856705578006487 V
+PEM Efficiency : 0.32376887320471237
+Power : 27.930893153624126 W
+Power-Stack : 27.930893153624126 W
+Power-Thermal : 40.08810684637587 W
+VStack : 0.5050794421993513 V
+Vcell : 0.5050794421993513 V
+###########
+I :55.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5364436144365003 V
+Eta Concentration : 0.020943868772115543 V
+Eta Ohmic : 0.12881077683574094 V
+Loss : 0.6861982600443568 V
+PEM Efficiency : 0.3234306025356687
+Power : 27.95216639354263 W
+Power-Stack : 27.95216639354263 W
+Power-Thermal : 40.18983360645736 W
+VStack : 0.5045517399556432 V
+Vcell : 0.5045517399556432 V
+###########
+I :55.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5365630517096287 V
+Eta Concentration : 0.021022108536822612 V
+Eta Ohmic : 0.12914152009155075 V
+Loss : 0.6867266803380021 V
+PEM Efficiency : 0.32309187157820374
+Power : 27.973294241240882 W
+Power-Stack : 27.973294241240882 W
+Power-Thermal : 40.291705758759115 W
+VStack : 0.5040233196619979 V
+Vcell : 0.5040233196619979 V
+###########
+I :55.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5366822739740484 V
+Eta Concentration : 0.021100732773661486 V
+Eta Ohmic : 0.1294728178450924 V
+Loss : 0.6872558245928023 V
+PEM Efficiency : 0.3227526765430754
+Power : 27.99427615264019 W
+Power-Stack : 27.99427615264019 W
+Power-Thermal : 40.39372384735981 W
+VStack : 0.5034941754071977 V
+Vcell : 0.5034941754071977 V
+###########
+I :55.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5368012820024777 V
+Eta Concentration : 0.021179745279910806 V
+Eta Ohmic : 0.1298046714913561 V
+Loss : 0.6877856987737446 V
+PEM Efficiency : 0.32241301360657393
+Power : 28.015111578302424 W
+Power-Stack : 28.015111578302424 W
+Power-Thermal : 40.49588842169758 W
+VStack : 0.5029643012262554 V
+Vcell : 0.5029643012262554 V
+###########
+I :55.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5369200765634768 V
+Eta Concentration : 0.02125914990938486 V
+Eta Ohmic : 0.1301370824278578 V
+Loss : 0.6883163089007195 V
+PEM Efficiency : 0.3220728789097952
+Power : 28.03579996333985 W
+Power-Stack : 28.03579996333985 W
+Power-Thermal : 40.598200036660145 W
+VStack : 0.5024336910992805 V
+Vcell : 0.5024336910992805 V
+###########
+I :55.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5370386584214778 V
+Eta Concentration : 0.02133895057356149 V
+Eta Ohmic : 0.13047005205464254 V
+Loss : 0.6888476610496819 V
+PEM Efficiency : 0.3217322685578962
+Power : 28.056340747322782 W
+Power-Stack : 28.056340747322782 W
+Power-Thermal : 40.70065925267721 W
+VStack : 0.5019023389503181 V
+Vcell : 0.5019023389503181 V
+###########
+I :56.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5371570283368134 V
+Eta Concentration : 0.0214191512427382 V
+Eta Ohmic : 0.13080358177428736 V
+Loss : 0.689379761353839 V
+PEM Efficiency : 0.3213911786193339
+Power : 28.07673336418501 W
+Power-Stack : 28.07673336418501 W
+Power-Thermal : 40.803266635814985 W
+VStack : 0.5013702386461609 V
+Vcell : 0.5013702386461609 V
+###########
+I :56.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5372751870657474 V
+Eta Concentration : 0.02149975594721752 V
+Eta Ohmic : 0.1311376729919051 V
+Loss : 0.68991261600487 V
+PEM Efficiency : 0.3210496051250833
+Power : 28.096977242126794 W
+Power-Stack : 28.096977242126794 W
+Power-Thermal : 40.90602275787321 W
+VStack : 0.50083738399513 V
+Vcell : 0.50083738399513 V
+###########
+I :56.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5373931353605024 V
+Eta Concentration : 0.021580768778522264 V
+Eta Ohmic : 0.13147232711514698 V
+Loss : 0.6904462312541716 V
+PEM Efficiency : 0.3207075440678387
+Power : 28.117071803515557 W
+Power-Stack : 28.117071803515557 W
+Power-Thermal : 41.00892819648445 W
+VStack : 0.5003037687458284 V
+Vcell : 0.5003037687458284 V
+###########
+I :56.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5375108739692895 V
+Eta Concentration : 0.021662193890641803 V
+Eta Ohmic : 0.13180754555420632 V
+Loss : 0.6909806134141376 V
+PEM Efficiency : 0.3203649914011938
+Power : 28.137016464784047 W
+Power-Stack : 28.137016464784047 W
+Power-Thermal : 41.11198353521595 W
+VStack : 0.49976938658586234 V
+Vcell : 0.49976938658586234 V
+###########
+I :56.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5376284036363363 V
+Eta Concentration : 0.021744035501310134 V
+Eta Ohmic : 0.13214332972182163 V
+Loss : 0.6915157688594681 V
+PEM Efficiency : 0.3200219430388025
+Power : 28.156810636325996 W
+Power-Stack : 28.156810636325996 W
+Power-Thermal : 41.215189363674 W
+VStack : 0.4992342311405319 V
+Vcell : 0.4992342311405319 V
+###########
+I :56.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5377457251019155 V
+Eta Concentration : 0.021826297893316828 V
+Eta Ohmic : 0.1324796810332799 V
+Loss : 0.6920517040285122 V
+PEM Efficiency : 0.3196783948535178
+Power : 28.176453722389056 W
+Power-Stack : 28.176453722389056 W
+Power-Thermal : 41.31854627761094 W
+VStack : 0.49869829597148774 V
+Vcell : 0.49869829597148774 V
+###########
+I :56.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5378628391023721 V
+Eta Concentration : 0.021908985415851907 V
+Eta Ohmic : 0.13281660090641997 V
+Loss : 0.692588425424644 V
+PEM Efficiency : 0.3193343426765102
+Power : 28.195945120965145 W
+Power-Stack : 28.195945120965145 W
+Power-Thermal : 41.42205487903485 W
+VStack : 0.4981615745753559 V
+Vcell : 0.4981615745753559 V
+###########
+I :56.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5379797463701519 V
+Eta Concentration : 0.021992102485885574 V
+Eta Ohmic : 0.13315409076163554 V
+Loss : 0.693125939617673 V
+PEM Efficiency : 0.31898978229636343
+Power : 28.21528422367794 W
+Power-Stack : 28.21528422367794 W
+Power-Thermal : 41.52571577632206 W
+VStack : 0.497624060382327 V
+Vcell : 0.497624060382327 V
+###########
+I :56.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.538096447633829 V
+Eta Concentration : 0.022075653589584 V
+Eta Ohmic : 0.1334921520218787 V
+Loss : 0.6936642532452917 V
+PEM Efficiency : 0.3186447094581463
+Power : 28.23447041566743 W
+Power-Stack : 28.23447041566743 W
+Power-Thermal : 41.629529584332566 W
+VStack : 0.4970857467547083 V
+Vcell : 0.4970857467547083 V
+###########
+I :56.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5382129436181324 V
+Eta Concentration : 0.022159643283762298 V
+Eta Ohmic : 0.13383078611266327 V
+Loss : 0.694203373014558 V
+PEM Efficiency : 0.3182991198624628
+Power : 28.253503075471645 W
+Power-Stack : 28.253503075471645 W
+Power-Thermal : 41.73349692452835 W
+VStack : 0.49654662698544194 V
+Vcell : 0.49654662698544194 V
+###########
+I :57.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5383292350439737 V
+Eta Concentration : 0.0222440761973758 V
+Eta Ohmic : 0.13416999446206795 V
+Loss : 0.6947433057034175 V
+PEM Efficiency : 0.317953009164476
+Power : 28.272381574905204 W
+Power-Stack : 28.272381574905204 W
+Power-Thermal : 41.837618425094796 W
+VStack : 0.4960066942965825 V
+Vcell : 0.4960066942965825 V
+###########
+I :57.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5384453226284733 V
+Eta Concentration : 0.02232895703305089 V
+Eta Ohmic : 0.13450977850073967 V
+Loss : 0.6952840581622639 V
+PEM Efficiency : 0.3176063729729077
+Power : 28.29110527893473 W
+Power-Stack : 28.29110527893473 W
+Power-Thermal : 41.94189472106527 W
+VStack : 0.49546594183773607 V
+Vcell : 0.49546594183773607 V
+###########
+I :57.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5385612070849872 V
+Eta Concentration : 0.0224142905686567 V
+Eta Ohmic : 0.13485013966189704 V
+Loss : 0.695825637315541 V
+PEM Efficiency : 0.31725920684901215
+Power : 28.309673545551053 W
+Power-Stack : 28.309673545551053 W
+Power-Thermal : 42.04632645444895 W
+VStack : 0.49492436268445894 V
+Vcell : 0.49492436268445894 V
+###########
+I :57.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5386768891231335 V
+Eta Concentration : 0.022500081658918855 V
+Eta Ohmic : 0.13519107938133346 V
+Loss : 0.6963680501633858 V
+PEM Efficiency : 0.31691150630552195
+Power : 28.328085725637994 W
+Power-Stack : 28.328085725637994 W
+Power-Thermal : 42.150914274362 W
+VStack : 0.4943819498366142 V
+Vcell : 0.4943819498366142 V
+###########
+I :57.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5387923694488179 V
+Eta Concentration : 0.022586335237076878 V
+Eta Ohmic : 0.1355325990974206 V
+Loss : 0.6969113037833153 V
+PEM Efficiency : 0.31656326680556707
+Power : 28.346341162837696 W
+Power-Stack : 28.346341162837696 W
+Power-Thermal : 42.2556588371623 W
+VStack : 0.49383869621668464 V
+Vcell : 0.49383869621668464 V
+###########
+I :57.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5389076487642604 V
+Eta Concentration : 0.022673056316586303 V
+Eta Ohmic : 0.13587470025111184 V
+Loss : 0.6974554053319586 V
+PEM Efficiency : 0.31621448376156497
+Power : 28.36443919341238 W
+Power-Stack : 28.36443919341238 W
+Power-Thermal : 42.36056080658762 W
+VStack : 0.4932945946680414 V
+Vcell : 0.4932945946680414 V
+###########
+I :57.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.53902272776802 V
+Eta Concentration : 0.022760249992867347 V
+Eta Ohmic : 0.13621738428594546 V
+Loss : 0.6980003620468327 V
+PEM Efficiency : 0.31586515253408154
+Power : 28.382379146102437 W
+Power-Stack : 28.382379146102437 W
+Power-Thermal : 42.46562085389756 W
+VStack : 0.4927496379531673 V
+Vcell : 0.4927496379531673 V
+###########
+I :57.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5391376071550207 V
+Eta Concentration : 0.022847921445101352 V
+Eta Ohmic : 0.13656065264804795 V
+Loss : 0.69854618124817 V
+PEM Efficiency : 0.3155152684306602
+Power : 28.40016034198059 W
+Power-Stack : 28.40016034198059 W
+Power-Thermal : 42.570839658019416 W
+VStack : 0.49220381875182995 V
+Vcell : 0.49220381875182995 V
+###########
+I :57.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5392522876165764 V
+Eta Concentration : 0.02293607593807686 V
+Eta Ohmic : 0.13690450678613775 V
+Loss : 0.699092870340791 V
+PEM Efficiency : 0.3151648267046211
+Power : 28.417782094302275 W
+Power-Stack : 28.417782094302275 W
+Power-Thermal : 42.67621790569772 W
+VStack : 0.49165712965920894 V
+Vcell : 0.49165712965920894 V
+###########
+I :57.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.539366769840416 V
+Eta Concentration : 0.023024718824086708 V
+Eta Ohmic : 0.13724894815152813 V
+Loss : 0.6996404368160308 V
+PEM Efficiency : 0.3148138225538264
+Power : 28.435243708351813 W
+Power-Stack : 28.435243708351813 W
+Power-Thermal : 42.781756291648186 W
+VStack : 0.49110956318396914 V
+Vcell : 0.49110956318396914 V
+###########
+I :58.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5394810545107083 V
+Eta Concentration : 0.023113855544878 V
+Eta Ohmic : 0.13759397819813107 V
+Loss : 0.7001888882537173 V
+PEM Efficiency : 0.314462251119412
+Power : 28.452544481284395 W
+Power-Stack : 28.452544481284395 W
+Power-Thermal : 42.887455518715605 W
+VStack : 0.4905611117462827 V
+Vcell : 0.4905611117462827 V
+###########
+I :58.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.539595142308086 V
+Eta Concentration : 0.02320349163365672 V
+Eta Ohmic : 0.1379395983824601 V
+Loss : 0.7007382323242028 V
+PEM Efficiency : 0.3141101074844853
+Power : 28.469683701963813 W
+Power-Stack : 28.469683701963813 W
+Power-Thermal : 42.993316298036184 W
+VStack : 0.4900117676757971 V
+Vcell : 0.4900117676757971 V
+###########
+I :58.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5397090339096708 V
+Eta Concentration : 0.023293632717148814 V
+Eta Ohmic : 0.13828581016363417 V
+Loss : 0.7012884767904538 V
+PEM Efficiency : 0.31375738667278597
+Power : 28.48666065079559 W
+Power-Stack : 28.48666065079559 W
+Power-Thermal : 43.09933934920441 W
+VStack : 0.48946152320954617 V
+Vcell : 0.48946152320954617 V
+###########
+I :58.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5398227299890965 V
+Eta Concentration : 0.02338428451771965 V
+Eta Ohmic : 0.13863261500338106 V
+Loss : 0.7018396295101973 V
+PEM Efficiency : 0.3134040836473094
+Power : 28.503474599555496 W
+Power-Stack : 28.503474599555496 W
+Power-Thermal : 43.2055254004445 W
+VStack : 0.4889103704898027 V
+Vcell : 0.4889103704898027 V
+###########
+I :58.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5399362312165342 V
+Eta Concentration : 0.023475452855553858 V
+Eta Ohmic : 0.13898001436604054 V
+Loss : 0.7023916984381287 V
+PEM Efficiency : 0.31305019330889183
+Power : 28.520124811213286 W
+Power-Stack : 28.520124811213286 W
+Power-Thermal : 43.311875188786715 W
+VStack : 0.4883583015618713 V
+Vcell : 0.4883583015618713 V
+###########
+I :58.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5400495382587146 V
+Eta Concentration : 0.023567143650897612 V
+Eta Ohmic : 0.13932800971856782 V
+Loss : 0.7029446916281801 V
+PEM Efficiency : 0.31269571049475636
+Power : 28.536610539751464 W
+Power-Stack : 28.536610539751464 W
+Power-Thermal : 43.418389460248534 W
+VStack : 0.4878053083718199 V
+Vcell : 0.4878053083718199 V
+###########
+I :58.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5401626517789524 V
+Eta Concentration : 0.023659362926365612 V
+Eta Ohmic : 0.1396766025305372 V
+Loss : 0.7034986172358552 V
+PEM Efficiency : 0.3123406299770159
+Power : 28.552931029978886 W
+Power-Stack : 28.552931029978886 W
+Power-Thermal : 43.52506897002112 W
+VStack : 0.4872513827641448 V
+Vcell : 0.4872513827641448 V
+###########
+I :58.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5402755724371697 V
+Eta Concentration : 0.02375211680931483 V
+Eta Ohmic : 0.1400257942741453 V
+Loss : 0.7040534835206299 V
+PEM Efficiency : 0.31198494646113467
+Power : 28.569085517339023 W
+Power-Stack : 28.569085517339023 W
+Power-Thermal : 43.63191448266098 W
+VStack : 0.48669651647937007 V
+Vcell : 0.48669651647937007 V
+###########
+I :58.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5403883008899184 V
+Eta Concentration : 0.023845411534287517 V
+Eta Ohmic : 0.1403755864242147 V
+Loss : 0.7046092988484206 V
+PEM Efficiency : 0.31162865458434574
+Power : 28.585073227712865 W
+Power-Stack : 28.585073227712865 W
+Power-Thermal : 43.73892677228713 W
+VStack : 0.48614070115157937 V
+Vcell : 0.48614070115157937 V
+###########
+I :58.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5405008377904037 V
+Eta Concentration : 0.023939253445525888 V
+Eta Ohmic : 0.1407259804581973 V
+Loss : 0.7051660716941268 V
+PEM Efficiency : 0.31127174891402126
+Power : 28.60089337721593 W
+Power-Stack : 28.60089337721593 W
+Power-Thermal : 43.84610662278407 W
+VStack : 0.48558392830587316 V
+Vcell : 0.48558392830587316 V
+###########
+I :59.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5406131837885064 V
+Eta Concentration : 0.024033648999560904 V
+Eta Ohmic : 0.14107697785617773 V
+Loss : 0.7057238106442452 V
+PEM Efficiency : 0.31091422394599666
+Power : 28.616545171989532 W
+Power-Stack : 28.616545171989532 W
+Power-Thermal : 43.953454828010464 W
+VStack : 0.4850261893557548 V
+Vcell : 0.4850261893557548 V
+###########
+I :59.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5407253395308058 V
+Eta Concentration : 0.024128604767877933 V
+Eta Ohmic : 0.14142858010087703 V
+Loss : 0.7062825243995607 V
+PEM Efficiency : 0.31055607410284564
+Power : 28.63202780798596 W
+Power-Stack : 28.63202780798596 W
+Power-Thermal : 44.06097219201404 W
+VStack : 0.48446747560043923 V
+Vcell : 0.48446747560043923 V
+###########
+I :59.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5408373056606017 V
+Eta Concentration : 0.024224127439662006 V
+Eta Ohmic : 0.14178078867765587 V
+Loss : 0.7068422217779196 V
+PEM Efficiency : 0.3101972937321028
+Power : 28.647340470747164 W
+Power-Stack : 28.647340470747164 W
+Power-Thermal : 44.16865952925284 W
+VStack : 0.4839077782220804 V
+Vcell : 0.4839077782220804 V
+###########
+I :59.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.540949082817937 V
+Eta Concentration : 0.024320223824625384 V
+Eta Ohmic : 0.14213360507451822 V
+Loss : 0.7074029117170806 V
+PEM Efficiency : 0.3098378771044355
+Power : 28.662482335177117 W
+Power-Stack : 28.662482335177117 W
+Power-Thermal : 44.276517664822876 W
+VStack : 0.4833470882829194 V
+Vcell : 0.4833470882829194 V
+###########
+I :59.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5410606716396189 V
+Eta Concentration : 0.024416900855920784 V
+Eta Ohmic : 0.14248703078211492 V
+Loss : 0.7079646032776545 V
+PEM Efficiency : 0.30947781841175986
+Power : 28.67745256530732 W
+Power-Stack : 28.67745256530732 W
+Power-Thermal : 44.38454743469268 W
+VStack : 0.48278539672234544 V
+Vcell : 0.48278539672234544 V
+###########
+I :59.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5411720727592413 V
+Eta Concentration : 0.024514165593142897 V
+Eta Ohmic : 0.14284106729374696 V
+Loss : 0.7085273056461312 V
+PEM Efficiency : 0.3091171117653005
+Power : 28.692250314055194 W
+Power-Stack : 28.692250314055194 W
+Power-Thermal : 44.49274968594481 W
+VStack : 0.4822226943538688 V
+Vcell : 0.4822226943538688 V
+###########
+I :59.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5412832868072062 V
+Eta Concentration : 0.024612025225421885 V
+Eta Ohmic : 0.14319571610536927 V
+Loss : 0.7090910281379974 V
+PEM Efficiency : 0.3087557511935914
+Power : 28.706874722975353 W
+Power-Stack : 28.706874722975353 W
+Power-Thermal : 44.60112527702465 W
+VStack : 0.48165897186200257 V
+Vcell : 0.48165897186200257 V
+###########
+I :59.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5413943144107451 V
+Eta Concentration : 0.024710487074611934 V
+Eta Ohmic : 0.14355097871559386 V
+Loss : 0.709655780200951 V
+PEM Efficiency : 0.308393730640416
+Power : 28.721324922003227 W
+Power-Stack : 28.721324922003227 W
+Power-Thermal : 44.70967507799678 W
+VStack : 0.481094219799049 V
+Vcell : 0.481094219799049 V
+###########
+I :59.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5415051561939404 V
+Eta Concentration : 0.02480955859857866 V
+Eta Ohmic : 0.14390685662569389 V
+Loss : 0.710221571418213 V
+PEM Efficiency : 0.30803104396268394
+Power : 28.735600029190863 W
+Power-Stack : 28.735600029190863 W
+Power-Thermal : 44.81839997080913 W
+VStack : 0.480528428581787 V
+Vcell : 0.480528428581787 V
+###########
+I :59.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5416158127777456 V
+Eta Concentration : 0.02490924739458885 V
+Eta Ohmic : 0.14426335133960683 V
+Loss : 0.7107884115119414 V
+PEM Efficiency : 0.30766768492824265
+Power : 28.749699150434708 W
+Power-Stack : 28.749699150434708 W
+Power-Thermal : 44.92730084956529 W
+VStack : 0.4799615884880586 V
+Vcell : 0.4799615884880586 V
+###########
+I :60.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5417262847800077 V
+Eta Concentration : 0.025009561202806375 V
+Eta Ohmic : 0.14462046436393794 V
+Loss : 0.7113563103467521 V
+PEM Efficiency : 0.30730364721362047
+Power : 28.763621379194873 W
+Power-Stack : 28.763621379194873 W
+Power-Thermal : 45.036378620805124 W
+VStack : 0.4793936896532479 V
+Vcell : 0.4793936896532479 V
+###########
+I :60.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5418365728154866 V
+Eta Concentration : 0.025110507909898615 V
+Eta Ohmic : 0.1449781972079644 V
+Loss : 0.7119252779333497 V
+PEM Efficiency : 0.3069389244016989
+Power : 28.777365796205682 W
+Power-Stack : 28.777365796205682 W
+Power-Thermal : 45.145634203794316 W
+VStack : 0.4788247220666503 V
+Vcell : 0.4788247220666503 V
+###########
+I :60.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5419466774958759 V
+Eta Concentration : 0.025212095552757153 V
+Eta Ohmic : 0.145336551383638 V
+Loss : 0.712495324432271 V
+PEM Efficiency : 0.3065735099793134
+Power : 28.790931469177284 W
+Power-Stack : 28.790931469177284 W
+Power-Thermal : 45.25506853082272 W
+VStack : 0.47825467556772894 V
+Vcell : 0.47825467556772894 V
+###########
+I :60.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5420565994298238 V
+Eta Concentration : 0.025314332322337485 V
+Eta Ohmic : 0.14569552840558953 V
+Loss : 0.7130664601577508 V
+PEM Efficiency : 0.30620739733477514
+Power : 28.804317452487627 W
+Power-Stack : 28.804317452487627 W
+Power-Thermal : 45.364682547512366 W
+VStack : 0.4776835398422492 V
+Vcell : 0.4776835398422492 V
+###########
+I :60.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5421663392229525 V
+Eta Concentration : 0.025417226567622134 V
+Eta Ohmic : 0.14605512979113192 V
+Loss : 0.7136386955817066 V
+PEM Efficiency : 0.30584057975531626
+Power : 28.81752278686492 W
+Power-Stack : 28.81752278686492 W
+Power-Thermal : 45.474477213135074 W
+VStack : 0.4771113044182934 V
+Vcell : 0.4771113044182934 V
+###########
+I :60.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5422758974778792 V
+Eta Concentration : 0.02552078679971201 V
+Eta Ohmic : 0.14641535706026407 V
+Loss : 0.7142120413378553 V
+PEM Efficiency : 0.30547305042445166
+Power : 28.83054649905975 W
+Power-Stack : 28.83054649905975 W
+Power-Thermal : 45.58445350094025 W
+VStack : 0.47653795866214466 V
+Vcell : 0.47653795866214466 V
+###########
+I :60.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5423852747942348 V
+Eta Concentration : 0.025625021696051107 V
+Eta Ohmic : 0.14677621173567423 V
+Loss : 0.7147865082259601 V
+PEM Efficiency : 0.3051048024192563
+Power : 28.843387601506816 W
+Power-Stack : 28.843387601506816 W
+Power-Thermal : 45.694612398493184 W
+VStack : 0.47596349177403985 V
+Vcell : 0.47596349177403985 V
+###########
+I :60.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5424944717686844 V
+Eta Concentration : 0.02572994010478966 V
+Eta Ohmic : 0.14713769534274374 V
+Loss : 0.7153621072162177 V
+PEM Efficiency : 0.3047358287075527
+Power : 28.856045091975584 W
+Power-Stack : 28.856045091975584 W
+Power-Thermal : 45.80495490802442 W
+VStack : 0.47538789278378224 V
+Vcell : 0.47538789278378224 V
+###########
+I :60.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5426034889949467 V
+Eta Concentration : 0.025835551049291288 V
+Eta Ohmic : 0.14749980940955057 V
+Loss : 0.7159388494537885 V
+PEM Efficiency : 0.30436612214500736
+Power : 28.868517953209658 W
+Power-Stack : 28.868517953209658 W
+Power-Thermal : 45.91548204679034 W
+VStack : 0.4748111505462115 V
+Vcell : 0.4748111505462115 V
+###########
+I :60.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5427123270638132 V
+Eta Concentration : 0.02594186373278998 V
+Eta Ohmic : 0.14786255546687319 V
+Loss : 0.7165167462634764 V
+PEM Efficiency : 0.3039956754721305
+Power : 28.880805152554284 W
+Power-Stack : 28.880805152554284 W
+Power-Thermal : 46.02619484744571 W
+VStack : 0.4742332537365236 V
+Vcell : 0.4742332537365236 V
+###########
+I :61.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5428209865631675 V
+Eta Concentration : 0.026048887543202733 V
+Eta Ohmic : 0.1482259350481938 V
+Loss : 0.7170958091545641 V
+PEM Efficiency : 0.30362448131117686
+Power : 28.89290564157159 W
+Power-Stack : 28.89290564157159 W
+Power-Thermal : 46.137094358428406 W
+VStack : 0.4736541908454359 V
+Vcell : 0.4736541908454359 V
+###########
+I :61.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.542929468078004 V
+Eta Concentration : 0.026156632058104232 V
+Eta Ohmic : 0.1485899496897024 V
+Loss : 0.7176760498258107 V
+PEM Efficiency : 0.30325253216294185
+Power : 28.904818355642966 W
+Power-Stack : 28.904818355642966 W
+Power-Thermal : 46.24818164435703 W
+VStack : 0.4730739501741893 V
+Vcell : 0.4730739501741893 V
+###########
+I :61.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5430377721904478 V
+Eta Concentration : 0.02626510704987031 V
+Eta Ohmic : 0.1489546009303002 V
+Loss : 0.7182574801706183 V
+PEM Efficiency : 0.3028798204034498
+Power : 28.91654221355816 W
+Power-Stack : 28.91654221355816 W
+Power-Thermal : 46.359457786441844 W
+VStack : 0.4724925198293817 V
+Vcell : 0.4724925198293817 V
+###########
+I :61.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5431458994797722 V
+Eta Concentration : 0.026374322490996693 V
+Eta Ohmic : 0.14931989031160314 V
+Loss : 0.718840112282372 V
+PEM Efficiency : 0.30250633828053075
+Power : 28.928076117090594 W
+Power-Stack : 28.928076117090594 W
+Power-Thermal : 46.4709238829094 W
+VStack : 0.471909887717628 V
+Vcell : 0.471909887717628 V
+###########
+I :61.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.543253850522418 V
+Eta Concentration : 0.02648428855960088 V
+Eta Ohmic : 0.14968581937794606 V
+Loss : 0.7194239584599649 V
+PEM Efficiency : 0.3021320779102789
+Power : 28.939418950558153 W
+Power-Stack : 28.939418950558153 W
+Power-Thermal : 46.58258104944184 W
+VStack : 0.4713260415400351 V
+Vcell : 0.4713260415400351 V
+###########
+I :61.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5433616258920122 V
+Eta Concentration : 0.02659501564511406 V
+Eta Ohmic : 0.15005238967638584 V
+Loss : 0.7200090312135121 V
+PEM Efficiency : 0.30175703127338965
+Power : 28.950569580369002 W
+Power-Stack : 28.950569580369002 W
+Power-Thermal : 46.694430419631 W
+VStack : 0.47074096878648786 V
+Vcell : 0.47074096878648786 V
+###########
+I :61.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5434692261593853 V
+Eta Concentration : 0.026706514354171568 V
+Eta Ohmic : 0.15041960275670543 V
+Loss : 0.7205953432702623 V
+PEM Efficiency : 0.3013811902113703
+Power : 28.961526854551842 W
+Power-Stack : 28.961526854551842 W
+Power-Thermal : 46.80647314544816 W
+VStack : 0.47015465672973766 V
+Vcell : 0.47015465672973766 V
+###########
+I :61.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5435766518925904 V
+Eta Concentration : 0.02681879551670991 V
+Eta Ohmic : 0.15078746017141734 V
+Loss : 0.7211829075807177 V
+PEM Efficiency : 0.3010045464226168
+Power : 28.97228960226972 W
+Power-Stack : 28.97228960226972 W
+Power-Thermal : 46.91871039773029 W
+VStack : 0.4695670924192823 V
+Vcell : 0.4695670924192823 V
+###########
+I :61.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5436839036569207 V
+Eta Concentration : 0.026931870192279373 V
+Eta Ohmic : 0.15115596347576757 V
+Loss : 0.7217717373249676 V
+PEM Efficiency : 0.3006270914583541
+Power : 28.982856633317002 W
+Power-Stack : 28.982856633317002 W
+Power-Thermal : 47.031143366683 W
+VStack : 0.4689782626750324 V
+Vcell : 0.4689782626750324 V
+###########
+I :61.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5437909820149274 V
+Eta Concentration : 0.027045749676581212 V
+Eta Ohmic : 0.15152511422773915 V
+Loss : 0.7223618459192478 V
+PEM Efficiency : 0.3002488167184309
+Power : 28.993226737598558 W
+Power-Stack : 28.993226737598558 W
+Power-Thermal : 47.14377326240144 W
+VStack : 0.4683881540807522 V
+Vcell : 0.4683881540807522 V
+###########
+I :62.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5438978875264376 V
+Eta Concentration : 0.02716044550823901 V
+Eta Ohmic : 0.15189491398805577 V
+Loss : 0.7229532470227324 V
+PEM Efficiency : 0.2998697134469664
+Power : 29.003398684590586 W
+Power-Stack : 29.003398684590586 W
+Power-Thermal : 47.25660131540941 W
+VStack : 0.4677967529772675 V
+Vcell : 0.4677967529772675 V
+###########
+I :62.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5440046207485718 V
+Eta Concentration : 0.02727596947581481 V
+Eta Ohmic : 0.15226536432018586 V
+Loss : 0.7235459545445725 V
+PEM Efficiency : 0.2994897727278381
+Power : 29.013371222782048 W
+Power-Stack : 29.013371222782048 W
+Power-Thermal : 47.369628777217955 W
+VStack : 0.4672040454554275 V
+Vcell : 0.4672040454554275 V
+###########
+I :62.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5441111822357613 V
+Eta Concentration : 0.027392333625080083 V
+Eta Ohmic : 0.152636466790346 V
+Loss : 0.7241399826511874 V
+PEM Efficiency : 0.299108985480008
+Power : 29.023143079096144 W
+Power-Stack : 29.023143079096144 W
+Power-Thermal : 47.482856920903856 W
+VStack : 0.4666100173488126 V
+Vcell : 0.4666100173488126 V
+###########
+I :62.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5442175725397651 V
+Eta Concentration : 0.027509550266553245 V
+Eta Ohmic : 0.15300822296750474 V
+Loss : 0.724735345773823 V
+PEM Efficiency : 0.2987273424526775
+Power : 29.032712958290823 W
+Power-Stack : 29.032712958290823 W
+Power-Thermal : 47.596287041709175 W
+VStack : 0.46601465422617694 V
+Vcell : 0.46601465422617694 V
+###########
+I :62.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5443237922096875 V
+Eta Concentration : 0.027627631983315214 V
+Eta Ohmic : 0.15338063442338654 V
+Loss : 0.7253320586163893 V
+PEM Efficiency : 0.29834483422026326
+Power : 29.04207954233731 W
+Power-Stack : 29.04207954233731 W
+Power-Thermal : 47.70992045766269 W
+VStack : 0.4654179413836107 V
+Vcell : 0.4654179413836107 V
+###########
+I :62.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5444298417919955 V
+Eta Concentration : 0.027746591639115498 V
+Eta Ohmic : 0.15375370273247538 V
+Loss : 0.7259301361635864 V
+PEM Efficiency : 0.2979614511771882
+Power : 29.05124148977585 W
+Power-Stack : 29.05124148977585 W
+Power-Thermal : 47.823758510224145 W
+VStack : 0.4648198638364136 V
+Vcell : 0.4648198638364136 V
+###########
+I :62.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5445357218305342 V
+Eta Concentration : 0.02786644238678201 V
+Eta Ohmic : 0.1541274294720184 V
+Loss : 0.7265295936893347 V
+PEM Efficiency : 0.29757718353247775
+Power : 29.060197435047648 W
+Power-Stack : 29.060197435047648 W
+Power-Thermal : 47.93780256495235 W
+VStack : 0.4642204063106653 V
+Vcell : 0.4642204063106653 V
+###########
+I :62.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5446414328665456 V
+Eta Concentration : 0.027987197676948145 V
+Eta Ohmic : 0.15450181622203 V
+Loss : 0.7271304467655237 V
+PEM Efficiency : 0.2971920213041514
+Power : 29.068945987801662 W
+Power-Stack : 29.068945987801662 W
+Power-Thermal : 48.05205401219834 W
+VStack : 0.46361955323447623 V
+Vcell : 0.46361955323447623 V
+###########
+I :62.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5447469754386831 V
+Eta Concentration : 0.02810887126711165 V
+Eta Ohmic : 0.1548768645652953 V
+Loss : 0.7277327112710902 V
+PEM Efficiency : 0.29680595431340373
+Power : 29.077485732175532 W
+Power-Stack : 29.077485732175532 W
+Power-Thermal : 48.16651426782446 W
+VStack : 0.4630172887289098 V
+Vcell : 0.4630172887289098 V
+###########
+I :62.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5448523500830296 V
+Eta Concentration : 0.028231477231040754 V
+Eta Ohmic : 0.15525257608737436 V
+Loss : 0.7283364034014448 V
+PEM Efficiency : 0.296418972178561
+Power : 29.08581522604912 W
+Power-Stack : 29.08581522604912 W
+Power-Thermal : 48.281184773950876 W
+VStack : 0.4624135965985552 V
+Vcell : 0.4624135965985552 V
+###########
+I :63.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5449575573331127 V
+Eta Concentration : 0.028355029968543326 V
+Eta Ohmic : 0.15562895237660546 V
+Loss : 0.7289415396782615 V
+PEM Efficiency : 0.2960310643088067
+Power : 29.093933000269526 W
+Power-Stack : 29.093933000269526 W
+Power-Thermal : 48.39606699973047 W
+VStack : 0.4618084603217385 V
+Vcell : 0.4618084603217385 V
+###########
+I :63.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5450625977199219 V
+Eta Concentration : 0.028479544215616198 V
+Eta Ohmic : 0.15600599502410945 V
+Loss : 0.7295481369596476 V
+PEM Efficiency : 0.29564221989766176
+Power : 29.101837557846235 W
+Power-Stack : 29.101837557846235 W
+Power-Thermal : 48.51116244215377 W
+VStack : 0.4612018630403524 V
+Vcell : 0.4612018630403524 V
+###########
+I :63.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5451674717719239 V
+Eta Concentration : 0.02860503505499263 V
+Eta Ohmic : 0.1563837056237931 V
+Loss : 0.7301562124507097 V
+PEM Efficiency : 0.2952524279162117
+Power : 29.109527373115146 W
+Power-Stack : 29.109527373115146 W
+Power-Thermal : 48.626472626884855 W
+VStack : 0.46059378754929026 V
+Vcell : 0.46059378754929026 V
+###########
+I :63.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5452721800150789 V
+Eta Concentration : 0.028731517927106428 V
+Eta Ohmic : 0.15676208577235326 V
+Loss : 0.7307657837145386 V
+PEM Efficiency : 0.294861677106065
+Power : 29.117000890869704 W
+Power-Stack : 29.117000890869704 W
+Power-Thermal : 48.74199910913029 W
+VStack : 0.4599842162854614 V
+Vcell : 0.4599842162854614 V
+###########
+I :63.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5453767229728563 V
+Eta Concentration : 0.028859008641493256 V
+Eta Ohmic : 0.15714113706928062 V
+Loss : 0.7313768686836302 V
+PEM Efficiency : 0.2944699559720319
+Power : 29.124256525457845 W
+Power-Stack : 29.124256525457845 W
+Power-Thermal : 48.857743474542154 W
+VStack : 0.4593731313163698 V
+Vcell : 0.4593731313163698 V
+###########
+I :63.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5454811011662508 V
+Eta Concentration : 0.028987523388649475 V
+Eta Ohmic : 0.15752086111686348 V
+Loss : 0.7319894856717638 V
+PEM Efficiency : 0.29407725277451036
+Power : 29.131292659842998 W
+Power-Stack : 29.131292659842998 W
+Power-Thermal : 48.973707340157 W
+VStack : 0.45876051432823617 V
+Vcell : 0.45876051432823617 V
+###########
+I :63.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.545585315113797 V
+Eta Concentration : 0.029117078752371402 V
+Eta Ohmic : 0.1579012595201917 V
+Loss : 0.7326036533863601 V
+PEM Efficiency : 0.293683555521564
+Power : 29.138107644627496 W
+Power-Stack : 29.138107644627496 W
+Power-Thermal : 49.089892355372506 W
+VStack : 0.45814634661363984 V
+Vcell : 0.45814634661363984 V
+###########
+I :63.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.545689365331586 V
+Eta Concentration : 0.029247691722597974 V
+Eta Ohmic : 0.1582823338871606 V
+Loss : 0.7332193909413446 V
+PEM Efficiency : 0.2932888519606765
+Power : 29.14469979703635 W
+Power-Stack : 29.14469979703635 W
+Power-Thermal : 49.206300202963654 W
+VStack : 0.4575306090586554 V
+Vcell : 0.4575306090586554 V
+###########
+I :63.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.54579325233328 V
+Eta Concentration : 0.029379379708782207 V
+Eta Ohmic : 0.1586640858284746 V
+Loss : 0.7338367178705368 V
+PEM Efficiency : 0.29289312957016866
+Power : 29.15106739985975 W
+Power-Stack : 29.15106739985975 W
+Power-Thermal : 49.32293260014025 W
+VStack : 0.45691328212946314 V
+Vcell : 0.45691328212946314 V
+###########
+I :63.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5458969766301282 V
+Eta Concentration : 0.029512160553817345 V
+Eta Ohmic : 0.15904651695765157 V
+Loss : 0.7344556541415971 V
+PEM Efficiency : 0.29249637555025826
+Power : 29.157208700351944 W
+Power-Stack : 29.157208700351944 W
+Power-Thermal : 49.43979129964805 W
+VStack : 0.4562943458584029 V
+Vcell : 0.4562943458584029 V
+###########
+I :64.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5460005387309808 V
+Eta Concentration : 0.029646052548545607 V
+Eta Ohmic : 0.15942962889102627 V
+Loss : 0.7350762201705526 V
+PEM Efficiency : 0.2920985768137483
+Power : 29.16312190908463 W
+Power-Stack : 29.16312190908463 W
+Power-Thermal : 49.55687809091537 W
+VStack : 0.45567377982944735 V
+Vcell : 0.45567377982944735 V
+###########
+I :64.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5461039391423048 V
+Eta Concentration : 0.029781074446879427 V
+Eta Ohmic : 0.1598134232477544 V
+Loss : 0.7356984368369386 V
+PEM Efficiency : 0.2916997199763214
+Power : 29.16880519875223 W
+Power-Stack : 29.16880519875223 W
+Power-Thermal : 49.67419480124776 W
+VStack : 0.4550515631630614 V
+Vcell : 0.4550515631630614 V
+###########
+I :64.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5462071783681991 V
+Eta Concentration : 0.02991724548156598 V
+Eta Ohmic : 0.16019790164981668 V
+Loss : 0.7363223254995817 V
+PEM Efficiency : 0.291299791346422
+Power : 29.174256702926858 W
+Power-Stack : 29.174256702926858 W
+Power-Thermal : 49.79174329707315 W
+VStack : 0.4544276745004183 V
+Vcell : 0.4544276745004183 V
+###########
+I :64.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5463102569104084 V
+Eta Concentration : 0.03005458538062824 V
+Eta Ohmic : 0.16058306572202247 V
+Loss : 0.736947908013059 V
+PEM Efficiency : 0.2908987769147058
+Power : 29.179474514760305 W
+Power-Stack : 29.179474514760305 W
+Power-Thermal : 49.90952548523969 W
+VStack : 0.453802091986941 V
+Vcell : 0.453802091986941 V
+###########
+I :64.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5464131752683383 V
+Eta Concentration : 0.03019311438451808 V
+Eta Ohmic : 0.16096891709201408 V
+Loss : 0.7375752067448705 V
+PEM Efficiency : 0.2904966623430317
+Power : 29.184456685630337 W
+Power-Stack : 29.184456685630337 W
+Power-Thermal : 50.027543314369666 W
+VStack : 0.45317479325512944 V
+Vcell : 0.45317479325512944 V
+###########
+I :64.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5465159339390702 V
+Eta Concentration : 0.030332853264018148 V
+Eta Ohmic : 0.16135545739027032 V
+Loss : 0.7382042445933586 V
+PEM Efficiency : 0.2900934329529752
+Power : 29.189201223728364 W
+Power-Stack : 29.189201223728364 W
+Power-Thermal : 50.14579877627163 W
+VStack : 0.4525457554066413 V
+Vcell : 0.4525457554066413 V
+###########
+I :64.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5466185334173745 V
+Eta Concentration : 0.030473823338932622 V
+Eta Ohmic : 0.1617426882501108 V
+Loss : 0.738835045006418 V
+PEM Efficiency : 0.2896890737138346
+Power : 29.193706092585398 W
+Power-Stack : 29.193706092585398 W
+Power-Thermal : 50.2642939074146 W
+VStack : 0.45191495499358203 V
+Vcell : 0.45191495499358203 V
+###########
+I :64.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5467209741957264 V
+Eta Concentration : 0.030616046497608566 V
+Eta Ohmic : 0.16213061130769954 V
+Loss : 0.7394676320010345 V
+PEM Efficiency : 0.28928356923010606
+Power : 29.197969209533067 W
+Power-Stack : 29.197969209533067 W
+Power-Thermal : 50.38303079046693 W
+VStack : 0.4512823679989655 V
+Vcell : 0.4512823679989655 V
+###########
+I :64.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5468232567643192 V
+Eta Concentration : 0.03075954521733273 V
+Eta Ohmic : 0.16251922820204925 V
+Loss : 0.7401020301837011 V
+PEM Efficiency : 0.2888769037283967
+Power : 29.201988444096163 W
+Power-Stack : 29.201988444096163 W
+Power-Thermal : 50.502011555903835 W
+VStack : 0.45064796981629884 V
+Vcell : 0.45064796981629884 V
+###########
+I :64.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5469253816110782 V
+Eta Concentration : 0.030904342585651435 V
+Eta Ohmic : 0.16290854057502527 V
+Loss : 0.7407382647717549 V
+PEM Efficiency : 0.28846906104374687
+Power : 29.20576161631311 W
+Power-Stack : 29.20576161631311 W
+Power-Thermal : 50.621238383686894 W
+VStack : 0.4500117352282451 V
+Vcell : 0.4500117352282451 V
+###########
+I :65.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5470273492216753 V
+Eta Concentration : 0.031050462322663775 V
+Eta Ohmic : 0.1632985500713491 V
+Loss : 0.7413763616156881 V
+PEM Efficiency : 0.2880600246053281
+Power : 29.209286494980272 W
+Power-Stack : 29.209286494980272 W
+Power-Thermal : 50.74071350501973 W
+VStack : 0.4493736383843119 V
+Vcell : 0.4493736383843119 V
+###########
+I :65.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5471291600795426 V
+Eta Concentration : 0.031197928804342558 V
+Eta Ohmic : 0.1636892583386032 V
+Loss : 0.7420163472224884 V
+PEM Efficiency : 0.28764977742148173
+Power : 29.212560795816 W
+Power-Stack : 29.212560795816 W
+Power-Thermal : 50.86043920418399 W
+VStack : 0.44873365277751154 V
+Vcell : 0.44873365277751154 V
+###########
+I :65.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5472308146658857 V
+Eta Concentration : 0.03134676708693959 V
+Eta Ohmic : 0.16408066702723434 V
+Loss : 0.7426582487800597 V
+PEM Efficiency : 0.28723830206406425
+Power : 29.215582179540107 W
+Power-Stack : 29.215582179540107 W
+Power-Thermal : 50.9804178204599 W
+VStack : 0.44809175121994027 V
+Vcell : 0.44809175121994027 V
+###########
+I :65.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5473323134596986 V
+Eta Concentration : 0.031497002932537 V
+Eta Ohmic : 0.16447277779055774 V
+Loss : 0.7433020941827932 V
+PEM Efficiency : 0.28682558065205555
+Power : 29.2183482498636 W
+Power-Stack : 29.2183482498636 W
+Power-Thermal : 51.1006517501364 W
+VStack : 0.4474479058172067 V
+Vcell : 0.4474479058172067 V
+###########
+I :65.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5474336569377753 V
+Eta Concentration : 0.03164866283580971 V
+Eta Ohmic : 0.16486559228476144 V
+Loss : 0.7439479120583465 V
+PEM Efficiency : 0.2864115948343932
+Power : 29.220856551384138 W
+Power-Stack : 29.220856551384138 W
+Power-Thermal : 51.22114344861587 W
+VStack : 0.44680208794165344 V
+Vcell : 0.44680208794165344 V
+###########
+I :65.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5475348455747253 V
+Eta Concentration : 0.031801774052068105 V
+Eta Ohmic : 0.1652591121689097 V
+Loss : 0.7445957317957032 V
+PEM Efficiency : 0.28599632577198514
+Power : 29.22310456738144 W
+Power-Stack : 29.22310456738144 W
+Power-Thermal : 51.34189543261856 W
+VStack : 0.4461542682042968 V
+Vcell : 0.4461542682042968 V
+###########
+I :65.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5476358798429852 V
+Eta Concentration : 0.031956364626655895 V
+Eta Ohmic : 0.16565333910494776 V
+Loss : 0.7452455835745888 V
+PEM Efficiency : 0.2855797541188533
+Power : 29.225089717506968 W
+Power-Stack : 29.225089717506968 W
+Power-Thermal : 51.46291028249302 W
+VStack : 0.44550441642541116 V
+Vcell : 0.44550441642541116 V
+###########
+I :65.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5477367602128334 V
+Eta Concentration : 0.032112463425781744 V
+Eta Ohmic : 0.16604827475770542 V
+Loss : 0.7458974983963206 V
+PEM Efficiency : 0.2851618600023586
+Power : 29.226809355361738 W
+Power-Stack : 29.226809355361738 W
+Power-Thermal : 51.58419064463826 W
+VStack : 0.4448525016036794 V
+Vcell : 0.4448525016036794 V
+###########
+I :65.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5478374871524021 V
+Eta Concentration : 0.03227010016886991 V
+Eta Ohmic : 0.16644392079490117 V
+Loss : 0.7465515081161731 V
+PEM Efficiency : 0.2847426230024531
+Power : 29.228260765955806 W
+Power-Stack : 29.228260765955806 W
+Power-Thermal : 51.70573923404419 W
+VStack : 0.4441984918838269 V
+Vcell : 0.4441984918838269 V
+###########
+I :65.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5479380611276908 V
+Eta Concentration : 0.03242930546252062 V
+Eta Ohmic : 0.16684027888714642 V
+Loss : 0.747207645477358 V
+PEM Efficiency : 0.2843220221298987
+Power : 29.22944116304211 W
+Power-Stack : 29.22944116304211 W
+Power-Thermal : 51.82755883695789 W
+VStack : 0.443542354522642 V
+Vcell : 0.443542354522642 V
+###########
+I :66.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5480384826025795 V
+Eta Concentration : 0.03259011083617663 V
+Eta Ohmic : 0.1672373507079492 V
+Loss : 0.7478659441467053 V
+PEM Efficiency : 0.283900035803394
+Power : 29.23034768631745 W
+Power-Stack : 29.23034768631745 W
+Power-Thermal : 51.94965231368255 W
+VStack : 0.4428840558532947 V
+Vcell : 0.4428840558532947 V
+###########
+I :66.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.548138752038841 V
+Eta Concentration : 0.03275254877960091 V
+Eta Ohmic : 0.16763513793371884 V
+Loss : 0.7485264387521607 V
+PEM Efficiency : 0.28347664182553794
+Power : 29.23097739848217 W
+Power-Stack : 29.23097739848217 W
+Power-Thermal : 52.07202260151782 W
+VStack : 0.44222356124783924 V
+Vcell : 0.44222356124783924 V
+###########
+I :66.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5482388698961539 V
+Eta Concentration : 0.03291665278227596 V
+Eta Ohmic : 0.16803364224376957 V
+Loss : 0.7491891649221994 V
+PEM Efficiency : 0.2830518173575644
+Power : 29.231327282150396 W
+Power-Stack : 29.231327282150396 W
+Power-Thermal : 52.194672717849606 W
+VStack : 0.44156083507780053 V
+Vcell : 0.44156083507780053 V
+###########
+I :66.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5483388366321154 V
+Eta Concentration : 0.03308245737484469 V
+Eta Ohmic : 0.16843286532032475 V
+Loss : 0.7498541593272848 V
+PEM Efficiency : 0.2826255388927661
+Power : 29.231394236601012 W
+Power-Stack : 29.231394236601012 W
+Power-Thermal : 52.31760576339898 W
+VStack : 0.44089584067271514 V
+Vcell : 0.44089584067271514 V
+###########
+I :66.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5484386527022533 V
+Eta Concentration : 0.03324999817272143 V
+Eta Ohmic : 0.16883280884852114 V
+Loss : 0.7505214597234959 V
+PEM Efficiency : 0.2821977822285282
+Power : 29.23117507435987 W
+Power-Stack : 29.23117507435987 W
+Power-Thermal : 52.440824925640136 W
+VStack : 0.44022854027650404 V
+Vcell : 0.44022854027650404 V
+###########
+I :66.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5485383185600394 V
+Eta Concentration : 0.03341931192201001 V
+Eta Ohmic : 0.16923347451641282 V
+Loss : 0.7511911049984622 V
+PEM Efficiency : 0.28176852243688316
+Power : 29.230666517602263 W
+Power-Stack : 29.230666517602263 W
+Power-Thermal : 52.564333482397736 W
+VStack : 0.4395588950015378 V
+Vcell : 0.4395588950015378 V
+###########
+I :66.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.548637834656901 V
+Eta Concentration : 0.03359043654787798 V
+Eta Ohmic : 0.1696348640149754 V
+Loss : 0.7518631352197543 V
+PEM Efficiency : 0.2813377338334908
+Power : 29.229865194364358 W
+Power-Stack : 29.229865194364358 W
+Power-Thermal : 52.688134805635634 W
+VStack : 0.43888686478024563 V
+Vcell : 0.43888686478024563 V
+###########
+I :66.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5487372014422331 V
+Eta Concentration : 0.033763411205545435 V
+Eta Ohmic : 0.17003697903811021 V
+Loss : 0.7525375916858887 V
+PEM Efficiency : 0.2809053899449431
+Power : 29.22876763455122 W
+Power-Stack : 29.22876763455122 W
+Power-Thermal : 52.81223236544878 W
+VStack : 0.43821240831411123 V
+Vcell : 0.43821240831411123 V
+###########
+I :66.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5488364193634119 V
+Eta Concentration : 0.03393827633406047 V
+Eta Ohmic : 0.17043982128264845 V
+Loss : 0.7532145169801208 V
+PEM Efficiency : 0.28047146347428153
+Power : 29.22737026572793 W
+Power-Stack : 29.22737026572793 W
+Power-Thermal : 52.93662973427207 W
+VStack : 0.4375354830198792 V
+Vcell : 0.4375354830198792 V
+###########
+I :66.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5489354888658049 V
+Eta Concentration : 0.034115073713045854 V
+Eta Ohmic : 0.17084339244835525 V
+Loss : 0.753893955027206 V
+PEM Efficiency : 0.2800359262646115
+Power : 29.225669408679916 W
+Power-Stack : 29.225669408679916 W
+Power-Thermal : 53.061330591320086 W
+VStack : 0.43685604497279396 V
+Vcell : 0.43685604497279396 V
+###########
+I :67.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5490344103927844 V
+Eta Concentration : 0.034293846522615835 V
+Eta Ohmic : 0.17124769423793376 V
+Loss : 0.754575951153334 V
+PEM Efficiency : 0.27959874926068334
+Power : 29.223661272726623 W
+Power-Stack : 29.223661272726623 W
+Power-Thermal : 53.18633872727338 W
+VStack : 0.436174048846666 V
+Vcell : 0.436174048846666 V
+###########
+I :67.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5491331843857392 V
+Eta Concentration : 0.03447463940667877 V
+Eta Ohmic : 0.17165272835702977 V
+Loss : 0.7552605521494477 V
+PEM Efficiency : 0.2791599024683028
+Power : 29.221341950772057 W
+Power-Stack : 29.221341950772057 W
+Power-Thermal : 53.31165804922794 W
+VStack : 0.4354894478505523 V
+Vcell : 0.4354894478505523 V
+###########
+I :67.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5492318112840857 V
+Eta Concentration : 0.03465749853985675 V
+Eta Ohmic : 0.17205849651423533 V
+Loss : 0.7559478063381778 V
+PEM Efficiency : 0.2787193549114244
+Power : 29.21870741407445 W
+Power-Stack : 29.21870741407445 W
+Power-Thermal : 53.437292585925555 W
+VStack : 0.43480219366182216 V
+Vcell : 0.43480219366182216 V
+###########
+I :67.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.54933029152528 V
+Eta Concentration : 0.034842471698273945 V
+Eta Ohmic : 0.17246500042109342 V
+Loss : 0.7566377636446474 V
+PEM Efficiency : 0.2782770745867645
+Power : 29.215753506715227 W
+Power-Stack : 29.215753506715227 W
+Power-Thermal : 53.563246493284765 W
+VStack : 0.43411223635535257 V
+Vcell : 0.43411223635535257 V
+###########
+I :67.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5494286255448302 V
+Eta Concentration : 0.03502960833448502 V
+Eta Ohmic : 0.17287224179210176 V
+Loss : 0.757330475671417 V
+PEM Efficiency : 0.2778330284157583
+Power : 29.212475939746497 W
+Power-Stack : 29.212475939746497 W
+Power-Thermal : 53.68952406025351 W
+VStack : 0.433419524328583 V
+Vcell : 0.433419524328583 V
+###########
+I :67.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.549526813776307 V
+Eta Concentration : 0.03521895965683707 V
+Eta Ohmic : 0.1732802223447173 V
+Loss : 0.7580259957778613 V
+PEM Efficiency : 0.2773871821936786
+Power : 29.208870284994358 W
+Power-Stack : 29.208870284994358 W
+Power-Thermal : 53.816129715005644 W
+VStack : 0.43272400422213864 V
+Vcell : 0.43272400422213864 V
+###########
+I :67.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5496248566513552 V
+Eta Concentration : 0.0354105787135845 V
+Eta Ohmic : 0.17368894379936037 V
+Loss : 0.7587243791643001 V
+PEM Efficiency : 0.27693950053570504
+Power : 29.204931968493305 W
+Power-Stack : 29.204931968493305 W
+Power-Thermal : 53.943068031506684 W
+VStack : 0.43202562083569984 V
+Vcell : 0.43202562083569984 V
+###########
+I :67.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5497227545997061 V
+Eta Concentration : 0.035604520482102026 V
+Eta Ohmic : 0.17409840787941888 V
+Loss : 0.759425682961227 V
+PEM Efficiency : 0.2764899468197262
+Power : 29.20065626352493 W
+Power-Stack : 29.20065626352493 W
+Power-Thermal : 54.070343736475074 W
+VStack : 0.43132431703877294 V
+Vcell : 0.43132431703877294 V
+###########
+I :67.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5498205080491876 V
+Eta Concentration : 0.03580084196357103 V
+Eta Ohmic : 0.17450861631125256 V
+Loss : 0.7601299663240112 V
+PEM Efficiency : 0.27603848312563384
+Power : 29.19603828323204 W
+Power-Stack : 29.19603828323204 W
+Power-Thermal : 54.197961716767956 W
+VStack : 0.4306200336759888 V
+Vcell : 0.4306200336759888 V
+###########
+I :67.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5499181174257365 V
+Eta Concentration : 0.035999602283547975 V
+Eta Ohmic : 0.17491957082419737 V
+Loss : 0.7608372905334818 V
+PEM Efficiency : 0.27558507017084494
+Power : 29.191072972776585 W
+Power-Stack : 29.191072972776585 W
+Power-Thermal : 54.32592702722342 W
+VStack : 0.42991270946651816 V
+Vcell : 0.42991270946651816 V
+###########
+I :68.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5500155831534085 V
+Eta Concentration : 0.03620086279885773 V
+Eta Ohmic : 0.1753312731505694 V
+Loss : 0.7615477191028356 V
+PEM Efficiency : 0.275129667241772
+Power : 29.185755101007178 W
+Power-Stack : 29.185755101007178 W
+Power-Thermal : 54.45424489899282 W
+VStack : 0.4292022808971644 V
+Vcell : 0.4292022808971644 V
+###########
+I :68.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5501129056543901 V
+Eta Concentration : 0.03640468721129658 V
+Eta Ohmic : 0.17574372502566962 V
+Loss : 0.7622613178913562 V
+PEM Efficiency : 0.2746722321209255
+Power : 29.180079251598638 W
+Power-Stack : 29.180079251598638 W
+Power-Thermal : 54.58292074840136 W
+VStack : 0.42848868210864377 V
+Vcell : 0.42848868210864377 V
+###########
+I :68.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5502100853490095 V
+Eta Concentration : 0.03661114168867114 V
+Eta Ohmic : 0.17615692818778783 V
+Loss : 0.7629781552254685 V
+PEM Efficiency : 0.27421272100931504
+Power : 29.174039813623047 W
+Power-Stack : 29.174039813623047 W
+Power-Thermal : 54.711960186376956 W
+VStack : 0.42777184477453145 V
+Vcell : 0.42777184477453145 V
+###########
+I :68.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5503071226557468 V
+Eta Concentration : 0.036820294993748774 V
+Eta Ohmic : 0.17657088437820692 V
+Loss : 0.7636983020277024 V
+PEM Efficiency : 0.2737510884437805
+Power : 29.167630971507922 W
+Power-Stack : 29.167630971507922 W
+Power-Thermal : 54.841369028492075 W
+VStack : 0.4270516979722976 V
+Vcell : 0.4270516979722976 V
+###########
+I :68.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5504040179912459 V
+Eta Concentration : 0.037032218621749116 V
+Eta Ohmic : 0.17698559534120742 V
+Loss : 0.7644218319542024 V
+PEM Efficiency : 0.2732872872088446
+Power : 29.160846694332555 W
+Power-Stack : 29.160846694332555 W
+Power-Thermal : 54.97115330566745 W
+VStack : 0.42632816804579754 V
+Vcell : 0.42632816804579754 V
+###########
+I :68.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5505007717703243 V
+Eta Concentration : 0.037246986947063354 V
+Eta Ohmic : 0.1774010628240717 V
+Loss : 0.7651488215414592 V
+PEM Efficiency : 0.2728212682426543
+Power : 29.15368072441004 W
+Power-Stack : 29.15368072441004 W
+Power-Thermal : 55.10131927558996 W
+VStack : 0.42560117845854073 V
+Vcell : 0.42560117845854073 V
+###########
+I :68.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5505973844059842 V
+Eta Concentration : 0.03746467737995581 V
+Eta Ohmic : 0.17781728857708823 V
+Loss : 0.7658793503630282 V
+PEM Efficiency : 0.27235298053652035
+Power : 29.14612656509626 W
+Power-Stack : 29.14612656509626 W
+Power-Thermal : 55.23187343490373 W
+VStack : 0.42487064963697174 V
+Vcell : 0.42487064963697174 V
+###########
+I :68.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5506938563094227 V
+Eta Concentration : 0.03768537053407319 V
+Eta Ohmic : 0.178234274353556 V
+Loss : 0.7666135011970518 V
+PEM Efficiency : 0.2718823710275308
+Power : 29.13817746776254 W
+Power-Stack : 29.13817746776254 W
+Power-Thermal : 55.362822532237466 W
+VStack : 0.4241364988029481 V
+Vcell : 0.4241364988029481 V
+###########
+I :68.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5507901878900431 V
+Eta Concentration : 0.03790915040566902 V
+Eta Ohmic : 0.17865202190978863 V
+Loss : 0.7673513602055007 V
+PEM Efficiency : 0.27140938448365337
+Power : 29.12982641786155 W
+Power-Stack : 29.12982641786155 W
+Power-Thermal : 55.494173582138444 W
+VStack : 0.4233986397944993 V
+Vcell : 0.4233986397944993 V
+###########
+I :68.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5508863795554646 V
+Eta Concentration : 0.038136104565540355 V
+Eta Ohmic : 0.17907053300511905 V
+Loss : 0.768093017126124 V
+PEM Efficiency : 0.2709339633806897
+Power : 29.12106612001006 W
+Power-Stack : 29.12106612001006 W
+Power-Thermal : 55.62593387998995 W
+VStack : 0.422656982873876 V
+Vcell : 0.422656982873876 V
+###########
+I :69.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5509824317115326 V
+Eta Concentration : 0.03836632436477393 V
+Eta Ohmic : 0.1794898094019038 V
+Loss : 0.7688385654782103 V
+PEM Efficiency : 0.270456047770378
+Power : 29.11188898200349 W
+Power-Stack : 29.11188898200349 W
+Power-Thermal : 55.75811101799651 W
+VStack : 0.4219114345217897 V
+Vcell : 0.4219114345217897 V
+###########
+I :69.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5510783447623295 V
+Eta Concentration : 0.038599905155512364 V
+Eta Ohmic : 0.17990985286552708 V
+Loss : 0.769588102783369 V
+PEM Efficiency : 0.26997557513886605
+Power : 29.1022870976692 W
+Power-Stack : 29.1022870976692 W
+Power-Thermal : 55.89071290233079 W
+VStack : 0.421161897216631 V
+Vcell : 0.421161897216631 V
+###########
+I :69.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5511741191101849 V
+Eta Concentration : 0.038836946528074644 V
+Eta Ohmic : 0.18033066516440563 V
+Loss : 0.7703417308026652 V
+PEM Efficiency : 0.26949248025470174
+Power : 29.092252228455568 W
+Power-Stack : 29.092252228455568 W
+Power-Thermal : 56.023747771544436 W
+VStack : 0.42040826919733476 V
+Vcell : 0.42040826919733476 V
+###########
+I :69.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5512697551556844 V
+Eta Concentration : 0.03907755256590726 V
+Eta Ohmic : 0.1807522480699926 V
+Loss : 0.7710995557915843 V
+PEM Efficiency : 0.26900669500539465
+Power : 29.081775783643206 W
+Power-Stack : 29.081775783643206 W
+Power-Thermal : 56.15722421635679 W
+VStack : 0.4196504442084157 V
+Vcell : 0.4196504442084157 V
+###########
+I :69.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5513652532976822 V
+Eta Concentration : 0.03932183211999989 V
+Eta Ohmic : 0.1811746033567822 V
+Loss : 0.7718616887744641 V
+PEM Efficiency : 0.26851814822149733
+Power : 29.07084879905219 W
+Power-Stack : 29.07084879905219 W
+Power-Thermal : 56.291151200947816 W
+VStack : 0.4188883112255358 V
+Vcell : 0.4188883112255358 V
+###########
+I :69.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5514606139333083 V
+Eta Concentration : 0.03956989910457534 V
+Eta Ohmic : 0.1815977328023143 V
+Loss : 0.7726282458401978 V
+PEM Efficiency : 0.2680267654870526
+Power : 29.059461914106247 W
+Power-Stack : 29.059461914106247 W
+Power-Thermal : 56.42553808589375 W
+VStack : 0.41812175415980213 V
+Vcell : 0.41812175415980213 V
+###########
+I :69.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5515558374579805 V
+Eta Concentration : 0.03982187281606554 V
+Eta Ohmic : 0.18202163818717843 V
+Loss : 0.7733993484612245 V
+PEM Efficiency : 0.26753246893511246
+Power : 29.04760534709877 W
+Power-Stack : 29.04760534709877 W
+Power-Thermal : 56.56039465290122 W
+VStack : 0.4173506515387755 V
+Vcell : 0.4173506515387755 V
+###########
+I :69.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.551650924265413 V
+Eta Concentration : 0.040077878277608614 V
+Eta Ohmic : 0.18244632129501864 V
+Loss : 0.7741751238380401 V
+PEM Efficiency : 0.26703517702689733
+Power : 29.035268868488604 W
+Power-Stack : 29.035268868488604 W
+Power-Thermal : 56.6957311315114 W
+VStack : 0.4165748761619599 V
+Vcell : 0.4165748761619599 V
+###########
+I :69.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5517458747476267 V
+Eta Concentration : 0.04033804661155707 V
+Eta Ohmic : 0.18287178391253747 V
+Loss : 0.7749557052717212 V
+PEM Efficiency : 0.2665348043129992
+Power : 29.022441772033858 W
+Power-Stack : 29.022441772033858 W
+Power-Thermal : 56.831558227966134 W
+VStack : 0.4157942947282788 V
+Vcell : 0.4157942947282788 V
+###########
+I :69.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5518406892949592 V
+Eta Concentration : 0.040602515442776474 V
+Eta Ohmic : 0.18329802782950086 V
+Loss : 0.7757412325672366 V
+PEM Efficiency : 0.2660312611748483
+Power : 29.009112843550163 W
+Power-Stack : 29.009112843550163 W
+Power-Thermal : 56.96788715644984 W
+VStack : 0.4150087674327634 V
+Vcell : 0.4150087674327634 V
+###########
+I :70.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5519353682960735 V
+Eta Concentration : 0.040871429335838566 V
+Eta Ohmic : 0.18372505483874224 V
+Loss : 0.7765318524706543 V
+PEM Efficiency : 0.26552445354445237
+Power : 28.9952703270542 W
+Power-Stack : 28.9952703270542 W
+Power-Thermal : 57.1047296729458 W
+VStack : 0.4142181475293457 V
+Vcell : 0.4142181475293457 V
+###########
+I :70.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5520299121379679 V
+Eta Concentration : 0.04114494026958733 V
+Eta Ohmic : 0.18415286673616718 V
+Loss : 0.7773277191437225 V
+PEM Efficiency : 0.2650142826001779
+Power : 28.980901888025052 W
+Power-Stack : 28.980901888025052 W
+Power-Thermal : 57.24209811197494 W
+VStack : 0.4134222808562775 V
+Vcell : 0.4134222808562775 V
+###########
+I :70.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5521243212059868 V
+Eta Concentration : 0.04142320815297727 V
+Eta Ohmic : 0.18458146532075798 V
+Loss : 0.7781289946797221 V
+PEM Efficiency : 0.26450064443607557
+Power : 28.96599457348351 W
+Power-Stack : 28.96599457348351 W
+Power-Thermal : 57.38000542651649 W
+VStack : 0.4126210053202779 V
+Vcell : 0.4126210053202779 V
+###########
+I :70.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5522185958838277 V
+Eta Concentration : 0.04170640138656768 V
+Eta Ohmic : 0.18501085239457776 V
+Loss : 0.7789358496649731 V
+PEM Efficiency : 0.26398342970194033
+Power : 28.950534768552387 W
+Power-Stack : 28.950534768552387 W
+Power-Thermal : 57.51846523144761 W
+VStack : 0.4118141503350269 V
+Vcell : 0.4118141503350269 V
+###########
+I :70.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5523127365535526 V
+Eta Concentration : 0.04199469747461057 V
+Eta Ohmic : 0.1854410297627755 V
+Loss : 0.7797484637909387 V
+PEM Efficiency : 0.26346252321093677
+Power : 28.93450814911792 W
+Power-Stack : 28.93450814911792 W
+Power-Thermal : 57.65749185088209 W
+VStack : 0.4110015362090613 V
+Vcell : 0.4110015362090613 V
+###########
+I :70.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5524067435955964 V
+Eta Concentration : 0.04228828369330168 V
+Eta Ohmic : 0.1858719992335898 V
+Loss : 0.7805670265224879 V
+PEM Efficiency : 0.2629378035112257
+Power : 28.9178996301646 W
+Power-Stack : 28.9178996301646 W
+Power-Thermal : 57.7971003698354 W
+VStack : 0.4101829734775121 V
+Vcell : 0.4101829734775121 V
+###########
+I :70.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5525006173887761 V
+Eta Concentration : 0.042587357821496113 V
+Eta Ohmic : 0.1863037626183543 V
+Loss : 0.7813917378286266 V
+PEM Efficiency : 0.26240914241754704
+Power : 28.90069330929896 W
+Power-Stack : 28.90069330929896 W
+Power-Thermal : 57.937306690701035 W
+VStack : 0.4093582621713734 V
+Vcell : 0.4093582621713734 V
+###########
+I :70.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5525943583103005 V
+Eta Concentration : 0.04289212894102724 V
+Eta Ohmic : 0.18673632173150168 V
+Loss : 0.7822228089828294 V
+PEM Efficiency : 0.2618764044981863
+Power : 28.882872404913964 W
+Power-Stack : 28.882872404913964 W
+Power-Thermal : 58.07812759508604 W
+VStack : 0.4085271910171706 V
+Vcell : 0.4085271910171706 V
+###########
+I :70.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5526879667357785 V
+Eta Concentration : 0.043202818314740855 V
+Eta Ohmic : 0.187169678390568 V
+Loss : 0.7830604634410873 V
+PEM Efficiency : 0.26133944651212354
+Power : 28.86441918837102 W
+Power-Stack : 28.86441918837102 W
+Power-Thermal : 58.21958081162898 W
+VStack : 0.4076895365589127 V
+Vcell : 0.4076895365589127 V
+###########
+I :70.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5527814430392289 V
+Eta Concentration : 0.04351966035147977 V
+Eta Ohmic : 0.18760383441619774 V
+Loss : 0.7839049378069065 V
+PEM Efficiency : 0.2607981167904445
+Power : 28.84531490949033 W
+Power-Stack : 28.84531490949033 W
+Power-Thermal : 58.361685090509674 W
+VStack : 0.40684506219309347 V
+Vcell : 0.40684506219309347 V
+###########
+I :71.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.552874787593089 V
+Eta Concentration : 0.04384290366856005 V
+Eta Ohmic : 0.18803879163214798 V
+Loss : 0.784756482893797 V
+PEM Efficiency : 0.26025225455525836
+Power : 28.825539714540415 W
+Power-Stack : 28.825539714540415 W
+Power-Thermal : 58.50446028545959 W
+VStack : 0.405993517106203 V
+Vcell : 0.405993517106203 V
+###########
+I :71.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5529680007682231 V
+Eta Concentration : 0.044172812263803804 V
+Eta Ohmic : 0.1884745518652932 V
+Loss : 0.78561536489732 V
+PEM Efficiency : 0.2597016891683846
+Power : 28.805072555800546 W
+Power-Stack : 28.805072555800546 W
+Power-Thermal : 58.647927444199446 W
+VStack : 0.40513463510268 V
+Vcell : 0.40513463510268 V
+###########
+I :71.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5530610829339323 V
+Eta Concentration : 0.04450966681096916 V
+Eta Ohmic : 0.18891111694562993 V
+Loss : 0.7864818666905313 V
+PEM Efficiency : 0.25914623930094144
+Power : 28.783891091634167 W
+Power-Stack : 28.783891091634167 W
+Power-Thermal : 58.79210890836583 W
+VStack : 0.40426813330946865 V
+Vcell : 0.40426813330946865 V
+###########
+I :71.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5531540344579625 V
+Eta Concentration : 0.044853766094504546 V
+Eta Ohmic : 0.18934848870628077 V
+Loss : 0.7873562892587478 V
+PEM Efficiency : 0.2585857120136232
+Power : 28.76197157585128 W
+Power-Stack : 28.76197157585128 W
+Power-Thermal : 58.937028424148714 W
+VStack : 0.4033937107412522 V
+Vcell : 0.4033937107412522 V
+###########
+I :71.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5532468557065134 V
+Eta Concentration : 0.045205428602004966 V
+Eta Ohmic : 0.1897866689834998 V
+Loss : 0.7882389532920182 V
+PEM Efficiency : 0.25801990173588574
+Power : 28.739288734949902 W
+Power-Stack : 28.739288734949902 W
+Power-Thermal : 59.08271126505011 W
+VStack : 0.40251104670798177 V
+Vcell : 0.40251104670798177 V
+###########
+I :71.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.553339547044247 V
+Eta Concentration : 0.04556499429563792 V
+Eta Ohmic : 0.1902256596166765 V
+Loss : 0.7891302009565614 V
+PEM Efficiency : 0.25744858913040936
+Power : 28.71581563160586 W
+Power-Stack : 28.71581563160586 W
+Power-Thermal : 59.22918436839414 W
+VStack : 0.4016197990434386 V
+Vcell : 0.4016197990434386 V
+###########
+I :71.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5534321088342968 V
+Eta Concentration : 0.04593282658723306 V
+Eta Ohmic : 0.1906654624483407 V
+Loss : 0.7900303978698706 V
+PEM Efficiency : 0.256871539827006
+Power : 28.69152351251726 W
+Power-Stack : 28.69152351251726 W
+Power-Thermal : 59.37647648748273 W
+VStack : 0.40071960213012936 V
+Vcell : 0.40071960213012936 V
+###########
+I :71.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5535245414382752 V
+Eta Concentration : 0.04630931454579618 V
+Eta Ohmic : 0.19110607932416734 V
+Loss : 0.7909399353082388 V
+PEM Efficiency : 0.2562885030075392
+Power : 28.666381638399276 W
+Power-Stack : 28.666381638399276 W
+Power-Thermal : 59.52461836160072 W
+VStack : 0.39981006469176117 V
+Vcell : 0.39981006469176117 V
+###########
+I :71.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5536168452162828 V
+Eta Concentration : 0.0466948753710611 V
+Eta Ohmic : 0.19154751209298052 V
+Loss : 0.7918592326803244 V
+PEM Efficiency : 0.2556992098203048
+Power : 28.6403570935527 W
+Power-Stack : 28.6403570935527 W
+Power-Thermal : 59.67364290644729 W
+VStack : 0.39889076731967554 V
+Vcell : 0.39889076731967554 V
+###########
+I :71.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5537090205269171 V
+Eta Concentration : 0.0470899571725071 V
+Eta Ohmic : 0.19198976260675898 V
+Loss : 0.7927887403061832 V
+PEM Efficiency : 0.25510337159860047
+Power : 28.61341457198543 W
+Power-Stack : 28.61341457198543 W
+Power-Thermal : 59.823585428014574 W
+VStack : 0.3979612596938168 V
+Vcell : 0.3979612596938168 V
+###########
+I :72.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5538010677272799 V
+Eta Concentration : 0.04749504210025572 V
+Eta Ohmic : 0.1924328327206399 V
+Loss : 0.7937289425481755 V
+PEM Efficiency : 0.2545006778537336
+Power : 28.58551613653136 W
+Power-Stack : 28.58551613653136 W
+Power-Thermal : 59.974483863468635 W
+VStack : 0.3970210574518245 V
+Vcell : 0.3970210574518245 V
+###########
+I :72.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5538929871729863 V
+Eta Concentration : 0.047910649882707844 V
+Eta Ohmic : 0.19287672429292435 V
+Loss : 0.7946803613486185 V
+PEM Efficiency : 0.2538907940072958
+Power : 28.5566209467646 W
+Power-Stack : 28.5566209467646 W
+Power-Thermal : 60.12637905323539 W
+VStack : 0.39606963865138145 V
+Vcell : 0.39606963865138145 V
+###########
+I :72.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5539847792181727 V
+Eta Concentration : 0.04833734183602248 V
+Eta Ohmic : 0.19332143918508152 V
+Loss : 0.7956435602392766 V
+PEM Efficiency : 0.2532733588209765
+Power : 28.526684950724228 W
+Power-Stack : 28.526684950724228 W
+Power-Thermal : 60.27931504927577 W
+VStack : 0.39510643976072335 V
+Vcell : 0.39510643976072335 V
+###########
+I :72.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5540764442155051 V
+Eta Concentration : 0.0487757254230323 V
+Eta Ohmic : 0.1937669792617531 V
+Loss : 0.7966191489002905 V
+PEM Efficiency : 0.2526479814741727
+Power : 28.495660534508993 W
+Power-Stack : 28.495660534508993 W
+Power-Thermal : 60.433339465491 W
+VStack : 0.39413085109970947 V
+Vcell : 0.39413085109970947 V
+###########
+I :72.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5541679825161872 V
+Eta Concentration : 0.0492264594544995 V
+Eta Ohmic : 0.1942133463907589 V
+Loss : 0.7976077883614456 V
+PEM Efficiency : 0.2520142382298425
+Power : 28.463496122631337 W
+Power-Stack : 28.463496122631337 W
+Power-Thermal : 60.588503877368666 W
+VStack : 0.39314221163855434 V
+Vcell : 0.39314221163855434 V
+###########
+I :72.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5542593944699682 V
+Eta Concentration : 0.04969026004447149 V
+Eta Ohmic : 0.19466054244310055 V
+Loss : 0.7986101969575403 V
+PEM Efficiency : 0.2513716686169613
+Power : 28.430135720578324 W
+Power-Stack : 28.430135720578324 W
+Power-Thermal : 60.74486427942168 W
+VStack : 0.39213980304245966 V
+Vcell : 0.39213980304245966 V
+###########
+I :72.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5543506804251513 V
+Eta Concentration : 0.050167907454866364 V
+Eta Ohmic : 0.19510856929296722 V
+Loss : 0.7996271571729848 V
+PEM Efficiency : 0.25071977104295845
+Power : 28.395518389241296 W
+Power-Stack : 28.395518389241296 W
+Power-Thermal : 60.90248161075869 W
+VStack : 0.39112284282701515 V
+Vcell : 0.39112284282701515 V
+###########
+I :72.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5544418407286016 V
+Eta Concentration : 0.050660253993534445 V
+Eta Ohmic : 0.19555742881773933 V
+Loss : 0.8006595235398754 V
+PEM Efficiency : 0.2500579977308491
+Power : 28.35957763865106 W
+Power-Stack : 28.35957763865106 W
+Power-Thermal : 61.06142236134894 W
+VStack : 0.3900904764601246 V
+Vcell : 0.3900904764601246 V
+###########
+I :72.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5545328757257533 V
+Eta Concentration : 0.05116823316656772 V
+Eta Ohmic : 0.19600712289799402 V
+Loss : 0.801708231790315 V
+PEM Efficiency : 0.24938574885236212
+Power : 28.32224072566506 W
+Power-Stack : 28.32224072566506 W
+Power-Thermal : 61.221759274334936 W
+VStack : 0.38904176820968495 V
+Vcell : 0.38904176820968495 V
+###########
+I :72.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5546237857606183 V
+Eta Concentration : 0.05169287033173564 V
+Eta Ohmic : 0.19645765341750968 V
+Loss : 0.8027743095098636 V
+PEM Efficiency : 0.24870236569880536
+Power : 28.283427836730944 W
+Power-Stack : 28.283427836730944 W
+Power-Thermal : 61.383572163269065 W
+VStack : 0.38797569049013636 V
+Vcell : 0.38797569049013636 V
+###########
+I :73.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5547145711757941 V
+Eta Concentration : 0.05223529515854648 V
+Eta Ohmic : 0.1969090222632704 V
+Loss : 0.803858888597611 V
+PEM Efficiency : 0.24800712269383907
+Power : 28.243051132374394 W
+Power-Stack : 28.243051132374394 W
+Power-Thermal : 61.5469488676256 W
+VStack : 0.38689111140238897 V
+Vcell : 0.38689111140238897 V
+###########
+I :73.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5548052323124709 V
+Eta Concentration : 0.05279675627552678 V
+Eta Ohmic : 0.1973612313254713 V
+Loss : 0.804963219913469 V
+PEM Efficiency : 0.24729921800418653
+Power : 28.201013624325412 W
+Power-Stack : 28.201013624325412 W
+Power-Thermal : 61.71198637567458 W
+VStack : 0.385786780086531 V
+Vcell : 0.385786780086531 V
+###########
+I :73.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5548957695104396 V
+Eta Concentration : 0.05337863858226086 V
+Eta Ohmic : 0.19781428249752323 V
+Loss : 0.8060886905902237 V
+PEM Efficiency : 0.24657776244216428
+Power : 28.157207848795625 W
+Power-Stack : 28.157207848795625 W
+Power-Thermal : 61.87879215120438 W
+VStack : 0.3846613094097763 V
+Vcell : 0.3846613094097763 V
+###########
+I :73.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5549861831080996 V
+Eta Concentration : 0.053982483829986334 V
+Eta Ohmic : 0.19826817767605667 V
+Loss : 0.8072368446141426 V
+PEM Efficiency : 0.2458417662729855
+Power : 28.111514289783347 W
+Power-Stack : 28.111514289783347 W
+Power-Thermal : 62.04748571021665 W
+VStack : 0.3835131553858574 V
+Vcell : 0.3835131553858574 V
+###########
+I :73.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5550764734424662 V
+Eta Concentration : 0.05461001524043887 V
+Eta Ohmic : 0.19872291876092812 V
+Loss : 0.8084094074438332 V
+PEM Efficiency : 0.24509012343344025
+Power : 28.063799493622646 W
+Power-Stack : 28.063799493622646 W
+Power-Thermal : 62.21820050637736 W
+VStack : 0.3823405925561668 V
+Vcell : 0.3823405925561668 V
+###########
+I :73.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5551666408491783 V
+Eta Concentration : 0.055263167152762985 V
+Eta Ohmic : 0.19917850765522324 V
+Loss : 0.8096083156571646 V
+PEM Efficiency : 0.24432159252745853
+Power : 28.0139137991984 W
+Power-Stack : 28.0139137991984 W
+Power-Thermal : 62.3910862008016 W
+VStack : 0.38114168434283535 V
+Vcell : 0.38114168434283535 V
+###########
+I :73.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5552566856625056 V
+Eta Concentration : 0.055944120983463644 V
+Eta Ohmic : 0.19963494626526285 V
+Loss : 0.8108357529112322 V
+PEM Efficiency : 0.2435347737748511
+Power : 27.961688585733306 W
+Power-Stack : 27.961688585733306 W
+Power-Thermal : 62.566311414266686 W
+VStack : 0.37991424708876775 V
+Vcell : 0.37991424708876775 V
+###########
+I :73.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5553466082153564 V
+Eta Concentration : 0.05665534918459702 V
+Eta Ohmic : 0.2000922365006074 V
+Loss : 0.8120941939005608 V
+PEM Efficiency : 0.2427280808329738
+Power : 27.906932909528667 W
+Power-Stack : 27.906932909528667 W
+Power-Thermal : 62.74406709047133 W
+VStack : 0.37865580609943916 V
+Vcell : 0.37865580609943916 V
+###########
+I :73.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5554364088392845 V
+Eta Concentration : 0.05739966943475521 V
+Eta Ohmic : 0.20055038027406144 V
+Loss : 0.8133864585481011 V
+PEM Efficiency : 0.2418997060589095
+Power : 27.849429359150136 W
+Power-Stack : 27.849429359150136 W
+Power-Thermal : 62.92457064084986 W
+VStack : 0.3773635414518989 V
+Vcell : 0.3773635414518989 V
+###########
+I :73.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.555526087864497 V
+Eta Concentration : 0.058180312061466226 V
+Eta Ohmic : 0.20100937950167944 V
+Loss : 0.8147157794276426 V
+PEM Efficiency : 0.24104757728997267
+Power : 27.78892890029721 W
+Power-Stack : 27.78892890029721 W
+Power-Thermal : 63.1080710997028 W
+VStack : 0.37603422057235736 V
+Vcell : 0.37603422057235736 V
+###########
+I :74.0 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5556156456198617 V
+Eta Concentration : 0.059001004771667004 V
+Eta Ohmic : 0.20146923610276918 V
+Loss : 0.8160858864942978 V
+PEM Efficiency : 0.24016930352929625
+Power : 27.72514439942196 W
+Power-Stack : 27.72514439942196 W
+Power-Thermal : 63.29485560057804 W
+VStack : 0.37466411350570217 V
+Vcell : 0.37466411350570217 V
+###########
+I :74.1 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5557050824329135 V
+Eta Concentration : 0.05986608031199131 V
+Eta Ohmic : 0.20192995199989816 V
+Loss : 0.817501114744803 V
+PEM Efficiency : 0.23926210593281855
+Power : 27.657742397410093 W
+Power-Stack : 27.657742397410093 W
+Power-Thermal : 63.4852576025899 W
+VStack : 0.37324888525519695 V
+Vcell : 0.37324888525519695 V
+###########
+I :74.2 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5557943986298626 V
+Eta Concentration : 0.06078061493343061 V
+Eta Ohmic : 0.2023915291188977 V
+Loss : 0.8189665426821908 V
+PEM Efficiency : 0.23832272904987767
+Power : 27.58633253298144 W
+Power-Stack : 27.58633253298144 W
+Power-Thermal : 63.67966746701856 W
+VStack : 0.37178345731780915 V
+Vcell : 0.37178345731780915 V
+###########
+I :74.3 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5558835945356011 V
+Eta Concentration : 0.061750608882493535 V
+Eta Ohmic : 0.20285396938886757 V
+Loss : 0.8204881728069622 V
+PEM Efficiency : 0.23734732512374218
+Power : 27.510453760442708 W
+Power-Stack : 27.510453760442708 W
+Power-Thermal : 63.87854623955729 W
+VStack : 0.3702618271930378 V
+Vcell : 0.3702618271930378 V
+###########
+I :74.4 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5559726704737098 V
+Eta Concentration : 0.06278322522069481 V
+Eta Ohmic : 0.2033172747421816 V
+Loss : 0.8220731704365862 V
+PEM Efficiency : 0.2363313010021883
+Power : 27.429556119517983 W
+Power-Stack : 27.429556119517983 W
+Power-Thermal : 64.08244388048202 W
+VStack : 0.36867682956341374 V
+Vcell : 0.36867682956341374 V
+###########
+I :74.5 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5560616267664661 V
+Eta Concentration : 0.06388711116448591 V
+Eta Ohmic : 0.20378144711449195 V
+Loss : 0.8237301850454439 V
+PEM Efficiency : 0.23526911215035642
+Power : 27.342976214114426 W
+Power-Stack : 27.342976214114426 W
+Power-Thermal : 64.29202378588558 W
+VStack : 0.36701981495455605 V
+Vcell : 0.36701981495455605 V
+###########
+I :74.6 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5561504637348502 V
+Eta Concentration : 0.06507283871894541 V
+Eta Ohmic : 0.20424648844473495 V
+Loss : 0.8254697908985306 V
+PEM Efficiency : 0.23415398019324962
+Power : 27.249903598969617 W
+Power-Stack : 27.249903598969617 W
+Power-Thermal : 64.50809640103037 W
+VStack : 0.3652802091014694 V
+Vcell : 0.3652802091014694 V
+###########
+I :74.7 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5562391816985526 V
+Eta Concentration : 0.06635352204172205 V
+Eta Ohmic : 0.20471240067513477 V
+Loss : 0.8273051044154094 V
+PEM Efficiency : 0.23297749716960936
+Power : 27.149333700168917 W
+Power-Stack : 27.149333700168917 W
+Power-Thermal : 64.73166629983109 W
+VStack : 0.3634448955845906 V
+Vcell : 0.3634448955845906 V
+###########
+I :74.8 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5563277809759803 V
+Eta Concentration : 0.06774570407355608 V
+Eta Ohmic : 0.20517918575120941 V
+Loss : 0.8292526708007458 V
+PEM Efficiency : 0.23172905717900907
+Power : 27.040000224104208 W
+Power-Stack : 27.040000224104208 W
+Power-Thermal : 64.96399977589579 W
+VStack : 0.36149732919925415 V
+Vcell : 0.36149732919925415 V
+###########
+I :74.9 A
+
+Enernst : 1.19075 V
+Eta Activation : 0.5564162618842647 V
+Eta Concentration : 0.06927066695042548 V
+Eta Ohmic : 0.20564684562177526 V
+Loss : 0.8313337744564655 V
+PEM Efficiency : 0.23039501637406054
+Power : 26.920275293210736 W
+Power-Stack : 26.920275293210736 W
+Power-Thermal : 65.20672470678927 W
+VStack : 0.3594162255435345 V
+Vcell : 0.3594162255435345 V
+###########
diff --git a/Documents/Chamberline-Kim/Chamberline_Test.csv b/Documents/Chamberline-Kim/Chamberline_Test.csv
new file mode 100644
index 00000000..b78e6657
--- /dev/null
+++ b/Documents/Chamberline-Kim/Chamberline_Test.csv
@@ -0,0 +1,416 @@
+I (A),PEM Efficiency (),Power (W),Power-Stack (W),Power-Thermal (W),VStack (V),Vcell (V)
+1,0.797966269201884,1.244827379954939,1.244827379954939,-0.01482737995493899,1.244827379954939,1.244827379954939
+1.1,0.7933343765568479,1.3613617901715511,1.3613617901715511,-0.008361790171551031,1.2376016274286827,1.2376016274286827
+1.2,0.7890689791314186,1.4771371289340156,1.4771371289340156,-0.0011371289340155854,1.230947607445013,1.230947607445013
+1.3,0.7851113286904084,1.5922057745841485,1.5922057745841485,0.006794225415851485,1.2247736727570373,1.2247736727570373
+1.4,0.7814157591393215,1.706612017960278,1.706612017960278,0.015387982039721892,1.2190085842573415,1.2190085842573415
+1.5,0.7779460692405816,1.820393802022961,1.820393802022961,0.02460619797703889,1.2135958680153074,1.2135958680153074
+1.6,0.7746730751436158,1.933583995558465,1.933583995558465,0.03441600444153501,1.2084899972240406,1.2084899972240406
+1.7,0.771572906202878,2.0462113472500323,2.0462113472500323,0.04478865274996757,1.2036537336764896,1.2036537336764896
+1.8,0.7686257886450131,2.158301214515197,2.158301214515197,0.055698785484803184,1.1990562302862204,1.1990562302862204
+1.9,0.7658151585364871,2.2698761299021477,2.2698761299021477,0.06712387009785219,1.1946716473169199,1.1946716473169199
+2.0,0.7631270025420254,2.380956247931119,2.380956247931119,0.07904375206888092,1.1904781239655595,1.1904781239655595
+2.1,0.7605493596935309,2.491559702356007,2.491559702356007,0.09144029764399271,1.1864570011219082,1.1864570011219082
+2.2,0.7580719391696471,2.601702895230229,2.601702895230229,0.10429710476977118,1.1825922251046495,1.1825922251046495
+2.3,0.7556858231082223,2.7114007333123014,2.7114007333123014,0.11759926668769842,1.1788698840488268,1.1788698840488268
+2.4,0.753383232714607,2.820666823283489,2.820666823283489,0.13133317671651062,1.1752778430347872,1.1752778430347872
+2.5,0.7511573421474446,2.929513634375034,2.929513634375034,0.14548636562496609,1.1718054537500135,1.1718054537500135
+2.6,0.7490021289286691,3.0379526349346824,3.0379526349346824,0.16004736506531766,1.168443321128724,1.168443321128724
+2.7,0.7469122526002784,3.145994407952373,3.145994407952373,0.17500559204762714,1.1651831140564344,1.1651831140564344
+2.8,0.7448829554595718,3.2536487494474096,3.2536487494474096,0.1903512505525901,1.162017410516932,1.162017410516932
+2.9,0.7429099807210011,3.360924752781809,3.360924752781809,0.20607524721819082,1.1589395699247618,1.1589395699247618
+3.0,0.7409895045575802,3.4678308813294754,3.4678308813294754,0.22216911867052458,1.1559436271098251,1.1559436271098251
+3.1,0.7391180792895339,3.5743750314441862,3.5743750314441862,0.23862496855581392,1.153024203691673,1.153024203691673
+3.2,0.7372925855955158,3.6805645872928157,3.6805645872928157,0.2554354127071847,1.1501764335290048,1.1501764335290048
+3.3,0.7355101920796727,3.786406468826155,3.786406468826155,0.2725935311738447,1.1473958996442895,1.1473958996442895
+3.4,0.7337683208763324,3.891907173928067,3.891907173928067,0.29009282607193304,1.1446785805670785,1.1446785805670785
+3.5,0.7320646182417239,3.9970728155998123,3.9970728155998123,0.30792718440018774,1.1420208044570892,1.1420208044570892
+3.6,0.7303969292894269,4.101909154889422,4.101909154889422,0.3260908451105779,1.1394192096915061,1.1394192096915061
+3.7,0.7287632761880597,4.206421630157481,4.206421630157481,0.3445783698425195,1.136870710853373,1.136870710853373
+3.8,0.7271618392669932,4.310615383174736,4.310615383174736,0.36338461682526346,1.1343724692565096,1.1343724692565096
+3.9,0.7255909405767029,4.414495282468661,4.414495282468661,0.38250471753133874,1.1319218672996567,1.1319218672996567
+4.0,0.7240490295307427,4.518065944271835,4.518065944271835,0.401934055728165,1.1295164860679587,1.1295164860679587
+4.1,0.7225346703208392,4.621331751372088,4.621331751372088,0.4216682486279116,1.1271540857005093,1.1271540857005093
+4.2,0.7210465308486499,4.724296870120354,4.724296870120354,0.4417031298796457,1.1248325881238939,1.1248325881238939
+4.3,0.7195833729599981,4.826965265815667,4.826965265815667,0.4620347341843329,1.122550061817597,1.122550061817597
+4.4,0.7181440438018671,4.929340716656017,4.929340716656017,0.4826592833439837,1.1203047083309128,1.1203047083309128
+4.5,0.7167274681507255,5.031426826418093,5.031426826418093,0.5035731735819069,1.1180948503151318,1.1180948503151318
+4.6,0.7153326415840507,5.133227036007147,5.133227036007147,0.524772963992852,1.115918920871119,1.115918920871119
+4.7,0.713958624386224,5.234744633999795,5.234744633999795,0.5462553660002051,1.1137754540425095,1.1137754540425095
+4.8,0.7126045360960039,5.335982766286877,5.335982766286877,0.5680172337131225,1.1116630763097661,1.1116630763097661
+4.9,0.7112695506161859,5.436944444910126,5.436944444910126,0.5900555550898744,1.10958049896125,1.10958049896125
+5.0,0.7099528918172862,5.537632556174832,5.537632556174832,0.6123674438251681,1.1075265112349664,1.1075265112349664
+5.1,0.7086538295765383,5.638049868110938,5.638049868110938,0.6349501318890608,1.1054999741393998,1.1054999741393998
+5.2,0.7073716762014743,5.7381990373463605,5.7381990373463605,0.6578009626536397,1.1034998148743,1.1034998148743
+5.3,0.7061057831941243,5.838082615449021,5.838082615449021,0.6809173845509793,1.101525021782834,1.101525021782834
+5.4,0.7048555383176273,5.937703054787692,5.937703054787692,0.7042969452123086,1.0995746397754984,1.0995746397754984
+5.5,0.70362036293195,6.03706271395613,6.03706271395613,0.7279372860438691,1.097647766173842,1.097647766173842
+5.6,0.7023997095696176,6.136163862800179,6.136163862800179,0.7518361371998207,1.0957435469286034,1.0957435469286034
+5.7,0.7011930597259557,6.235008687083197,6.235008687083197,0.7759913129168026,1.0938611731724908,1.0938611731724908
+5.8,0.6999999218414613,6.3335992928215425,6.3335992928215425,0.8004007071784568,1.0919998780726798,1.0919998780726798
+5.9,0.6988198294565888,6.431937710318444,6.431937710318444,0.8250622896815563,1.0901589339522786,1.0901589339522786
+6.0,0.6976523395215593,6.530025897921794,6.530025897921794,0.8499741020782059,1.0883376496536323,1.0883376496536323
+6.1,0.6964970308458178,6.627865745528802,6.627865745528802,0.8751342544711973,1.0865353681194758,1.0865353681194758
+6.2,0.695353502673511,6.725459077858199,6.725459077858199,0.9005409221418009,1.0847514641706772,1.0847514641706772
+6.3,0.6942213733728804,6.822807657508669,6.822807657508669,0.9261923424913306,1.0829853424616935,1.0829853424616935
+6.4,0.6931002792288085,6.919913187820424,6.919913187820424,0.9520868121795758,1.0812364355969413,1.0812364355969413
+6.5,0.6919898733289177,7.016777315555226,7.016777315555226,0.9782226844447743,1.0795042023931116,1.0795042023931116
+6.6,0.69088982453465,7.113401633408756,7.113401633408756,1.004598366591243,1.077788126274054,1.077788126274054
+6.7,0.6897998165296582,7.209787682367987,7.209787682367987,1.0312123176320125,1.0760877137862668,1.0760877137862668
+6.8,0.6887195469386326,7.3059369539250145,7.3059369539250145,1.0580630460749854,1.0744024932242668,1.0744024932242668
+6.9,0.6876487265103938,7.40185089215788,7.40185089215788,1.0851491078421207,1.0727320133562144,1.0727320133562144
+7.0,0.6865870783597003,7.497530895687927,7.497530895687927,1.1124691043120731,1.0710758422411324,1.0710758422411324
+7.1,0.6855343372627701,7.592978319522442,7.592978319522442,1.1400216804775574,1.0694335661299215,1.0694335661299215
+7.2,0.6844902490020122,7.688194476790601,7.688194476790601,1.1678055232093993,1.067804788443139,1.067804788443139
+7.3,0.6834545697558863,7.783180640380032,7.783180640380032,1.1958193596199678,1.0661891288191825,1.0661891288191825
+7.4,0.6824270655302116,7.877938044480764,7.877938044480764,1.2240619555192358,1.0645862222271303,1.0645862222271303
+7.5,0.6814075116275811,7.9724678860427,7.9724678860427,1.2525321139573005,1.0629957181390266,1.0629957181390266
+7.6,0.6803956921518519,8.066771326152356,8.066771326152356,1.281228673847643,1.061417279756889,1.061417279756889
+7.7,0.6793913995449599,8.160849491334059,8.160849491334059,1.3101505086659413,1.0598505832901375,1.0598505832901375
+7.8,0.6783944341535526,8.25470347478043,8.25470347478043,1.3392965252195708,1.0582953172795422,1.0582953172795422
+7.9,0.6774046038231637,8.348334337516672,8.348334337516672,1.368665662483329,1.0567511819641355,1.0567511819641355
+8.0,0.6764217235178417,8.441743109502665,8.441743109502665,1.3982568904973345,1.0552178886878332,1.0552178886878332
+8.1,0.6754456149633413,8.534930790676782,8.534930790676782,1.4280692093232181,1.0536951593428125,1.0536951593428125
+8.2,0.6744761063121376,8.627898351944864,8.627898351944864,1.458101648055135,1.0521827258469347,1.0521827258469347
+8.3,0.6735130318286734,8.720646736117663,8.720646736117663,1.4883532638823367,1.0506803296527305,1.0506803296527305
+8.4,0.6725562315933873,8.813176858799748,8.813176858799748,1.5188231412002529,1.0491877212856842,1.0491877212856842
+8.5,0.6716055512241837,8.905489609232676,8.905489609232676,1.5495103907673236,1.0477046599097266,1.0477046599097266
+8.6,0.6706608416141229,8.997585851095073,8.997585851095073,1.5804141489049262,1.0462309129180318,1.0462309129180318
+8.7,0.669721958684202,9.089466423261989,9.089466423261989,1.6115335767380101,1.0447662555473551,1.0447662555473551
+8.8,0.668788763150189,9.181132140525795,9.181132140525795,1.6428678594742057,1.0433104705142948,1.0433104705142948
+8.9,0.6678611203025607,9.272583794280754,9.272583794280754,1.6744162057192469,1.0418633476719947,1.0418633476719947
+9.0,0.666938899798659,9.363822153173173,9.363822153173173,1.7061778468268267,1.0404246836859081,1.0404246836859081
+9.1,0.6660219754662559,9.454847963718969,9.454847963718969,1.7381520362810312,1.0389942817273592,1.0389942817273592
+9.2,0.6651102251177778,9.545661950890349,9.545661950890349,1.7703380491096508,1.0375719511837336,1.0375719511837336
+9.3,0.6642035303744972,9.636264818673208,9.636264818673208,1.8027351813267936,1.0361575073842157,1.0361575073842157
+9.4,0.6633017765000447,9.726657250596658,9.726657250596658,1.8353427494033432,1.0347507713400699,1.0347507713400699
+9.5,0.6624048522426575,9.816839910236185,9.816839910236185,1.8681600897638149,1.0333515694985458,1.0333515694985458
+9.6,0.6615126496856034,9.906813441691597,9.906813441691597,1.9011865583084022,1.0319597335095414,1.0319597335095414
+9.7,0.6606250641052779,9.996578470041065,9.996578470041065,1.934421529958934,1.0305751000042336,1.0305751000042336
+9.8,0.6597419938364971,10.08613560177237,10.08613560177237,1.9678643982276314,1.0291975103849356,1.0291975103849356
+9.9,0.6588633401445464,10.175485425192376,10.175485425192376,2.001514574807625,1.0278268106254924,1.0278268106254924
+10.0,0.6579890071035762,10.26462851081579,10.26462851081579,2.03537148918421,1.026462851081579,1.026462851081579
+10.1,0.6571189014809643,10.353565411734074,10.353565411734074,2.069434588265925,1.0251054863103044,1.0251054863103044
+10.2,0.6562529326272898,10.442296663965434,10.442296663965434,2.103703336034564,1.0237545748985721,1.0237545748985721
+10.3,0.6553910123715884,10.530822786786683,10.530822786786683,2.1381772132133174,1.022409979299678,1.022409979299678
+10.4,0.6545330549215813,10.619144283047735,10.619144283047735,2.1728557169522653,1.0210715656776668,1.0210715656776668
+10.5,0.6536789767685893,10.707261639469493,10.707261639469493,2.207738360530506,1.0197392037589994,1.0197392037589994
+10.6,0.6528286965968656,10.79517532692577,10.79517532692577,2.242824673074229,1.0184127666911105,1.0184127666911105
+10.7,0.6519821351970941,10.882885800709897,10.882885800709897,2.278114199290103,1.017092130907467,1.017092130907467
+10.8,0.6511392153838197,10.970393500786596,10.970393500786596,2.3136064992134044,1.0157771759987588,1.0157771759987588
+10.9,0.6502998619165927,11.057698852029743,11.057698852029743,2.3493011479702575,1.0144677845898846,1.0144677845898846
+11.0,0.6494640014246192,11.144802264446467,11.144802264446467,2.385197735553533,1.013163842222406,1.013163842222406
+11.1,0.6486315623347271,11.231704133388135,11.231704133388135,2.4212958666118642,1.0118652372421744,1.0118652372421744
+11.2,0.6478024748024653,11.318404839748673,11.318404839748673,2.4575951602513255,1.010571860691846,1.010571860691846
+11.3,0.6469766706461694,11.404904750150674,11.404904750150674,2.494095249849327,1.0092836062080242,1.0092836062080242
+11.4,0.6461540832838325,11.491204217119677,11.491204217119677,2.5307957828803236,1.0080003699227786,1.0080003699227786
+11.5,0.6453346476726342,11.577303579247056,11.577303579247056,2.567696420752943,1.0067220503693093,1.0067220503693093
+11.6,0.6445183002509853,11.663203161341832,11.663203161341832,2.604796838658168,1.0054485483915372,1.0054485483915372
+11.7,0.6437049788829582,11.748903274571752,11.748903274571752,2.642096725428246,1.0041797670574149,1.0041797670574149
+11.8,0.6428946228049783,11.834404216594043,11.834404216594043,2.6795957834059583,1.0029156115757663,1.0029156115757663
+11.9,0.6420871725746595,11.919706271675981,11.919706271675981,2.7172937283240195,1.001655989216469,1.001655989216469
+12.0,0.6412825700216748,12.004809710805754,12.004809710805754,2.755190289194246,1.0004008092338128,1.0004008092338128
+12.1,0.6404807582005565,12.089714791793705,12.089714791793705,2.793285208206295,0.9991499827928682,0.9991499827928682
+12.2,0.6396816813453303,12.174421759364325,12.174421759364325,2.8315782406356735,0.9979034228987153,0.9979034228987153
+12.3,0.6388852848258906,12.25893084523919,12.25893084523919,2.87006915476081,0.9966610443283894,0.9966610443283894
+12.4,0.6380915151060293,12.343242268211034,12.343242268211034,2.9087577317889663,0.9954227635654059,0.9954227635654059
+12.5,0.6373003197030366,12.427356234209215,12.427356234209215,2.947643765790785,0.9941884987367372,0.9941884987367372
+12.6,0.6365116471487954,12.511272936356724,12.511272936356724,2.986727063643276,0.9929581695521209,0.9929581695521209
+12.7,0.6357254469522987,12.59499255501894,12.59499255501894,3.0260074449810577,0.991731697245586,0.991731697245586
+12.8,0.6349416695635154,12.678515257844277,12.678515257844277,3.0654847421557236,0.9905090045190841,0.9905090045190841
+12.9,0.6341602663385453,12.761841199796885,12.761841199796885,3.1051588002031143,0.9892900154881307,0.9892900154881307
+13.0,0.6333811895059946,12.844970523181573,12.844970523181573,3.1450294768184275,0.9880746556293517,0.9880746556293517
+13.1,0.6326043921345192,12.927903357661036,12.927903357661036,3.185096642338963,0.9868628517298501,0.9868628517298501
+13.2,0.6318298281014744,13.01063982026556,13.01063982026556,3.2253601797344382,0.9856545318383001,0.9856545318383001
+13.3,0.6310574520626222,13.093180015395285,13.093180015395285,3.2658199846047142,0.9844496252176906,0.9844496252176906
+13.4,0.6302872194228443,13.175524034815139,13.175524034815139,3.3064759651848625,0.9832480622996371,0.9832480622996371
+13.5,0.6295190863078136,13.257671957642556,13.257671957642556,3.3473280423574447,0.9820497746401893,0.9820497746401893
+13.6,0.6287530095365773,13.339623850328024,13.339623850328024,3.3883761496719744,0.9808546948770607,0.9808546948770607
+13.7,0.6279889465950115,13.421379766628586,13.421379766628586,3.4296202333714128,0.979662756688218,0.979662756688218
+13.8,0.6272268556101052,13.502939747574347,13.502939747574347,3.4710602524256546,0.9784738947517642,0.9784738947517642
+13.9,0.6264666953250331,13.584303821428017,13.584303821428017,3.5126961785719835,0.9772880447070516,0.9772880447070516
+14.0,0.6257084250749828,13.665472003637626,13.665472003637626,3.554527996362374,0.9761051431169733,0.9761051431169733
+14.1,0.6249520047637008,13.746444296782363,13.746444296782363,3.5965557032176365,0.9749251274313733,0.9749251274313733
+14.2,0.6241973948407217,13.827220690511664,13.827220690511664,3.6387793094883336,0.9737479359515258,0.9737479359515258
+14.3,0.623444556279251,13.907801161477535,13.907801161477535,3.6811988385224668,0.9725735077956317,0.9725735077956317
+14.4,0.6226934505546711,13.988185673260134,13.988185673260134,3.723814326739867,0.971401782865287,0.971401782865287
+14.5,0.6219440396236384,14.068374176286701,14.068374176286701,3.7666258237132992,0.9702327018128759,0.9702327018128759
+14.6,0.6211962859037485,14.148366607743776,14.148366607743776,3.809633392256223,0.9690662060098477,0.9690662060098477
+14.7,0.6204501522537392,14.228162891482746,14.228162891482746,3.852837108517252,0.9679022375158332,0.9679022375158332
+14.8,0.6197056019542068,14.307762937918728,14.307762937918728,3.896237062081273,0.9667407390485626,0.9667407390485626
+14.9,0.6189625986888149,14.387166643922813,14.387166643922813,3.939833356077187,0.9655816539545512,0.9655816539545512
+15.0,0.6182211065259663,14.466373892707612,14.466373892707612,3.983626107292388,0.9644249261805075,0.9644249261805075
+15.1,0.6174810899009228,14.545384553706137,14.545384553706137,4.027615446293862,0.9632705002454396,0.9632705002454396
+15.2,0.6167425135983463,14.624198482443989,14.624198482443989,4.07180151755601,0.9621183212134203,0.9621183212134203
+15.3,0.616005342735245,14.702815520404828,14.702815520404828,4.116184479595173,0.9609683346669822,0.9609683346669822
+15.4,0.6152695427443009,14.781235494889087,14.781235494889087,4.1607645051109134,0.9598204866811095,0.9598204866811095
+15.5,0.6145350793575669,14.859458218865967,14.859458218865967,4.205541781134031,0.9586747237978044,0.9586747237978044
+15.6,0.6138019185905063,14.937483490818561,14.937483490818561,4.2505165091814385,0.9575309930011898,0.9575309930011898
+15.7,0.6130700267263667,15.015311094582172,15.015311094582172,4.295688905417827,0.956389241693132,0.956389241693132
+15.8,0.6123393703008664,15.092940799175757,15.092940799175757,4.341059200824243,0.9552494176693517,0.9552494176693517
+15.9,0.6116099160871786,15.170372358626379,15.170372358626379,4.386627641373622,0.9541114690959986,0.9541114690959986
+16.0,0.6108816310811995,15.247605511786741,15.247605511786741,4.432394488213259,0.9529753444866713,0.9529753444866713
+16.1,0.6101544824870845,15.324639982145618,15.324639982145618,4.478360017854385,0.9518409926798519,0.9518409926798519
+16.2,0.6094284377030386,15.401475477631191,15.401475477631191,4.524524522368808,0.9507083628167402,0.9507083628167402
+16.3,0.6087034643073475,15.478111690407234,15.478111690407234,4.5708883095927675,0.9495774043194621,0.9495774043194621
+16.4,0.6079795300446383,15.554548296662025,15.554548296662025,4.617451703337973,0.9484480668696358,0.9484480668696358
+16.5,0.6072566028123524,15.63078495638995,15.63078495638995,4.6642150436100485,0.9473203003872698,0.9473203003872698
+16.6,0.6065346506474247,15.706821313165714,15.706821313165714,4.7111786868342875,0.9461940550099827,0.9461940550099827
+16.7,0.6058136417131522,15.782656993911042,15.782656993911042,4.758343006088957,0.9450692810725175,0.9450692810725175
+16.8,0.6050935442862435,15.85829160865387,15.85829160865387,4.805708391346131,0.9439459290865398,0.9439459290865398
+16.9,0.6043743267440375,15.933724750279803,15.933724750279803,4.853275249720195,0.9428239497206985,0.9428239497206985
+17.0,0.6036559575518805,16.00895599427587,16.00895599427587,4.901044005724129,0.9417032937809335,0.9417032937809335
+17.1,0.6029384052506526,16.083984898466408,16.083984898466408,4.949015101533592,0.940583912191018,0.940583912191018
+17.2,0.602221638444431,16.158811002740975,16.158811002740975,4.997188997259024,0.9394657559733125,0.9394657559733125
+17.3,0.6015056257882837,16.233433828774203,16.233433828774203,5.0455661712258,0.9383487762297226,0.9383487762297226
+17.4,0.6007903359761817,16.307852879737474,16.307852879737474,5.094147120262522,0.9372329241228435,0.9372329241228435
+17.5,0.6000757377290225,16.382067640002315,16.382067640002315,5.142932359997685,0.9361181508572751,0.9361181508572751
+17.6,0.5993617997827545,16.45607757483531,16.45607757483531,5.191922425164692,0.935004407661097,0.935004407661097
+17.7,0.5986484908765953,16.529882130084548,16.529882130084548,5.241117869915449,0.9338916457674887,0.9338916457674887
+17.8,0.5979357797413344,16.603480731857374,16.603480731857374,5.290519268142626,0.9327798163964817,0.9327798163964817
+17.9,0.5972236350877123,16.676872786189275,16.676872786189275,5.340127213810722,0.9316688707368311,0.9316688707368311
+18.0,0.5965120255948688,16.750057678703918,16.750057678703918,5.38994232129608,0.9305587599279955,0.9305587599279955
+18.1,0.5958009198988534,16.823034774264027,16.823034774264027,5.439965225735973,0.9294494350422114,0.9294494350422114
+18.2,0.5950902865811867,16.895803416613052,16.895803416613052,5.490196583386948,0.9283408470666512,0.9283408470666512
+18.3,0.5943800941574697,16.968362928007448,16.968362928007448,5.5406370719925535,0.9272329468856528,0.9272329468856528
+18.4,0.5936703110660336,17.040712608839428,17.040712608839428,5.591287391160571,0.9261256852630124,0.9261256852630124
+18.5,0.5929609056566177,17.112851737249986,17.112851737249986,5.642148262750013,0.9250190128243236,0.9250190128243236
+18.6,0.5922518461790761,17.184779568732072,17.184779568732072,5.693220431267929,0.9239128800393587,0.9239128800393587
+18.7,0.5915431007721006,17.25649533572372,17.25649533572372,5.744504664276279,0.922807237204477,0.922807237204477
+18.8,0.5908346374519565,17.32799824719098,17.32799824719098,5.796001752809019,0.9217020344250522,0.9217020344250522
+18.9,0.5901264241012222,17.399287488200436,17.399287488200436,5.847712511799563,0.9205972215979067,0.9205972215979067
+19.0,0.5894184284575297,17.470362219481178,17.470362219481178,5.8996377805188205,0.9194927483937463,0.9194927483937463
+19.1,0.5887106181022951,17.541221576975985,17.541221576975985,5.951778423024015,0.9183885642395804,0.9183885642395804
+19.2,0.588002960449438,17.611864671381568,17.611864671381568,6.00413532861843,0.9172846183011234,0.9172846183011234
+19.3,0.5872954227340788,17.682290587677645,17.682290587677645,6.0567094123223555,0.9161808594651629,0.9161808594651629
+19.4,0.5865879720012114,17.75249838464466,17.75249838464466,6.109501615355338,0.9150772363218898,0.9150772363218898
+19.5,0.5858805750943443,17.822487094369958,17.822487094369958,6.162512905630043,0.9139736971471772,0.9139736971471772
+19.6,0.5851731986441038,17.89225572174212,17.89225572174212,6.215744278257882,0.912870189884802,0.912870189884802
+19.7,0.5844658090567932,17.96180324393337,17.96180324393337,6.269196756066627,0.9117666621285976,0.9117666621285976
+19.8,0.5837583725029035,18.031128609869686,18.031128609869686,6.322871390130315,0.9106630611045295,0.9106630611045295
+19.9,0.5830508549055692,18.10023073968849,18.10023073968849,6.376769260311507,0.909559333652688,0.909559333652688
+20.0,0.5823432219289632,18.16910852418365,18.16910852418365,6.430891475816349,0.9084554262091825,0.9084554262091825
+20.1,0.5816354389666256,18.237760824237515,18.237760824237515,6.485239175762486,0.907351284787936,0.907351284787936
+20.2,0.5809274711297219,18.306186470239794,18.306186470239794,6.539813529760203,0.9062468549623661,0.9062468549623661
+20.3,0.5802192832352218,18.374384261493006,18.374384261493006,6.594615738506996,0.905142081846946,0.905142081846946
+20.4,0.5795108397939975,18.442352965604176,18.442352965604176,6.649647034395823,0.9040369100786361,0.9040369100786361
+20.5,0.5788021049988329,18.510091317862678,18.510091317862678,6.704908682137323,0.9029312837981793,0.9029312837981793
+20.6,0.5780930427123385,18.577598020603716,18.577598020603716,6.760401979396287,0.9018251466312482,0.9018251466312482
+20.7,0.5773836164547693,18.64487174255741,18.64487174255741,6.816128257442588,0.9007184416694402,0.9007184416694402
+20.8,0.5766737893917349,18.711911118183014,18.711911118183014,6.872088881816987,0.8996111114511064,0.8996111114511064
+20.9,0.5759635243218035,18.778714746988083,18.778714746988083,6.928285253011916,0.8985030979420136,0.8985030979420136
+21.0,0.5752527836639879,18.845281192832246,18.845281192832246,6.984718807167755,0.8973943425158212,0.8973943425158212
+21.1,0.5745415294451122,18.911608983215313,18.911608983215313,7.041391016784687,0.896284785934375,0.896284785934375
+21.2,0.5738297232870508,18.977696608549344,18.977696608549344,7.098303391450655,0.8951743683277993,0.8951743683277993
+21.3,0.5731173263938389,19.04354252141448,19.04354252141448,7.15545747858552,0.8940630291743887,0.8940630291743887
+21.4,0.5724042995386417,19.109145135798016,19.109145135798016,7.212854864201983,0.8929507072802811,0.8929507072802811
+21.5,0.5716906030505862,19.174502826316658,19.174502826316658,7.2704971736833395,0.8918373407589144,0.8918373407589144
+21.6,0.57097619680144,19.239613927421324,19.239613927421324,7.328386072578678,0.8907228670102464,0.8907228670102464
+21.7,0.5702610401921416,19.30447673258438,19.30447673258438,7.386523267415619,0.889607222699741,0.889607222699741
+21.8,0.569545092139168,19.369089493468827,19.369089493468827,7.444910506531174,0.8884903437371021,0.8884903437371021
+21.9,0.5688283110607408,19.433450419079147,19.433450419079147,7.503549580920849,0.8873721652547557,0.8873721652547557
+22.0,0.5681106548628602,19.49755767489336,19.49755767489336,7.562442325106638,0.8862526215860619,0.8862526215860619
+22.1,0.5673920809251647,19.56140938197598,19.56140938197598,7.62159061802402,0.885131646243257,0.885131646243257
+22.2,0.5666725460866103,19.62500361607149,19.62500361607149,7.680996383928509,0.8840091718951122,0.8840091718951122
+22.3,0.5659520066309609,19.688338406677868,19.688338406677868,7.740661593322131,0.882885130344299,0.882885130344299
+22.4,0.5652304182720874,19.751411736099822,19.751411736099822,7.800588263900175,0.8817594525044564,0.8817594525044564
+22.5,0.5645077361390695,19.814221538481338,19.814221538481338,7.86077846151866,0.8806320683769484,0.8806320683769484
+22.6,0.5637839147610911,19.87676569881703,19.87676569881703,7.9212343011829685,0.8795029070273023,0.8795029070273023
+22.7,0.5630589080521282,19.939042051941964,19.939042051941964,7.981957948058033,0.8783718965613201,0.8783718965613201
+22.8,0.5623326692954187,20.001048381499455,20.001048381499455,8.042951618500547,0.8772389641008532,0.8772389641008532
+22.9,0.5616051511277121,20.062782418886385,20.062782418886385,8.10421758111361,0.8761040357592309,0.8761040357592309
+23.0,0.5608763055232909,20.124241842175678,20.124241842175678,8.165758157824323,0.8749670366163338,0.8749670366163338
+23.1,0.5601460837777572,20.18542427501526,20.18542427501526,8.22757572498474,0.8738278906933012,0.8738278906933012
+23.2,0.5594144364915806,20.246327285503284,20.246327285503284,8.289672714496715,0.8726865209268657,0.8726865209268657
+23.3,0.5586813135533986,20.306948385038933,20.306948385038933,8.352051614961068,0.8715428491433018,0.8715428491433018
+23.4,0.557946664123065,20.367285027148366,20.367285027148366,8.414714972851632,0.8703967960319815,0.8703967960319815
+23.5,0.557210436614439,20.427334606285335,20.427334606285335,8.477665393714664,0.8692482811185249,0.8692482811185249
+23.6,0.556472578677909,20.4870944566059,20.4870944566059,8.540905543394103,0.868097222737538,0.868097222737538
+23.7,0.5557330371826439,20.54656185071671,20.54656185071671,8.604438149283288,0.8669435380049245,0.8669435380049245
+23.8,0.5549917581985673,20.605733998396406,20.605733998396406,8.668266001603596,0.8657871427897649,0.8657871427897649
+23.9,0.5542486869780432,20.664608045289363,20.664608045289363,8.732391954710634,0.8646279516857475,0.8646279516857475
+24.0,0.553503767937274,20.72318107157154,20.72318107157154,8.796818928428461,0.8634658779821475,0.8634658779821475
+24.1,0.5527569446373951,20.78145009058751,20.78145009058751,8.861549909412492,0.8623008336343364,0.8623008336343364
+24.2,0.5520081597652664,20.839412047458335,20.839412047458335,8.926587952541663,0.8611327292338156,0.8611327292338156
+24.3,0.5512573551139495,20.8970638176596,20.8970638176596,8.991936182340401,0.8599614739777612,0.8599614739777612
+24.4,0.5505044715628651,20.954402205568893,20.954402205568893,9.057597794431103,0.8587869756380695,0.8587869756380695
+24.5,0.5497494490576215,21.011423942982294,21.011423942982294,9.123576057017704,0.8576091405298896,0.8576091405298896
+24.6,0.5489922265895106,21.06812568759906,21.06812568759906,9.18987431240094,0.8564278734796366,0.8564278734796366
+24.7,0.5482327421746593,21.124504021473975,21.124504021473975,9.256495978526024,0.8552430777924687,0.8552430777924687
+24.8,0.5474709328328312,21.18055544943657,21.18055544943657,9.323444550563428,0.8540546552192166,0.8540546552192166
+24.9,0.5467067345658708,21.236276397476686,21.236276397476686,9.39072360252331,0.8528625059227586,0.8528625059227586
+25.0,0.5459400823357831,21.29166321109554,21.29166321109554,9.45833678890446,0.8516665284438216,0.8516665284438216
+25.1,0.5451709100424359,21.346712153621624,21.346712153621624,9.526287846378379,0.8504666196662001,0.8504666196662001
+25.2,0.544399150500885,21.401419404490795,21.401419404490795,9.594580595509205,0.8492626747813807,0.8492626747813807
+25.3,0.5436247354183059,21.455781057489702,21.455781057489702,9.6632189425103,0.8480545872525573,0.8480545872525573
+25.4,0.5428475953705286,21.509793118961827,21.509793118961827,9.732206881038172,0.8468422487780247,0.8468422487780247
+25.5,0.5420676597781651,21.563451505975408,21.563451505975408,9.801548494024592,0.8456255492539375,0.8456255492539375
+25.6,0.5412848568823208,21.61675204445236,21.61675204445236,9.87124795554764,0.8444043767364203,0.8444043767364203
+25.7,0.540499113719883,21.66969046725755,21.66969046725755,9.94130953274245,0.8431786174030175,0.8431786174030175
+25.8,0.539710356098375,21.7222624122474,21.7222624122474,10.011737587752599,0.8419481555134651,0.8419481555134651
+25.9,0.5389185085703682,21.774463420277154,21.774463420277154,10.082536579722841,0.8407128733697744,0.8407128733697744
+26.0,0.5381234944074416,21.82628893316583,21.82628893316583,10.153711066834168,0.8394726512756089,0.8394726512756089
+26.1,0.5373252355736818,21.87773429161803,21.87773429161803,10.22526570838197,0.8382273674949436,0.8382273674949436
+26.2,0.5365236526987126,21.928794733101785,21.928794733101785,10.297205266898215,0.8369768982099918,0.8369768982099918
+26.3,0.5357186650502425,21.97946538968135,21.97946538968135,10.36953461031865,0.8357211174783783,0.8357211174783783
+26.4,0.5349101905061233,22.02974128580418,22.02974128580418,10.442258714195816,0.8344598971895524,0.8344598971895524
+26.5,0.5340981455259091,22.079617336041082,22.079617336041082,10.515382663958919,0.8331931070204182,0.8331931070204182
+26.6,0.5332824451219031,22.129088342778495,22.129088342778495,10.588911657221505,0.831920614390169,0.831920614390169
+26.7,0.5324630028296857,22.178148993862074,22.178148993862074,10.662851006137926,0.8306422844143099,0.8306422844143099
+26.8,0.53163973067811,22.226793860190423,22.226793860190423,10.73720613980958,0.8293579798578515,0.8293579798578515
+26.9,0.5308125391587536,22.275017393257933,22.275017393257933,10.811982606742065,0.8280675610876556,0.8280675610876556
+27.0,0.5299813371948213,22.322813922645878,22.322813922645878,10.887186077354123,0.8267708860239213,0.8267708860239213
+27.1,0.52914603210948,22.370177653460377,22.370177653460377,10.962822346539623,0.8254678100907888,0.8254678100907888
+27.2,0.5283065295936187,22.417102663716427,22.417102663716427,11.03889733628357,0.8241581861660452,0.8241581861660452
+27.3,0.5274627336730222,22.46358290166667,22.46358290166667,11.115417098333332,0.8228418645299146,0.8228418645299146
+27.4,0.5266145466749447,22.509612183073838,22.509612183073838,11.19238781692616,0.8215186928129138,0.8215186928129138
+27.5,0.5257618691940743,22.555184188425788,22.555184188425788,11.269815811574214,0.8201885159427559,0.8201885159427559
+27.6,0.5249046000578711,22.6002924600917,22.6002924600917,11.3477075399083,0.818851176090279,0.818851176090279
+27.7,0.5240426362912736,22.644930399418513,22.644930399418513,11.426069600581485,0.8175065126143868,0.8175065126143868
+27.8,0.5231758730807534,22.689091263766116,22.689091263766116,11.504908736233885,0.8161543620059754,0.8161543620059754
+27.9,0.522304203737712,22.732768163480177,22.732768163480177,11.584231836519821,0.8147945578308308,0.8147945578308308
+28.0,0.5214275196612004,22.775954058801233,22.775954058801233,11.664045941198768,0.8134269306714725,0.8134269306714725
+28.1,0.5205457102999536,22.818641756708764,22.818641756708764,11.744358243291234,0.8120513080679276,0.8120513080679276
+28.2,0.5196586631137229,22.860823907698897,22.860823907698897,11.825176092301103,0.8106675144574077,0.8106675144574077
+28.3,0.5187662635338937,22.902493002494335,22.902493002494335,11.906506997505664,0.8092753711128741,0.8092753711128741
+28.4,0.5178683949233732,22.943641368685128,22.943641368685128,11.98835863131487,0.8078746960804623,0.8078746960804623
+28.5,0.5169649385357372,22.98426116729888,22.98426116729888,12.070738832701121,0.8064653041157501,0.8064653041157501
+28.6,0.5160557734736161,23.024344389298857,23.024344389298857,12.153655610701145,0.8050470066188411,0.8050470066188411
+28.7,0.5151407766463099,23.063882852008586,23.063882852008586,12.237117147991412,0.8036196115682435,0.8036196115682435
+28.8,0.5142198227266149,23.102868195461355,23.102868195461355,12.321131804538645,0.8021829234535193,0.8021829234535193
+28.9,0.5132927841068469,23.141291878673087,23.141291878673087,12.405708121326912,0.8007367432066812,0.8007367432066812
+29.0,0.5123595308540451,23.179145175836997,23.179145175836997,12.490854824163002,0.7992808681323103,0.7992808681323103
+29.1,0.5114199306643407,23.216419172438407,23.216419172438407,12.576580827561594,0.7978150918363713,0.7978150918363713
+29.2,0.5104738488164757,23.2531047612881,23.2531047612881,12.662895238711899,0.7963392041537021,0.7963392041537021
+29.3,0.5095211481244507,23.289192638472393,23.289192638472393,12.749807361527607,0.7948529910741431,0.7948529910741431
+29.4,0.5085616888892909,23.324673299218436,23.324673299218436,12.837326700781562,0.7933562346672938,0.7933562346672938
+29.5,0.5075953288499082,23.35953703367278,23.35953703367278,12.92546296632722,0.7918487130058569,0.7918487130058569
+29.6,0.5066219231330438,23.393773922591432,23.393773922591432,13.014226077408571,0.7903302000875483,0.7903302000875483
+29.7,0.505641324202273,23.427373832939715,23.427373832939715,13.103626167060284,0.788800465755546,0.788800465755546
+29.8,0.5046533818060553,23.4603264133999,23.4603264133999,13.193673586600099,0.7872592756174464,0.7872592756174464
+29.9,0.5036579429248091,23.492621089784798,23.492621089784798,13.2843789102152,0.7857063909627023,0.7857063909627023
+30.0,0.5026548517169935,23.524247060355297,23.524247060355297,13.375752939644702,0.7841415686785099,0.7841415686785099
+30.1,0.5016439494641773,23.555193291039913,23.555193291039913,13.467806708960088,0.7825645611641167,0.7825645611641167
+30.2,0.5006250745150765,23.585448510554286,23.585448510554286,13.56055148944571,0.7809751162435195,0.7809751162435195
+30.3,0.4995980622285398,23.61500120541862,23.61500120541862,13.65399879458138,0.7793729770765221,0.7793729770765221
+30.4,0.49856274491546,23.643839614870775,23.643839614870775,13.748160385129225,0.7777578820681176,0.7777578820681176
+30.5,0.49751895177959454,23.67195172567311,23.67195172567311,13.843048274326888,0.7761295647761676,0.7761295647761676
+30.6,0.4964665088572704,23.699325266810664,23.699325266810664,13.938674733189337,0.7744877538173419,0.7744877538173419
+30.7,0.4954052389559531,23.725947704078507,23.725947704078507,14.03505229592149,0.7728321727712869,0.7728321727712869
+30.8,0.4943349615916582,23.751806234555993,23.751806234555993,14.132193765444006,0.7711625400829868,0.7711625400829868
+30.9,0.49325549292518334,23.776887780965538,23.776887780965538,14.23011221903446,0.769478568963286,0.769478568963286
+31.0,0.49216664569713586,23.80117898591349,23.80117898591349,14.32882101408651,0.767779967287532,0.767779967287532
+31.1,0.49106822916173604,23.82466620601079,23.82466620601079,14.428333793989212,0.7660664374923083,0.7660664374923083
+31.2,0.4899600490193692,23.84733550587074,23.84733550587074,14.52866449412926,0.764337676470216,0.764337676470216
+31.3,0.4888419073478655,23.869172651981575,23.869172651981575,14.629827348018424,0.7625933754626701,0.7625933754626701
+31.4,0.4877136025324792,23.89016310645096,23.89016310645096,14.731836893549037,0.7608332199506675,0.7608332199506675
+31.5,0.4865749291945478,23.91029202062008,23.91029202062008,14.83470797937992,0.7590568895434946,0.7590568895434946
+31.6,0.4854256781187993,23.92954422854433,23.92954422854433,14.93845577145567,0.7572640578653269,0.7572640578653269
+31.7,0.4842656361792864,23.947904240338072,23.947904240338072,15.043095759661927,0.7554543924396868,0.7554543924396868
+31.8,0.48309458626391927,23.965356235380508,23.965356235380508,15.148643764619493,0.753627554571714,0.753627554571714
+31.9,0.48191230719757006,23.981884055379876,23.981884055379876,15.25511594462012,0.7517831992282094,0.7517831992282094
+32.0,0.48071857366372195,23.997471197293002,23.997471197293002,15.362528802706997,0.7499209749154063,0.7499209749154063
+32.1,0.47951315612463496,24.012100806097223,24.012100806097223,15.470899193902778,0.7480405235544306,0.7480405235544306
+32.2,0.47829582073999877,24.02575566741162,24.02575566741162,15.580244332588382,0.7461414803543981,0.7461414803543981
+32.3,0.47706632928404535,24.03841819996448,24.03841819996448,15.690581800035519,0.7442234736831108,0.7442234736831108
+32.4,0.4758244390610915,24.05007044790381,24.05007044790381,15.801929552096189,0.7422861249353028,0.7422861249353028
+32.5,0.4745699028194791,24.060694072947587,24.060694072947587,15.914305927052412,0.7403290483983873,0.7403290483983873
+32.6,0.4733024686638842,24.070270346370496,24.070270346370496,16.027729653629503,0.7383518511156594,0.7383518511156594
+32.7,0.47202187996596495,24.078780140823806,24.078780140823806,16.142219859176198,0.7363541327469053,0.7363541327469053
+32.8,0.4707278752733123,24.08620392198484,24.08620392198484,16.257796078015154,0.7343354854263672,0.7343354854263672
+32.9,0.46942018821667514,24.092521740032634,24.092521740032634,16.37447825996736,0.7322954936180133,0.7322954936180133
+33.0,0.4680985474154249,24.097713220946076,24.097713220946076,16.492286779053924,0.7302337339680629,0.7302337339680629
+33.1,0.4667626763812258,24.10175755762098,24.10175755762098,16.61124244237902,0.7281497751547124,0.7281497751547124
+33.2,0.46541229341987617,24.10463350080223,24.10463350080223,16.731366499197776,0.7260431777350068,0.7260431777350068
+33.3,0.4640471115312872,24.106319349827306,24.106319349827306,16.85268065017269,0.723913493988808,0.723913493988808
+33.4,0.4626668383075613,24.106792943177172,24.106792943177172,16.975207056822825,0.7217602677597956,0.7217602677597956
+33.5,0.46127117582913685,24.106031648830694,24.106031648830694,17.098968351169308,0.7195830342934535,0.7195830342934535
+33.6,0.45985982055895774,24.10401235441833,24.10401235441833,17.223987645581673,0.7173813200719741,0.7173813200719741
+33.7,0.45843246323463405,24.100711457171183,24.100711457171183,17.35028854282882,0.7151546426460291,0.7151546426460291
+33.8,0.45698878875855353,24.096104853661007,24.096104853661007,17.477895146338987,0.7129025104633435,0.7129025104633435
+33.9,0.4555284760859038,24.090167929326935,24.090167929326935,17.60683207067306,0.7106244226940099,0.7106244226940099
+34.0,0.45405119811056877,24.082875547784568,24.082875547784568,17.737124452215433,0.7083198690524872,0.7083198690524872
+34.1,0.45255662154885345,24.07420203991281,24.07420203991281,17.868797960087193,0.7059883296162114,0.7059883296162114
+34.2,0.4510444068209996,24.064121192713973,24.064121192713973,18.00187880728603,0.7036292746407594,0.7036292746407594
+34.3,0.4495142079304494,24.052606237942484,24.052606237942484,18.13639376205751,0.7012421643715011,0.7012421643715011
+34.4,0.44796567234081097,24.03962984049728,24.03962984049728,18.272370159502717,0.6988264488516651,0.6988264488516651
+34.5,0.4463984408504871,24.025164086573216,24.025164086573216,18.409835913426786,0.6963815677267599,0.6963815677267599
+34.6,0.4448121474649166,24.00918047156634,24.00918047156634,18.54881952843366,0.6939069500452699,0.6939069500452699
+34.7,0.443206419266388,23.99164988772812,23.99164988772812,18.689350112271885,0.6914020140555653,0.6914020140555653
+34.8,0.4415808762813748,23.972542611563277,23.972542611563277,18.83145738843672,0.6888661669989448,0.6888661669989448
+34.9,0.43993513134534695,23.95182829096607,23.95182829096607,18.975171709033926,0.6862988048987413,0.6862988048987413
+35.0,0.438268789965011,23.929475932089606,23.929475932089606,19.120524067910395,0.6836993123454173,0.6836993123454173
+35.1,0.43658145017792876,23.905453885942666,23.905453885942666,19.267546114057332,0.6810670622775689,0.6810670622775689
+35.2,0.4348727024094629,23.879729834708428,23.879729834708428,19.416270165291575,0.6784014157587621,0.6784014157587621
+35.3,0.433142129327001,23.85227077777929,23.85227077777929,19.566729222220708,0.6757017217501216,0.6757017217501216
+35.4,0.43138930569140566,23.823043017502187,23.823043017502187,19.71895698249781,0.6729673168785929,0.6729673168785929
+35.5,0.429613798205635,23.792012144628064,23.792012144628064,19.872987855371935,0.6701975252007906,0.6701975252007906
+35.6,0.4278151653604823,23.75914302345975,23.75914302345975,20.028856976540254,0.6673916579623524,0.6673916579623524
+35.7,0.42599295727738007,23.72439977669185,23.72439977669185,20.18660022330815,0.6645490133527129,0.6645490133527129
+35.8,0.42414671554820815,23.687745769936328,23.687745769936328,20.346254230063668,0.6616688762552048,0.6616688762552048
+35.9,0.4222759730720539,23.649143595927303,23.649143595927303,20.507856404072694,0.658750517992404,0.658750517992404
+36.0,0.420380253888863,23.608555058398547,23.608555058398547,20.67144494160145,0.6557931960666263,0.6557931960666263
+36.1,0.41845907300992385,23.56594115562687,23.56594115562687,20.83705884437313,0.6527961538954812,0.6527961538954812
+36.2,0.4165119362451197,23.5212620636344,23.5212620636344,21.004737936365604,0.6497586205423866,0.6497586205423866
+36.3,0.4145383400268956,23.47447711904304,23.47447711904304,21.174522880956953,0.6466798104419571,0.6466798104419571
+36.4,0.4125377712308684,23.425544801573633,23.425544801573633,21.346455198426366,0.6435589231201547,0.6435589231201547
+36.5,0.41050970699302197,23.374422716182675,23.374422716182675,21.520577283817325,0.6403951429091144,0.6403951429091144
+36.6,0.40845361452341905,23.321067574829137,23.321067574829137,21.696932425170868,0.6371876386565337,0.6371876386565337
+36.7,0.4063689509163642,23.265435177863687,23.265435177863687,21.87556482213632,0.6339355634295282,0.6339355634295282
+36.8,0.40425516295695135,23.20748039503266,23.20748039503266,22.056519604967335,0.6306380542128441,0.6306380542128441
+36.9,0.40211168692392374,23.147157146088745,23.147157146088745,22.239842853911252,0.627294231601321,0.627294231601321
+37.0,0.3999379483887791,23.08441838100033,23.08441838100033,22.42558161899967,0.6239031994864954,0.6239031994864954
+37.1,0.3977333620110467,23.01921605975134,23.01921605975134,22.613783940248663,0.6204640447372328,0.6204640447372328
+37.2,0.3954973313296627,22.95150113172299,22.95150113172299,22.804498868277015,0.6169758368742738,0.6169758368742738
+37.3,0.3932292485503711,22.881223514648994,22.881223514648994,22.997776485351,0.613437627738579,0.613437627738579
+37.4,0.39092849432907284,22.808332073135425,22.808332073135425,23.193667926864574,0.6098484511533536,0.6098484511533536
+37.5,0.3885944375510447,22.732774596736117,22.732774596736117,23.39222540326388,0.6062073225796298,0.6062073225796298
+37.6,0.386226435105954,22.65449777757484,22.65449777757484,23.593502222425162,0.6025132387652883,0.6025132387652883
+37.7,0.3838238316585815,22.5734471875045,22.5734471875045,23.797552812495503,0.5987651773873872,0.5987651773873872
+37.8,0.38138595941517656,22.48956725479413,22.48956725479413,24.00443274520586,0.5949620966876755,0.5949620966876755
+37.9,0.3789121378853587,22.40280124033395,22.40280124033395,24.214198759666047,0.5911029351011596,0.5911029351011596
+38.0,0.37640167363948096,22.31309121334843,22.31309121334843,24.42690878665157,0.5871866108775903,0.5871866108775903
+38.1,0.37385386006136734,22.22037802660743,22.22037802660743,24.642621973392572,0.583212021695733,0.583212021695733
+38.2,0.3712679770963385,22.124601291125007,22.124601291125007,24.861398708874997,0.5791780442702881,0.5791780442702881
+38.3,0.36864329099443194,22.02569935033532,22.02569935033532,25.08330064966468,0.5750835339513138,0.5750835339513138
+38.4,0.3659790540487298,21.923609253735112,21.923609253735112,25.308390746264887,0.5709273243160186,0.5709273243160186
+38.5,0.36327450432869623,21.818266729981495,21.818266729981495,25.536733270018505,0.5667082267527661,0.5667082267527661
+38.6,0.36052886540843176,21.70960615943413,21.70960615943413,25.76839384056587,0.5624250300371536,0.5624250300371536
+38.7,0.3577413460897474,21.597560546130232,21.597560546130232,26.00343945386977,0.558076499900006,0.558076499900006
+38.8,0.35491114011995817,21.48206148918083,21.48206148918083,26.241938510819168,0.5536613785871348,0.5536613785871348
+38.9,0.3520374259042962,21.36303915357631,21.36303915357631,26.483960846423688,0.5491783844107021,0.5491783844107021
+39.0,0.3491193662128428,21.240422240389353,21.240422240389353,26.729577759610645,0.5446262112920347,0.5446262112920347
+39.1,0.34615610788186824,21.114137956362438,21.114137956362438,26.978862043637562,0.5400035282957145,0.5400035282957145
+39.2,0.3431467815094832,20.98411198286792,20.98411198286792,27.231888017132086,0.5353089791547938,0.5353089791547938
+39.3,0.3400905011454807,20.85026844422713,20.85026844422713,27.48873155577287,0.5305411817869499,0.5305411817869499
+39.4,0.33698636397526843,20.7125298753759,20.7125298753759,27.749470124624096,0.5256987278014188,0.5256987278014188
+39.5,0.3338334499977725,20.57081718886274,20.57081718886274,28.014182811137257,0.5207801819965251,0.5207801819965251
+39.6,0.33063082169720026,20.425049641166247,20.425049641166247,28.282950358833755,0.5157840818476325,0.5157840818476325
+39.7,0.32737752370854234,20.275144798317445,20.275144798317445,28.555855201682558,0.510708936985326,0.510708936985326
+39.8,0.32407258247669735,20.121018500813186,20.121018500813186,28.832981499186808,0.5055532286636479,0.5055532286636479
+39.9,0.32071500590909624,19.962584827805788,19.962584827805788,29.11441517219421,0.5003154092181902,0.5003154092181902
+40.0,0.31730378302170126,19.79975606055416,19.79975606055416,29.400243939445836,0.49499390151385403,0.49499390151385403
+40.1,0.3138378835782566,19.63244264512142,19.63244264512142,29.69055735487858,0.48958709838208025,0.48958709838208025
+40.2,0.31031625772265503,19.460553154303145,19.460553154303145,29.985446845696856,0.4840933620473419,0.4840933620473419
+40.3,0.3067378356042974,19.28399424877097,19.28399424877097,30.285005751229026,0.47851102354270403,0.47851102354270403
+40.4,0.3031015269963055,19.102670637415155,19.102670637415155,30.58932936258484,0.47283838211423657,0.47283838211423657
+40.5,0.2994062209064542,18.91648503686978,18.91648503686978,30.89851496313022,0.4670737046140686,0.4670737046140686
+40.6,0.29565078518068333,18.725338130203763,18.725338130203763,31.21266186979624,0.46121522488186606,0.46121522488186606
+40.7,0.29183406609904783,18.529128524760747,18.529128524760747,31.531871475239257,0.4552611431145146,0.4552611431145146
+40.8,0.28795488796396157,18.327752709130223,18.327752709130223,31.85624729086977,0.44920962522378005,0.44920962522378005
+40.9,0.28401205268058766,18.121105009232213,18.121105009232213,32.18589499076778,0.4430588021817167,0.4430588021817167
+41.0,0.2800043393292277,17.909077543497403,17.909077543497403,32.520922456502596,0.4368067693535952,0.4368067693535952
+41.1,0.27593050372955186,17.69156017712395,17.69156017712395,32.86143982287605,0.43045158581810095,0.43045158581810095
+41.2,0.271789277996522,17.468440475392466,17.468440475392466,33.20755952460754,0.4239912736745744,0.4239912736745744
+41.3,0.2675793700878396,17.23960365601933,17.23960365601933,33.559396343980666,0.4174238173370298,0.4174238173370298
+41.4,0.26329946334276555,17.00493254052917,17.00493254052917,33.91706745947083,0.41074716281471424,0.41074716281471424
+41.5,0.25894821601214346,16.764307504626167,16.764307504626167,34.28069249537383,0.4039592169789438,0.4039592169789438
+41.6,0.25452426077945606,16.51760642754358,16.51760642754358,34.65039357245642,0.3970578468159514,0.3970578468159514
+41.7,0.25002620427275035,16.264704640350956,16.264704640350956,35.02629535964905,0.39004087866549053,0.39004087866549053
+41.8,0.24545262656724864,16.005474873197148,16.005474873197148,35.40852512680285,0.3829060974449079,0.3829060974449079
+41.9,0.24080208067847425,15.739787201467792,15.739787201467792,35.79721279853221,0.37565124585841986,0.37565124585841986
+42.0,0.2360730920457109,15.467508990834979,15.467508990834979,36.19249100916502,0.368274023591309,0.368274023591309
+42.1,0.23126415800560418,15.188504841176062,15.188504841176062,36.59449515882394,0.36077208648874254,0.36077208648874254
+42.2,0.22637374725572856,14.902636529339125,14.902636529339125,37.00336347066088,0.35314304571893657,0.35314304571893657
+42.3,0.22140029930791538,14.60976295073072,14.60976295073072,37.41923704926927,0.345384466920348,0.345384466920348
+42.4,0.21634222393115646,14.309740059702413,14.309740059702413,37.84225994029758,0.3374938693326041,0.3374938693326041
diff --git a/Documents/Chamberline-Kim/Chamberline_Test.html b/Documents/Chamberline-Kim/Chamberline_Test.html
new file mode 100644
index 00000000..787b0800
--- /dev/null
+++ b/Documents/Chamberline-Kim/Chamberline_Test.html
@@ -0,0 +1,494 @@
+
+
+Chamberline_Test
+
+
+
+
OPEM Report (Chamberline-Kim Model)
+
What is Chamberline-Kim ?
+
+Chamberlin-Kim static model is an empirical equation which was developed to fit the experimental cell potential (E) vs.
+current density (J) data for proton exchange membrane fuel cells (PEMFCs), at several temperatures, pressures, and
+oxygen compositions in the cathode gas mixture. The exponential term compensates for the mass-transport regions of the
+V vs. i plot; i.e., the increase in slope of the pseudolinear region and the subsequent rapid fall-off of the cell
+potential with increasing current density. The terms E0 and b yield the electrode kinetic parameters for oxygen
+reduction in the PEMFC and R represents the resistance, predominantly ohmic and, to a small extent, the charge
+transfer resistance of the electro-oxidation of hydrogen. The exponential term characterizes the mass-transport
+region of the V vs. i plot. The parameter n has more pronounced effects than the parameter m in this region. In
+Chamberline Kim's model, the values of the parameters(five parameters: E0, b, R, m, n) vary depending on many
+variables, including the composition of the Membrane Electrode Assemblies(MEA), the fuel and oxidant used, besides
+the local temperature, pressure, and humidity of the MEA. They also depend on the stack itself, so that it can not
+be transposed to another fuel cell without new parameter identification.
+
+
Inputs
+
+
+
+Input
+
+Description
+
+Value
+
+
+
+
+A
+
+
+Active area [cm^2]
+
+
+50.0
+
+
+
+E0
+
+
+Open circuit voltage [V]
+
+
+0.982
+
+
+
+N
+
+
+Number of single cells
+
+
+1
+
+
+
+R
+
+
+Resistance [ohm.cm^2]
+
+
+0.328
+
+
+
+b
+
+
+Tafel's parameter for the oxygen reduction [V]
+
+
+0.0689
+
+
+
+i-start
+
+
+Cell operating current start point [A]
+
+
+1
+
+
+
+i-step
+
+
+Cell operating current step
+
+
+0.1
+
+
+
+i-stop
+
+
+Cell operating current end point [A]
+
+
+42.5
+
+
+
+m
+
+
+Diffusion's parameters [V]
+
+
+0.000125
+
+
+
+n
+
+
+Diffusion's parameters [(A^-1)(cm^2)]
+
+
+9.45
+
+
+
Overall Parameters
+
+
+
+Parameter
+
+Description
+
+Value
+
+
+
+
+Efficiency|Pmax
+
+
+Cell efficiency at maximum power
+
+
+0.4626668383075613
+
+
+
+Pmax
+
+
+Maximum power [W]
+
+
+24.106792943177172
+
+
+
+Ptotal(Elec)
+
+
+Total electrical power [W]
+
+
+35.82827697893981
+
+
+
+Ptotal(Thermal)
+
+
+Total thermal power [W]
+
+
+15.093723021060224
+
+
+
+VFC|Pmax
+
+
+Cell voltage at maximum power [V]
+
+
+0.7217602677597956
+
+
+
Graphs
+
+
+
+
+
+
+
+
+
+
+
+
+
+Parameter
+
+Description
+
+Value
+
+
+
+
+K
+
+
+Slope of the curve obtained by linear approximation [A^(-1)]
+
+
+-0.01612214066335869
+
+
+
+Pmax(L-Approx)
+
+
+Maximum power obtained by linear approximation [W]
+
+
+22.8946129504538
+
+
+
+V0
+
+
+Intercept of the curve obtained by linear approximation [V]
+
+
+1.2150887546518891
+
+
+
+VFC|Pmax(L-Approx)
+
+
+Cell voltage at maximum power obtained by linear approximation [V]
+
+
+
\ No newline at end of file
diff --git a/Documents/Chamberline-Kim/Chamberline_Test.opem b/Documents/Chamberline-Kim/Chamberline_Test.opem
new file mode 100644
index 00000000..a5c7f2a6
--- /dev/null
+++ b/Documents/Chamberline-Kim/Chamberline_Test.opem
@@ -0,0 +1,3760 @@
+ ___
+ / _ \ _ __ ___ _ __ ___
+| | | || '_ \ / _ \| '_ ` _ \
+| |_| || |_) || __/| | | | | |
+ \___/ | .__/ \___||_| |_| |_|
+ |_|
+Simulation Date : 2019-02-22 18:15:06.881226
+**********
+Chamberline-Kim Model
+
+**********
+Simulation Inputs :
+
+A : 50.0
+E0 : 0.982
+N : 1
+Name : Chamberline_Test
+R : 0.328
+b : 0.0689
+i-start : 1
+i-step : 0.1
+i-stop : 42.5
+m : 0.000125
+n : 9.45
+**********
+I :1 A
+
+PEM Efficiency : 0.797966269201884
+Power : 1.244827379954939 W
+Power-Stack : 1.244827379954939 W
+Power-Thermal : -0.01482737995493899 W
+VStack : 1.244827379954939 V
+Vcell : 1.244827379954939 V
+###########
+I :1.1 A
+
+PEM Efficiency : 0.7933343765568479
+Power : 1.3613617901715511 W
+Power-Stack : 1.3613617901715511 W
+Power-Thermal : -0.008361790171551031 W
+VStack : 1.2376016274286827 V
+Vcell : 1.2376016274286827 V
+###########
+I :1.2 A
+
+PEM Efficiency : 0.7890689791314186
+Power : 1.4771371289340156 W
+Power-Stack : 1.4771371289340156 W
+Power-Thermal : -0.0011371289340155854 W
+VStack : 1.230947607445013 V
+Vcell : 1.230947607445013 V
+###########
+I :1.3 A
+
+PEM Efficiency : 0.7851113286904084
+Power : 1.5922057745841485 W
+Power-Stack : 1.5922057745841485 W
+Power-Thermal : 0.006794225415851485 W
+VStack : 1.2247736727570373 V
+Vcell : 1.2247736727570373 V
+###########
+I :1.4 A
+
+PEM Efficiency : 0.7814157591393215
+Power : 1.706612017960278 W
+Power-Stack : 1.706612017960278 W
+Power-Thermal : 0.015387982039721892 W
+VStack : 1.2190085842573415 V
+Vcell : 1.2190085842573415 V
+###########
+I :1.5 A
+
+PEM Efficiency : 0.7779460692405816
+Power : 1.820393802022961 W
+Power-Stack : 1.820393802022961 W
+Power-Thermal : 0.02460619797703889 W
+VStack : 1.2135958680153074 V
+Vcell : 1.2135958680153074 V
+###########
+I :1.6 A
+
+PEM Efficiency : 0.7746730751436158
+Power : 1.933583995558465 W
+Power-Stack : 1.933583995558465 W
+Power-Thermal : 0.03441600444153501 W
+VStack : 1.2084899972240406 V
+Vcell : 1.2084899972240406 V
+###########
+I :1.7 A
+
+PEM Efficiency : 0.771572906202878
+Power : 2.0462113472500323 W
+Power-Stack : 2.0462113472500323 W
+Power-Thermal : 0.04478865274996757 W
+VStack : 1.2036537336764896 V
+Vcell : 1.2036537336764896 V
+###########
+I :1.8 A
+
+PEM Efficiency : 0.7686257886450131
+Power : 2.158301214515197 W
+Power-Stack : 2.158301214515197 W
+Power-Thermal : 0.055698785484803184 W
+VStack : 1.1990562302862204 V
+Vcell : 1.1990562302862204 V
+###########
+I :1.9 A
+
+PEM Efficiency : 0.7658151585364871
+Power : 2.2698761299021477 W
+Power-Stack : 2.2698761299021477 W
+Power-Thermal : 0.06712387009785219 W
+VStack : 1.1946716473169199 V
+Vcell : 1.1946716473169199 V
+###########
+I :2.0 A
+
+PEM Efficiency : 0.7631270025420254
+Power : 2.380956247931119 W
+Power-Stack : 2.380956247931119 W
+Power-Thermal : 0.07904375206888092 W
+VStack : 1.1904781239655595 V
+Vcell : 1.1904781239655595 V
+###########
+I :2.1 A
+
+PEM Efficiency : 0.7605493596935309
+Power : 2.491559702356007 W
+Power-Stack : 2.491559702356007 W
+Power-Thermal : 0.09144029764399271 W
+VStack : 1.1864570011219082 V
+Vcell : 1.1864570011219082 V
+###########
+I :2.2 A
+
+PEM Efficiency : 0.7580719391696471
+Power : 2.601702895230229 W
+Power-Stack : 2.601702895230229 W
+Power-Thermal : 0.10429710476977118 W
+VStack : 1.1825922251046495 V
+Vcell : 1.1825922251046495 V
+###########
+I :2.3 A
+
+PEM Efficiency : 0.7556858231082223
+Power : 2.7114007333123014 W
+Power-Stack : 2.7114007333123014 W
+Power-Thermal : 0.11759926668769842 W
+VStack : 1.1788698840488268 V
+Vcell : 1.1788698840488268 V
+###########
+I :2.4 A
+
+PEM Efficiency : 0.753383232714607
+Power : 2.820666823283489 W
+Power-Stack : 2.820666823283489 W
+Power-Thermal : 0.13133317671651062 W
+VStack : 1.1752778430347872 V
+Vcell : 1.1752778430347872 V
+###########
+I :2.5 A
+
+PEM Efficiency : 0.7511573421474446
+Power : 2.929513634375034 W
+Power-Stack : 2.929513634375034 W
+Power-Thermal : 0.14548636562496609 W
+VStack : 1.1718054537500135 V
+Vcell : 1.1718054537500135 V
+###########
+I :2.6 A
+
+PEM Efficiency : 0.7490021289286691
+Power : 3.0379526349346824 W
+Power-Stack : 3.0379526349346824 W
+Power-Thermal : 0.16004736506531766 W
+VStack : 1.168443321128724 V
+Vcell : 1.168443321128724 V
+###########
+I :2.7 A
+
+PEM Efficiency : 0.7469122526002784
+Power : 3.145994407952373 W
+Power-Stack : 3.145994407952373 W
+Power-Thermal : 0.17500559204762714 W
+VStack : 1.1651831140564344 V
+Vcell : 1.1651831140564344 V
+###########
+I :2.8 A
+
+PEM Efficiency : 0.7448829554595718
+Power : 3.2536487494474096 W
+Power-Stack : 3.2536487494474096 W
+Power-Thermal : 0.1903512505525901 W
+VStack : 1.162017410516932 V
+Vcell : 1.162017410516932 V
+###########
+I :2.9 A
+
+PEM Efficiency : 0.7429099807210011
+Power : 3.360924752781809 W
+Power-Stack : 3.360924752781809 W
+Power-Thermal : 0.20607524721819082 W
+VStack : 1.1589395699247618 V
+Vcell : 1.1589395699247618 V
+###########
+I :3.0 A
+
+PEM Efficiency : 0.7409895045575802
+Power : 3.4678308813294754 W
+Power-Stack : 3.4678308813294754 W
+Power-Thermal : 0.22216911867052458 W
+VStack : 1.1559436271098251 V
+Vcell : 1.1559436271098251 V
+###########
+I :3.1 A
+
+PEM Efficiency : 0.7391180792895339
+Power : 3.5743750314441862 W
+Power-Stack : 3.5743750314441862 W
+Power-Thermal : 0.23862496855581392 W
+VStack : 1.153024203691673 V
+Vcell : 1.153024203691673 V
+###########
+I :3.2 A
+
+PEM Efficiency : 0.7372925855955158
+Power : 3.6805645872928157 W
+Power-Stack : 3.6805645872928157 W
+Power-Thermal : 0.2554354127071847 W
+VStack : 1.1501764335290048 V
+Vcell : 1.1501764335290048 V
+###########
+I :3.3 A
+
+PEM Efficiency : 0.7355101920796727
+Power : 3.786406468826155 W
+Power-Stack : 3.786406468826155 W
+Power-Thermal : 0.2725935311738447 W
+VStack : 1.1473958996442895 V
+Vcell : 1.1473958996442895 V
+###########
+I :3.4 A
+
+PEM Efficiency : 0.7337683208763324
+Power : 3.891907173928067 W
+Power-Stack : 3.891907173928067 W
+Power-Thermal : 0.29009282607193304 W
+VStack : 1.1446785805670785 V
+Vcell : 1.1446785805670785 V
+###########
+I :3.5 A
+
+PEM Efficiency : 0.7320646182417239
+Power : 3.9970728155998123 W
+Power-Stack : 3.9970728155998123 W
+Power-Thermal : 0.30792718440018774 W
+VStack : 1.1420208044570892 V
+Vcell : 1.1420208044570892 V
+###########
+I :3.6 A
+
+PEM Efficiency : 0.7303969292894269
+Power : 4.101909154889422 W
+Power-Stack : 4.101909154889422 W
+Power-Thermal : 0.3260908451105779 W
+VStack : 1.1394192096915061 V
+Vcell : 1.1394192096915061 V
+###########
+I :3.7 A
+
+PEM Efficiency : 0.7287632761880597
+Power : 4.206421630157481 W
+Power-Stack : 4.206421630157481 W
+Power-Thermal : 0.3445783698425195 W
+VStack : 1.136870710853373 V
+Vcell : 1.136870710853373 V
+###########
+I :3.8 A
+
+PEM Efficiency : 0.7271618392669932
+Power : 4.310615383174736 W
+Power-Stack : 4.310615383174736 W
+Power-Thermal : 0.36338461682526346 W
+VStack : 1.1343724692565096 V
+Vcell : 1.1343724692565096 V
+###########
+I :3.9 A
+
+PEM Efficiency : 0.7255909405767029
+Power : 4.414495282468661 W
+Power-Stack : 4.414495282468661 W
+Power-Thermal : 0.38250471753133874 W
+VStack : 1.1319218672996567 V
+Vcell : 1.1319218672996567 V
+###########
+I :4.0 A
+
+PEM Efficiency : 0.7240490295307427
+Power : 4.518065944271835 W
+Power-Stack : 4.518065944271835 W
+Power-Thermal : 0.401934055728165 W
+VStack : 1.1295164860679587 V
+Vcell : 1.1295164860679587 V
+###########
+I :4.1 A
+
+PEM Efficiency : 0.7225346703208392
+Power : 4.621331751372088 W
+Power-Stack : 4.621331751372088 W
+Power-Thermal : 0.4216682486279116 W
+VStack : 1.1271540857005093 V
+Vcell : 1.1271540857005093 V
+###########
+I :4.2 A
+
+PEM Efficiency : 0.7210465308486499
+Power : 4.724296870120354 W
+Power-Stack : 4.724296870120354 W
+Power-Thermal : 0.4417031298796457 W
+VStack : 1.1248325881238939 V
+Vcell : 1.1248325881238939 V
+###########
+I :4.3 A
+
+PEM Efficiency : 0.7195833729599981
+Power : 4.826965265815667 W
+Power-Stack : 4.826965265815667 W
+Power-Thermal : 0.4620347341843329 W
+VStack : 1.122550061817597 V
+Vcell : 1.122550061817597 V
+###########
+I :4.4 A
+
+PEM Efficiency : 0.7181440438018671
+Power : 4.929340716656017 W
+Power-Stack : 4.929340716656017 W
+Power-Thermal : 0.4826592833439837 W
+VStack : 1.1203047083309128 V
+Vcell : 1.1203047083309128 V
+###########
+I :4.5 A
+
+PEM Efficiency : 0.7167274681507255
+Power : 5.031426826418093 W
+Power-Stack : 5.031426826418093 W
+Power-Thermal : 0.5035731735819069 W
+VStack : 1.1180948503151318 V
+Vcell : 1.1180948503151318 V
+###########
+I :4.6 A
+
+PEM Efficiency : 0.7153326415840507
+Power : 5.133227036007147 W
+Power-Stack : 5.133227036007147 W
+Power-Thermal : 0.524772963992852 W
+VStack : 1.115918920871119 V
+Vcell : 1.115918920871119 V
+###########
+I :4.7 A
+
+PEM Efficiency : 0.713958624386224
+Power : 5.234744633999795 W
+Power-Stack : 5.234744633999795 W
+Power-Thermal : 0.5462553660002051 W
+VStack : 1.1137754540425095 V
+Vcell : 1.1137754540425095 V
+###########
+I :4.8 A
+
+PEM Efficiency : 0.7126045360960039
+Power : 5.335982766286877 W
+Power-Stack : 5.335982766286877 W
+Power-Thermal : 0.5680172337131225 W
+VStack : 1.1116630763097661 V
+Vcell : 1.1116630763097661 V
+###########
+I :4.9 A
+
+PEM Efficiency : 0.7112695506161859
+Power : 5.436944444910126 W
+Power-Stack : 5.436944444910126 W
+Power-Thermal : 0.5900555550898744 W
+VStack : 1.10958049896125 V
+Vcell : 1.10958049896125 V
+###########
+I :5.0 A
+
+PEM Efficiency : 0.7099528918172862
+Power : 5.537632556174832 W
+Power-Stack : 5.537632556174832 W
+Power-Thermal : 0.6123674438251681 W
+VStack : 1.1075265112349664 V
+Vcell : 1.1075265112349664 V
+###########
+I :5.1 A
+
+PEM Efficiency : 0.7086538295765383
+Power : 5.638049868110938 W
+Power-Stack : 5.638049868110938 W
+Power-Thermal : 0.6349501318890608 W
+VStack : 1.1054999741393998 V
+Vcell : 1.1054999741393998 V
+###########
+I :5.2 A
+
+PEM Efficiency : 0.7073716762014743
+Power : 5.7381990373463605 W
+Power-Stack : 5.7381990373463605 W
+Power-Thermal : 0.6578009626536397 W
+VStack : 1.1034998148743 V
+Vcell : 1.1034998148743 V
+###########
+I :5.3 A
+
+PEM Efficiency : 0.7061057831941243
+Power : 5.838082615449021 W
+Power-Stack : 5.838082615449021 W
+Power-Thermal : 0.6809173845509793 W
+VStack : 1.101525021782834 V
+Vcell : 1.101525021782834 V
+###########
+I :5.4 A
+
+PEM Efficiency : 0.7048555383176273
+Power : 5.937703054787692 W
+Power-Stack : 5.937703054787692 W
+Power-Thermal : 0.7042969452123086 W
+VStack : 1.0995746397754984 V
+Vcell : 1.0995746397754984 V
+###########
+I :5.5 A
+
+PEM Efficiency : 0.70362036293195
+Power : 6.03706271395613 W
+Power-Stack : 6.03706271395613 W
+Power-Thermal : 0.7279372860438691 W
+VStack : 1.097647766173842 V
+Vcell : 1.097647766173842 V
+###########
+I :5.6 A
+
+PEM Efficiency : 0.7023997095696176
+Power : 6.136163862800179 W
+Power-Stack : 6.136163862800179 W
+Power-Thermal : 0.7518361371998207 W
+VStack : 1.0957435469286034 V
+Vcell : 1.0957435469286034 V
+###########
+I :5.7 A
+
+PEM Efficiency : 0.7011930597259557
+Power : 6.235008687083197 W
+Power-Stack : 6.235008687083197 W
+Power-Thermal : 0.7759913129168026 W
+VStack : 1.0938611731724908 V
+Vcell : 1.0938611731724908 V
+###########
+I :5.8 A
+
+PEM Efficiency : 0.6999999218414613
+Power : 6.3335992928215425 W
+Power-Stack : 6.3335992928215425 W
+Power-Thermal : 0.8004007071784568 W
+VStack : 1.0919998780726798 V
+Vcell : 1.0919998780726798 V
+###########
+I :5.9 A
+
+PEM Efficiency : 0.6988198294565888
+Power : 6.431937710318444 W
+Power-Stack : 6.431937710318444 W
+Power-Thermal : 0.8250622896815563 W
+VStack : 1.0901589339522786 V
+Vcell : 1.0901589339522786 V
+###########
+I :6.0 A
+
+PEM Efficiency : 0.6976523395215593
+Power : 6.530025897921794 W
+Power-Stack : 6.530025897921794 W
+Power-Thermal : 0.8499741020782059 W
+VStack : 1.0883376496536323 V
+Vcell : 1.0883376496536323 V
+###########
+I :6.1 A
+
+PEM Efficiency : 0.6964970308458178
+Power : 6.627865745528802 W
+Power-Stack : 6.627865745528802 W
+Power-Thermal : 0.8751342544711973 W
+VStack : 1.0865353681194758 V
+Vcell : 1.0865353681194758 V
+###########
+I :6.2 A
+
+PEM Efficiency : 0.695353502673511
+Power : 6.725459077858199 W
+Power-Stack : 6.725459077858199 W
+Power-Thermal : 0.9005409221418009 W
+VStack : 1.0847514641706772 V
+Vcell : 1.0847514641706772 V
+###########
+I :6.3 A
+
+PEM Efficiency : 0.6942213733728804
+Power : 6.822807657508669 W
+Power-Stack : 6.822807657508669 W
+Power-Thermal : 0.9261923424913306 W
+VStack : 1.0829853424616935 V
+Vcell : 1.0829853424616935 V
+###########
+I :6.4 A
+
+PEM Efficiency : 0.6931002792288085
+Power : 6.919913187820424 W
+Power-Stack : 6.919913187820424 W
+Power-Thermal : 0.9520868121795758 W
+VStack : 1.0812364355969413 V
+Vcell : 1.0812364355969413 V
+###########
+I :6.5 A
+
+PEM Efficiency : 0.6919898733289177
+Power : 7.016777315555226 W
+Power-Stack : 7.016777315555226 W
+Power-Thermal : 0.9782226844447743 W
+VStack : 1.0795042023931116 V
+Vcell : 1.0795042023931116 V
+###########
+I :6.6 A
+
+PEM Efficiency : 0.69088982453465
+Power : 7.113401633408756 W
+Power-Stack : 7.113401633408756 W
+Power-Thermal : 1.004598366591243 W
+VStack : 1.077788126274054 V
+Vcell : 1.077788126274054 V
+###########
+I :6.7 A
+
+PEM Efficiency : 0.6897998165296582
+Power : 7.209787682367987 W
+Power-Stack : 7.209787682367987 W
+Power-Thermal : 1.0312123176320125 W
+VStack : 1.0760877137862668 V
+Vcell : 1.0760877137862668 V
+###########
+I :6.8 A
+
+PEM Efficiency : 0.6887195469386326
+Power : 7.3059369539250145 W
+Power-Stack : 7.3059369539250145 W
+Power-Thermal : 1.0580630460749854 W
+VStack : 1.0744024932242668 V
+Vcell : 1.0744024932242668 V
+###########
+I :6.9 A
+
+PEM Efficiency : 0.6876487265103938
+Power : 7.40185089215788 W
+Power-Stack : 7.40185089215788 W
+Power-Thermal : 1.0851491078421207 W
+VStack : 1.0727320133562144 V
+Vcell : 1.0727320133562144 V
+###########
+I :7.0 A
+
+PEM Efficiency : 0.6865870783597003
+Power : 7.497530895687927 W
+Power-Stack : 7.497530895687927 W
+Power-Thermal : 1.1124691043120731 W
+VStack : 1.0710758422411324 V
+Vcell : 1.0710758422411324 V
+###########
+I :7.1 A
+
+PEM Efficiency : 0.6855343372627701
+Power : 7.592978319522442 W
+Power-Stack : 7.592978319522442 W
+Power-Thermal : 1.1400216804775574 W
+VStack : 1.0694335661299215 V
+Vcell : 1.0694335661299215 V
+###########
+I :7.2 A
+
+PEM Efficiency : 0.6844902490020122
+Power : 7.688194476790601 W
+Power-Stack : 7.688194476790601 W
+Power-Thermal : 1.1678055232093993 W
+VStack : 1.067804788443139 V
+Vcell : 1.067804788443139 V
+###########
+I :7.3 A
+
+PEM Efficiency : 0.6834545697558863
+Power : 7.783180640380032 W
+Power-Stack : 7.783180640380032 W
+Power-Thermal : 1.1958193596199678 W
+VStack : 1.0661891288191825 V
+Vcell : 1.0661891288191825 V
+###########
+I :7.4 A
+
+PEM Efficiency : 0.6824270655302116
+Power : 7.877938044480764 W
+Power-Stack : 7.877938044480764 W
+Power-Thermal : 1.2240619555192358 W
+VStack : 1.0645862222271303 V
+Vcell : 1.0645862222271303 V
+###########
+I :7.5 A
+
+PEM Efficiency : 0.6814075116275811
+Power : 7.9724678860427 W
+Power-Stack : 7.9724678860427 W
+Power-Thermal : 1.2525321139573005 W
+VStack : 1.0629957181390266 V
+Vcell : 1.0629957181390266 V
+###########
+I :7.6 A
+
+PEM Efficiency : 0.6803956921518519
+Power : 8.066771326152356 W
+Power-Stack : 8.066771326152356 W
+Power-Thermal : 1.281228673847643 W
+VStack : 1.061417279756889 V
+Vcell : 1.061417279756889 V
+###########
+I :7.7 A
+
+PEM Efficiency : 0.6793913995449599
+Power : 8.160849491334059 W
+Power-Stack : 8.160849491334059 W
+Power-Thermal : 1.3101505086659413 W
+VStack : 1.0598505832901375 V
+Vcell : 1.0598505832901375 V
+###########
+I :7.8 A
+
+PEM Efficiency : 0.6783944341535526
+Power : 8.25470347478043 W
+Power-Stack : 8.25470347478043 W
+Power-Thermal : 1.3392965252195708 W
+VStack : 1.0582953172795422 V
+Vcell : 1.0582953172795422 V
+###########
+I :7.9 A
+
+PEM Efficiency : 0.6774046038231637
+Power : 8.348334337516672 W
+Power-Stack : 8.348334337516672 W
+Power-Thermal : 1.368665662483329 W
+VStack : 1.0567511819641355 V
+Vcell : 1.0567511819641355 V
+###########
+I :8.0 A
+
+PEM Efficiency : 0.6764217235178417
+Power : 8.441743109502665 W
+Power-Stack : 8.441743109502665 W
+Power-Thermal : 1.3982568904973345 W
+VStack : 1.0552178886878332 V
+Vcell : 1.0552178886878332 V
+###########
+I :8.1 A
+
+PEM Efficiency : 0.6754456149633413
+Power : 8.534930790676782 W
+Power-Stack : 8.534930790676782 W
+Power-Thermal : 1.4280692093232181 W
+VStack : 1.0536951593428125 V
+Vcell : 1.0536951593428125 V
+###########
+I :8.2 A
+
+PEM Efficiency : 0.6744761063121376
+Power : 8.627898351944864 W
+Power-Stack : 8.627898351944864 W
+Power-Thermal : 1.458101648055135 W
+VStack : 1.0521827258469347 V
+Vcell : 1.0521827258469347 V
+###########
+I :8.3 A
+
+PEM Efficiency : 0.6735130318286734
+Power : 8.720646736117663 W
+Power-Stack : 8.720646736117663 W
+Power-Thermal : 1.4883532638823367 W
+VStack : 1.0506803296527305 V
+Vcell : 1.0506803296527305 V
+###########
+I :8.4 A
+
+PEM Efficiency : 0.6725562315933873
+Power : 8.813176858799748 W
+Power-Stack : 8.813176858799748 W
+Power-Thermal : 1.5188231412002529 W
+VStack : 1.0491877212856842 V
+Vcell : 1.0491877212856842 V
+###########
+I :8.5 A
+
+PEM Efficiency : 0.6716055512241837
+Power : 8.905489609232676 W
+Power-Stack : 8.905489609232676 W
+Power-Thermal : 1.5495103907673236 W
+VStack : 1.0477046599097266 V
+Vcell : 1.0477046599097266 V
+###########
+I :8.6 A
+
+PEM Efficiency : 0.6706608416141229
+Power : 8.997585851095073 W
+Power-Stack : 8.997585851095073 W
+Power-Thermal : 1.5804141489049262 W
+VStack : 1.0462309129180318 V
+Vcell : 1.0462309129180318 V
+###########
+I :8.7 A
+
+PEM Efficiency : 0.669721958684202
+Power : 9.089466423261989 W
+Power-Stack : 9.089466423261989 W
+Power-Thermal : 1.6115335767380101 W
+VStack : 1.0447662555473551 V
+Vcell : 1.0447662555473551 V
+###########
+I :8.8 A
+
+PEM Efficiency : 0.668788763150189
+Power : 9.181132140525795 W
+Power-Stack : 9.181132140525795 W
+Power-Thermal : 1.6428678594742057 W
+VStack : 1.0433104705142948 V
+Vcell : 1.0433104705142948 V
+###########
+I :8.9 A
+
+PEM Efficiency : 0.6678611203025607
+Power : 9.272583794280754 W
+Power-Stack : 9.272583794280754 W
+Power-Thermal : 1.6744162057192469 W
+VStack : 1.0418633476719947 V
+Vcell : 1.0418633476719947 V
+###########
+I :9.0 A
+
+PEM Efficiency : 0.666938899798659
+Power : 9.363822153173173 W
+Power-Stack : 9.363822153173173 W
+Power-Thermal : 1.7061778468268267 W
+VStack : 1.0404246836859081 V
+Vcell : 1.0404246836859081 V
+###########
+I :9.1 A
+
+PEM Efficiency : 0.6660219754662559
+Power : 9.454847963718969 W
+Power-Stack : 9.454847963718969 W
+Power-Thermal : 1.7381520362810312 W
+VStack : 1.0389942817273592 V
+Vcell : 1.0389942817273592 V
+###########
+I :9.2 A
+
+PEM Efficiency : 0.6651102251177778
+Power : 9.545661950890349 W
+Power-Stack : 9.545661950890349 W
+Power-Thermal : 1.7703380491096508 W
+VStack : 1.0375719511837336 V
+Vcell : 1.0375719511837336 V
+###########
+I :9.3 A
+
+PEM Efficiency : 0.6642035303744972
+Power : 9.636264818673208 W
+Power-Stack : 9.636264818673208 W
+Power-Thermal : 1.8027351813267936 W
+VStack : 1.0361575073842157 V
+Vcell : 1.0361575073842157 V
+###########
+I :9.4 A
+
+PEM Efficiency : 0.6633017765000447
+Power : 9.726657250596658 W
+Power-Stack : 9.726657250596658 W
+Power-Thermal : 1.8353427494033432 W
+VStack : 1.0347507713400699 V
+Vcell : 1.0347507713400699 V
+###########
+I :9.5 A
+
+PEM Efficiency : 0.6624048522426575
+Power : 9.816839910236185 W
+Power-Stack : 9.816839910236185 W
+Power-Thermal : 1.8681600897638149 W
+VStack : 1.0333515694985458 V
+Vcell : 1.0333515694985458 V
+###########
+I :9.6 A
+
+PEM Efficiency : 0.6615126496856034
+Power : 9.906813441691597 W
+Power-Stack : 9.906813441691597 W
+Power-Thermal : 1.9011865583084022 W
+VStack : 1.0319597335095414 V
+Vcell : 1.0319597335095414 V
+###########
+I :9.7 A
+
+PEM Efficiency : 0.6606250641052779
+Power : 9.996578470041065 W
+Power-Stack : 9.996578470041065 W
+Power-Thermal : 1.934421529958934 W
+VStack : 1.0305751000042336 V
+Vcell : 1.0305751000042336 V
+###########
+I :9.8 A
+
+PEM Efficiency : 0.6597419938364971
+Power : 10.08613560177237 W
+Power-Stack : 10.08613560177237 W
+Power-Thermal : 1.9678643982276314 W
+VStack : 1.0291975103849356 V
+Vcell : 1.0291975103849356 V
+###########
+I :9.9 A
+
+PEM Efficiency : 0.6588633401445464
+Power : 10.175485425192376 W
+Power-Stack : 10.175485425192376 W
+Power-Thermal : 2.001514574807625 W
+VStack : 1.0278268106254924 V
+Vcell : 1.0278268106254924 V
+###########
+I :10.0 A
+
+PEM Efficiency : 0.6579890071035762
+Power : 10.26462851081579 W
+Power-Stack : 10.26462851081579 W
+Power-Thermal : 2.03537148918421 W
+VStack : 1.026462851081579 V
+Vcell : 1.026462851081579 V
+###########
+I :10.1 A
+
+PEM Efficiency : 0.6571189014809643
+Power : 10.353565411734074 W
+Power-Stack : 10.353565411734074 W
+Power-Thermal : 2.069434588265925 W
+VStack : 1.0251054863103044 V
+Vcell : 1.0251054863103044 V
+###########
+I :10.2 A
+
+PEM Efficiency : 0.6562529326272898
+Power : 10.442296663965434 W
+Power-Stack : 10.442296663965434 W
+Power-Thermal : 2.103703336034564 W
+VStack : 1.0237545748985721 V
+Vcell : 1.0237545748985721 V
+###########
+I :10.3 A
+
+PEM Efficiency : 0.6553910123715884
+Power : 10.530822786786683 W
+Power-Stack : 10.530822786786683 W
+Power-Thermal : 2.1381772132133174 W
+VStack : 1.022409979299678 V
+Vcell : 1.022409979299678 V
+###########
+I :10.4 A
+
+PEM Efficiency : 0.6545330549215813
+Power : 10.619144283047735 W
+Power-Stack : 10.619144283047735 W
+Power-Thermal : 2.1728557169522653 W
+VStack : 1.0210715656776668 V
+Vcell : 1.0210715656776668 V
+###########
+I :10.5 A
+
+PEM Efficiency : 0.6536789767685893
+Power : 10.707261639469493 W
+Power-Stack : 10.707261639469493 W
+Power-Thermal : 2.207738360530506 W
+VStack : 1.0197392037589994 V
+Vcell : 1.0197392037589994 V
+###########
+I :10.6 A
+
+PEM Efficiency : 0.6528286965968656
+Power : 10.79517532692577 W
+Power-Stack : 10.79517532692577 W
+Power-Thermal : 2.242824673074229 W
+VStack : 1.0184127666911105 V
+Vcell : 1.0184127666911105 V
+###########
+I :10.7 A
+
+PEM Efficiency : 0.6519821351970941
+Power : 10.882885800709897 W
+Power-Stack : 10.882885800709897 W
+Power-Thermal : 2.278114199290103 W
+VStack : 1.017092130907467 V
+Vcell : 1.017092130907467 V
+###########
+I :10.8 A
+
+PEM Efficiency : 0.6511392153838197
+Power : 10.970393500786596 W
+Power-Stack : 10.970393500786596 W
+Power-Thermal : 2.3136064992134044 W
+VStack : 1.0157771759987588 V
+Vcell : 1.0157771759987588 V
+###########
+I :10.9 A
+
+PEM Efficiency : 0.6502998619165927
+Power : 11.057698852029743 W
+Power-Stack : 11.057698852029743 W
+Power-Thermal : 2.3493011479702575 W
+VStack : 1.0144677845898846 V
+Vcell : 1.0144677845898846 V
+###########
+I :11.0 A
+
+PEM Efficiency : 0.6494640014246192
+Power : 11.144802264446467 W
+Power-Stack : 11.144802264446467 W
+Power-Thermal : 2.385197735553533 W
+VStack : 1.013163842222406 V
+Vcell : 1.013163842222406 V
+###########
+I :11.1 A
+
+PEM Efficiency : 0.6486315623347271
+Power : 11.231704133388135 W
+Power-Stack : 11.231704133388135 W
+Power-Thermal : 2.4212958666118642 W
+VStack : 1.0118652372421744 V
+Vcell : 1.0118652372421744 V
+###########
+I :11.2 A
+
+PEM Efficiency : 0.6478024748024653
+Power : 11.318404839748673 W
+Power-Stack : 11.318404839748673 W
+Power-Thermal : 2.4575951602513255 W
+VStack : 1.010571860691846 V
+Vcell : 1.010571860691846 V
+###########
+I :11.3 A
+
+PEM Efficiency : 0.6469766706461694
+Power : 11.404904750150674 W
+Power-Stack : 11.404904750150674 W
+Power-Thermal : 2.494095249849327 W
+VStack : 1.0092836062080242 V
+Vcell : 1.0092836062080242 V
+###########
+I :11.4 A
+
+PEM Efficiency : 0.6461540832838325
+Power : 11.491204217119677 W
+Power-Stack : 11.491204217119677 W
+Power-Thermal : 2.5307957828803236 W
+VStack : 1.0080003699227786 V
+Vcell : 1.0080003699227786 V
+###########
+I :11.5 A
+
+PEM Efficiency : 0.6453346476726342
+Power : 11.577303579247056 W
+Power-Stack : 11.577303579247056 W
+Power-Thermal : 2.567696420752943 W
+VStack : 1.0067220503693093 V
+Vcell : 1.0067220503693093 V
+###########
+I :11.6 A
+
+PEM Efficiency : 0.6445183002509853
+Power : 11.663203161341832 W
+Power-Stack : 11.663203161341832 W
+Power-Thermal : 2.604796838658168 W
+VStack : 1.0054485483915372 V
+Vcell : 1.0054485483915372 V
+###########
+I :11.7 A
+
+PEM Efficiency : 0.6437049788829582
+Power : 11.748903274571752 W
+Power-Stack : 11.748903274571752 W
+Power-Thermal : 2.642096725428246 W
+VStack : 1.0041797670574149 V
+Vcell : 1.0041797670574149 V
+###########
+I :11.8 A
+
+PEM Efficiency : 0.6428946228049783
+Power : 11.834404216594043 W
+Power-Stack : 11.834404216594043 W
+Power-Thermal : 2.6795957834059583 W
+VStack : 1.0029156115757663 V
+Vcell : 1.0029156115757663 V
+###########
+I :11.9 A
+
+PEM Efficiency : 0.6420871725746595
+Power : 11.919706271675981 W
+Power-Stack : 11.919706271675981 W
+Power-Thermal : 2.7172937283240195 W
+VStack : 1.001655989216469 V
+Vcell : 1.001655989216469 V
+###########
+I :12.0 A
+
+PEM Efficiency : 0.6412825700216748
+Power : 12.004809710805754 W
+Power-Stack : 12.004809710805754 W
+Power-Thermal : 2.755190289194246 W
+VStack : 1.0004008092338128 V
+Vcell : 1.0004008092338128 V
+###########
+I :12.1 A
+
+PEM Efficiency : 0.6404807582005565
+Power : 12.089714791793705 W
+Power-Stack : 12.089714791793705 W
+Power-Thermal : 2.793285208206295 W
+VStack : 0.9991499827928682 V
+Vcell : 0.9991499827928682 V
+###########
+I :12.2 A
+
+PEM Efficiency : 0.6396816813453303
+Power : 12.174421759364325 W
+Power-Stack : 12.174421759364325 W
+Power-Thermal : 2.8315782406356735 W
+VStack : 0.9979034228987153 V
+Vcell : 0.9979034228987153 V
+###########
+I :12.3 A
+
+PEM Efficiency : 0.6388852848258906
+Power : 12.25893084523919 W
+Power-Stack : 12.25893084523919 W
+Power-Thermal : 2.87006915476081 W
+VStack : 0.9966610443283894 V
+Vcell : 0.9966610443283894 V
+###########
+I :12.4 A
+
+PEM Efficiency : 0.6380915151060293
+Power : 12.343242268211034 W
+Power-Stack : 12.343242268211034 W
+Power-Thermal : 2.9087577317889663 W
+VStack : 0.9954227635654059 V
+Vcell : 0.9954227635654059 V
+###########
+I :12.5 A
+
+PEM Efficiency : 0.6373003197030366
+Power : 12.427356234209215 W
+Power-Stack : 12.427356234209215 W
+Power-Thermal : 2.947643765790785 W
+VStack : 0.9941884987367372 V
+Vcell : 0.9941884987367372 V
+###########
+I :12.6 A
+
+PEM Efficiency : 0.6365116471487954
+Power : 12.511272936356724 W
+Power-Stack : 12.511272936356724 W
+Power-Thermal : 2.986727063643276 W
+VStack : 0.9929581695521209 V
+Vcell : 0.9929581695521209 V
+###########
+I :12.7 A
+
+PEM Efficiency : 0.6357254469522987
+Power : 12.59499255501894 W
+Power-Stack : 12.59499255501894 W
+Power-Thermal : 3.0260074449810577 W
+VStack : 0.991731697245586 V
+Vcell : 0.991731697245586 V
+###########
+I :12.8 A
+
+PEM Efficiency : 0.6349416695635154
+Power : 12.678515257844277 W
+Power-Stack : 12.678515257844277 W
+Power-Thermal : 3.0654847421557236 W
+VStack : 0.9905090045190841 V
+Vcell : 0.9905090045190841 V
+###########
+I :12.9 A
+
+PEM Efficiency : 0.6341602663385453
+Power : 12.761841199796885 W
+Power-Stack : 12.761841199796885 W
+Power-Thermal : 3.1051588002031143 W
+VStack : 0.9892900154881307 V
+Vcell : 0.9892900154881307 V
+###########
+I :13.0 A
+
+PEM Efficiency : 0.6333811895059946
+Power : 12.844970523181573 W
+Power-Stack : 12.844970523181573 W
+Power-Thermal : 3.1450294768184275 W
+VStack : 0.9880746556293517 V
+Vcell : 0.9880746556293517 V
+###########
+I :13.1 A
+
+PEM Efficiency : 0.6326043921345192
+Power : 12.927903357661036 W
+Power-Stack : 12.927903357661036 W
+Power-Thermal : 3.185096642338963 W
+VStack : 0.9868628517298501 V
+Vcell : 0.9868628517298501 V
+###########
+I :13.2 A
+
+PEM Efficiency : 0.6318298281014744
+Power : 13.01063982026556 W
+Power-Stack : 13.01063982026556 W
+Power-Thermal : 3.2253601797344382 W
+VStack : 0.9856545318383001 V
+Vcell : 0.9856545318383001 V
+###########
+I :13.3 A
+
+PEM Efficiency : 0.6310574520626222
+Power : 13.093180015395285 W
+Power-Stack : 13.093180015395285 W
+Power-Thermal : 3.2658199846047142 W
+VStack : 0.9844496252176906 V
+Vcell : 0.9844496252176906 V
+###########
+I :13.4 A
+
+PEM Efficiency : 0.6302872194228443
+Power : 13.175524034815139 W
+Power-Stack : 13.175524034815139 W
+Power-Thermal : 3.3064759651848625 W
+VStack : 0.9832480622996371 V
+Vcell : 0.9832480622996371 V
+###########
+I :13.5 A
+
+PEM Efficiency : 0.6295190863078136
+Power : 13.257671957642556 W
+Power-Stack : 13.257671957642556 W
+Power-Thermal : 3.3473280423574447 W
+VStack : 0.9820497746401893 V
+Vcell : 0.9820497746401893 V
+###########
+I :13.6 A
+
+PEM Efficiency : 0.6287530095365773
+Power : 13.339623850328024 W
+Power-Stack : 13.339623850328024 W
+Power-Thermal : 3.3883761496719744 W
+VStack : 0.9808546948770607 V
+Vcell : 0.9808546948770607 V
+###########
+I :13.7 A
+
+PEM Efficiency : 0.6279889465950115
+Power : 13.421379766628586 W
+Power-Stack : 13.421379766628586 W
+Power-Thermal : 3.4296202333714128 W
+VStack : 0.979662756688218 V
+Vcell : 0.979662756688218 V
+###########
+I :13.8 A
+
+PEM Efficiency : 0.6272268556101052
+Power : 13.502939747574347 W
+Power-Stack : 13.502939747574347 W
+Power-Thermal : 3.4710602524256546 W
+VStack : 0.9784738947517642 V
+Vcell : 0.9784738947517642 V
+###########
+I :13.9 A
+
+PEM Efficiency : 0.6264666953250331
+Power : 13.584303821428017 W
+Power-Stack : 13.584303821428017 W
+Power-Thermal : 3.5126961785719835 W
+VStack : 0.9772880447070516 V
+Vcell : 0.9772880447070516 V
+###########
+I :14.0 A
+
+PEM Efficiency : 0.6257084250749828
+Power : 13.665472003637626 W
+Power-Stack : 13.665472003637626 W
+Power-Thermal : 3.554527996362374 W
+VStack : 0.9761051431169733 V
+Vcell : 0.9761051431169733 V
+###########
+I :14.1 A
+
+PEM Efficiency : 0.6249520047637008
+Power : 13.746444296782363 W
+Power-Stack : 13.746444296782363 W
+Power-Thermal : 3.5965557032176365 W
+VStack : 0.9749251274313733 V
+Vcell : 0.9749251274313733 V
+###########
+I :14.2 A
+
+PEM Efficiency : 0.6241973948407217
+Power : 13.827220690511664 W
+Power-Stack : 13.827220690511664 W
+Power-Thermal : 3.6387793094883336 W
+VStack : 0.9737479359515258 V
+Vcell : 0.9737479359515258 V
+###########
+I :14.3 A
+
+PEM Efficiency : 0.623444556279251
+Power : 13.907801161477535 W
+Power-Stack : 13.907801161477535 W
+Power-Thermal : 3.6811988385224668 W
+VStack : 0.9725735077956317 V
+Vcell : 0.9725735077956317 V
+###########
+I :14.4 A
+
+PEM Efficiency : 0.6226934505546711
+Power : 13.988185673260134 W
+Power-Stack : 13.988185673260134 W
+Power-Thermal : 3.723814326739867 W
+VStack : 0.971401782865287 V
+Vcell : 0.971401782865287 V
+###########
+I :14.5 A
+
+PEM Efficiency : 0.6219440396236384
+Power : 14.068374176286701 W
+Power-Stack : 14.068374176286701 W
+Power-Thermal : 3.7666258237132992 W
+VStack : 0.9702327018128759 V
+Vcell : 0.9702327018128759 V
+###########
+I :14.6 A
+
+PEM Efficiency : 0.6211962859037485
+Power : 14.148366607743776 W
+Power-Stack : 14.148366607743776 W
+Power-Thermal : 3.809633392256223 W
+VStack : 0.9690662060098477 V
+Vcell : 0.9690662060098477 V
+###########
+I :14.7 A
+
+PEM Efficiency : 0.6204501522537392
+Power : 14.228162891482746 W
+Power-Stack : 14.228162891482746 W
+Power-Thermal : 3.852837108517252 W
+VStack : 0.9679022375158332 V
+Vcell : 0.9679022375158332 V
+###########
+I :14.8 A
+
+PEM Efficiency : 0.6197056019542068
+Power : 14.307762937918728 W
+Power-Stack : 14.307762937918728 W
+Power-Thermal : 3.896237062081273 W
+VStack : 0.9667407390485626 V
+Vcell : 0.9667407390485626 V
+###########
+I :14.9 A
+
+PEM Efficiency : 0.6189625986888149
+Power : 14.387166643922813 W
+Power-Stack : 14.387166643922813 W
+Power-Thermal : 3.939833356077187 W
+VStack : 0.9655816539545512 V
+Vcell : 0.9655816539545512 V
+###########
+I :15.0 A
+
+PEM Efficiency : 0.6182211065259663
+Power : 14.466373892707612 W
+Power-Stack : 14.466373892707612 W
+Power-Thermal : 3.983626107292388 W
+VStack : 0.9644249261805075 V
+Vcell : 0.9644249261805075 V
+###########
+I :15.1 A
+
+PEM Efficiency : 0.6174810899009228
+Power : 14.545384553706137 W
+Power-Stack : 14.545384553706137 W
+Power-Thermal : 4.027615446293862 W
+VStack : 0.9632705002454396 V
+Vcell : 0.9632705002454396 V
+###########
+I :15.2 A
+
+PEM Efficiency : 0.6167425135983463
+Power : 14.624198482443989 W
+Power-Stack : 14.624198482443989 W
+Power-Thermal : 4.07180151755601 W
+VStack : 0.9621183212134203 V
+Vcell : 0.9621183212134203 V
+###########
+I :15.3 A
+
+PEM Efficiency : 0.616005342735245
+Power : 14.702815520404828 W
+Power-Stack : 14.702815520404828 W
+Power-Thermal : 4.116184479595173 W
+VStack : 0.9609683346669822 V
+Vcell : 0.9609683346669822 V
+###########
+I :15.4 A
+
+PEM Efficiency : 0.6152695427443009
+Power : 14.781235494889087 W
+Power-Stack : 14.781235494889087 W
+Power-Thermal : 4.1607645051109134 W
+VStack : 0.9598204866811095 V
+Vcell : 0.9598204866811095 V
+###########
+I :15.5 A
+
+PEM Efficiency : 0.6145350793575669
+Power : 14.859458218865967 W
+Power-Stack : 14.859458218865967 W
+Power-Thermal : 4.205541781134031 W
+VStack : 0.9586747237978044 V
+Vcell : 0.9586747237978044 V
+###########
+I :15.6 A
+
+PEM Efficiency : 0.6138019185905063
+Power : 14.937483490818561 W
+Power-Stack : 14.937483490818561 W
+Power-Thermal : 4.2505165091814385 W
+VStack : 0.9575309930011898 V
+Vcell : 0.9575309930011898 V
+###########
+I :15.7 A
+
+PEM Efficiency : 0.6130700267263667
+Power : 15.015311094582172 W
+Power-Stack : 15.015311094582172 W
+Power-Thermal : 4.295688905417827 W
+VStack : 0.956389241693132 V
+Vcell : 0.956389241693132 V
+###########
+I :15.8 A
+
+PEM Efficiency : 0.6123393703008664
+Power : 15.092940799175757 W
+Power-Stack : 15.092940799175757 W
+Power-Thermal : 4.341059200824243 W
+VStack : 0.9552494176693517 V
+Vcell : 0.9552494176693517 V
+###########
+I :15.9 A
+
+PEM Efficiency : 0.6116099160871786
+Power : 15.170372358626379 W
+Power-Stack : 15.170372358626379 W
+Power-Thermal : 4.386627641373622 W
+VStack : 0.9541114690959986 V
+Vcell : 0.9541114690959986 V
+###########
+I :16.0 A
+
+PEM Efficiency : 0.6108816310811995
+Power : 15.247605511786741 W
+Power-Stack : 15.247605511786741 W
+Power-Thermal : 4.432394488213259 W
+VStack : 0.9529753444866713 V
+Vcell : 0.9529753444866713 V
+###########
+I :16.1 A
+
+PEM Efficiency : 0.6101544824870845
+Power : 15.324639982145618 W
+Power-Stack : 15.324639982145618 W
+Power-Thermal : 4.478360017854385 W
+VStack : 0.9518409926798519 V
+Vcell : 0.9518409926798519 V
+###########
+I :16.2 A
+
+PEM Efficiency : 0.6094284377030386
+Power : 15.401475477631191 W
+Power-Stack : 15.401475477631191 W
+Power-Thermal : 4.524524522368808 W
+VStack : 0.9507083628167402 V
+Vcell : 0.9507083628167402 V
+###########
+I :16.3 A
+
+PEM Efficiency : 0.6087034643073475
+Power : 15.478111690407234 W
+Power-Stack : 15.478111690407234 W
+Power-Thermal : 4.5708883095927675 W
+VStack : 0.9495774043194621 V
+Vcell : 0.9495774043194621 V
+###########
+I :16.4 A
+
+PEM Efficiency : 0.6079795300446383
+Power : 15.554548296662025 W
+Power-Stack : 15.554548296662025 W
+Power-Thermal : 4.617451703337973 W
+VStack : 0.9484480668696358 V
+Vcell : 0.9484480668696358 V
+###########
+I :16.5 A
+
+PEM Efficiency : 0.6072566028123524
+Power : 15.63078495638995 W
+Power-Stack : 15.63078495638995 W
+Power-Thermal : 4.6642150436100485 W
+VStack : 0.9473203003872698 V
+Vcell : 0.9473203003872698 V
+###########
+I :16.6 A
+
+PEM Efficiency : 0.6065346506474247
+Power : 15.706821313165714 W
+Power-Stack : 15.706821313165714 W
+Power-Thermal : 4.7111786868342875 W
+VStack : 0.9461940550099827 V
+Vcell : 0.9461940550099827 V
+###########
+I :16.7 A
+
+PEM Efficiency : 0.6058136417131522
+Power : 15.782656993911042 W
+Power-Stack : 15.782656993911042 W
+Power-Thermal : 4.758343006088957 W
+VStack : 0.9450692810725175 V
+Vcell : 0.9450692810725175 V
+###########
+I :16.8 A
+
+PEM Efficiency : 0.6050935442862435
+Power : 15.85829160865387 W
+Power-Stack : 15.85829160865387 W
+Power-Thermal : 4.805708391346131 W
+VStack : 0.9439459290865398 V
+Vcell : 0.9439459290865398 V
+###########
+I :16.9 A
+
+PEM Efficiency : 0.6043743267440375
+Power : 15.933724750279803 W
+Power-Stack : 15.933724750279803 W
+Power-Thermal : 4.853275249720195 W
+VStack : 0.9428239497206985 V
+Vcell : 0.9428239497206985 V
+###########
+I :17.0 A
+
+PEM Efficiency : 0.6036559575518805
+Power : 16.00895599427587 W
+Power-Stack : 16.00895599427587 W
+Power-Thermal : 4.901044005724129 W
+VStack : 0.9417032937809335 V
+Vcell : 0.9417032937809335 V
+###########
+I :17.1 A
+
+PEM Efficiency : 0.6029384052506526
+Power : 16.083984898466408 W
+Power-Stack : 16.083984898466408 W
+Power-Thermal : 4.949015101533592 W
+VStack : 0.940583912191018 V
+Vcell : 0.940583912191018 V
+###########
+I :17.2 A
+
+PEM Efficiency : 0.602221638444431
+Power : 16.158811002740975 W
+Power-Stack : 16.158811002740975 W
+Power-Thermal : 4.997188997259024 W
+VStack : 0.9394657559733125 V
+Vcell : 0.9394657559733125 V
+###########
+I :17.3 A
+
+PEM Efficiency : 0.6015056257882837
+Power : 16.233433828774203 W
+Power-Stack : 16.233433828774203 W
+Power-Thermal : 5.0455661712258 W
+VStack : 0.9383487762297226 V
+Vcell : 0.9383487762297226 V
+###########
+I :17.4 A
+
+PEM Efficiency : 0.6007903359761817
+Power : 16.307852879737474 W
+Power-Stack : 16.307852879737474 W
+Power-Thermal : 5.094147120262522 W
+VStack : 0.9372329241228435 V
+Vcell : 0.9372329241228435 V
+###########
+I :17.5 A
+
+PEM Efficiency : 0.6000757377290225
+Power : 16.382067640002315 W
+Power-Stack : 16.382067640002315 W
+Power-Thermal : 5.142932359997685 W
+VStack : 0.9361181508572751 V
+Vcell : 0.9361181508572751 V
+###########
+I :17.6 A
+
+PEM Efficiency : 0.5993617997827545
+Power : 16.45607757483531 W
+Power-Stack : 16.45607757483531 W
+Power-Thermal : 5.191922425164692 W
+VStack : 0.935004407661097 V
+Vcell : 0.935004407661097 V
+###########
+I :17.7 A
+
+PEM Efficiency : 0.5986484908765953
+Power : 16.529882130084548 W
+Power-Stack : 16.529882130084548 W
+Power-Thermal : 5.241117869915449 W
+VStack : 0.9338916457674887 V
+Vcell : 0.9338916457674887 V
+###########
+I :17.8 A
+
+PEM Efficiency : 0.5979357797413344
+Power : 16.603480731857374 W
+Power-Stack : 16.603480731857374 W
+Power-Thermal : 5.290519268142626 W
+VStack : 0.9327798163964817 V
+Vcell : 0.9327798163964817 V
+###########
+I :17.9 A
+
+PEM Efficiency : 0.5972236350877123
+Power : 16.676872786189275 W
+Power-Stack : 16.676872786189275 W
+Power-Thermal : 5.340127213810722 W
+VStack : 0.9316688707368311 V
+Vcell : 0.9316688707368311 V
+###########
+I :18.0 A
+
+PEM Efficiency : 0.5965120255948688
+Power : 16.750057678703918 W
+Power-Stack : 16.750057678703918 W
+Power-Thermal : 5.38994232129608 W
+VStack : 0.9305587599279955 V
+Vcell : 0.9305587599279955 V
+###########
+I :18.1 A
+
+PEM Efficiency : 0.5958009198988534
+Power : 16.823034774264027 W
+Power-Stack : 16.823034774264027 W
+Power-Thermal : 5.439965225735973 W
+VStack : 0.9294494350422114 V
+Vcell : 0.9294494350422114 V
+###########
+I :18.2 A
+
+PEM Efficiency : 0.5950902865811867
+Power : 16.895803416613052 W
+Power-Stack : 16.895803416613052 W
+Power-Thermal : 5.490196583386948 W
+VStack : 0.9283408470666512 V
+Vcell : 0.9283408470666512 V
+###########
+I :18.3 A
+
+PEM Efficiency : 0.5943800941574697
+Power : 16.968362928007448 W
+Power-Stack : 16.968362928007448 W
+Power-Thermal : 5.5406370719925535 W
+VStack : 0.9272329468856528 V
+Vcell : 0.9272329468856528 V
+###########
+I :18.4 A
+
+PEM Efficiency : 0.5936703110660336
+Power : 17.040712608839428 W
+Power-Stack : 17.040712608839428 W
+Power-Thermal : 5.591287391160571 W
+VStack : 0.9261256852630124 V
+Vcell : 0.9261256852630124 V
+###########
+I :18.5 A
+
+PEM Efficiency : 0.5929609056566177
+Power : 17.112851737249986 W
+Power-Stack : 17.112851737249986 W
+Power-Thermal : 5.642148262750013 W
+VStack : 0.9250190128243236 V
+Vcell : 0.9250190128243236 V
+###########
+I :18.6 A
+
+PEM Efficiency : 0.5922518461790761
+Power : 17.184779568732072 W
+Power-Stack : 17.184779568732072 W
+Power-Thermal : 5.693220431267929 W
+VStack : 0.9239128800393587 V
+Vcell : 0.9239128800393587 V
+###########
+I :18.7 A
+
+PEM Efficiency : 0.5915431007721006
+Power : 17.25649533572372 W
+Power-Stack : 17.25649533572372 W
+Power-Thermal : 5.744504664276279 W
+VStack : 0.922807237204477 V
+Vcell : 0.922807237204477 V
+###########
+I :18.8 A
+
+PEM Efficiency : 0.5908346374519565
+Power : 17.32799824719098 W
+Power-Stack : 17.32799824719098 W
+Power-Thermal : 5.796001752809019 W
+VStack : 0.9217020344250522 V
+Vcell : 0.9217020344250522 V
+###########
+I :18.9 A
+
+PEM Efficiency : 0.5901264241012222
+Power : 17.399287488200436 W
+Power-Stack : 17.399287488200436 W
+Power-Thermal : 5.847712511799563 W
+VStack : 0.9205972215979067 V
+Vcell : 0.9205972215979067 V
+###########
+I :19.0 A
+
+PEM Efficiency : 0.5894184284575297
+Power : 17.470362219481178 W
+Power-Stack : 17.470362219481178 W
+Power-Thermal : 5.8996377805188205 W
+VStack : 0.9194927483937463 V
+Vcell : 0.9194927483937463 V
+###########
+I :19.1 A
+
+PEM Efficiency : 0.5887106181022951
+Power : 17.541221576975985 W
+Power-Stack : 17.541221576975985 W
+Power-Thermal : 5.951778423024015 W
+VStack : 0.9183885642395804 V
+Vcell : 0.9183885642395804 V
+###########
+I :19.2 A
+
+PEM Efficiency : 0.588002960449438
+Power : 17.611864671381568 W
+Power-Stack : 17.611864671381568 W
+Power-Thermal : 6.00413532861843 W
+VStack : 0.9172846183011234 V
+Vcell : 0.9172846183011234 V
+###########
+I :19.3 A
+
+PEM Efficiency : 0.5872954227340788
+Power : 17.682290587677645 W
+Power-Stack : 17.682290587677645 W
+Power-Thermal : 6.0567094123223555 W
+VStack : 0.9161808594651629 V
+Vcell : 0.9161808594651629 V
+###########
+I :19.4 A
+
+PEM Efficiency : 0.5865879720012114
+Power : 17.75249838464466 W
+Power-Stack : 17.75249838464466 W
+Power-Thermal : 6.109501615355338 W
+VStack : 0.9150772363218898 V
+Vcell : 0.9150772363218898 V
+###########
+I :19.5 A
+
+PEM Efficiency : 0.5858805750943443
+Power : 17.822487094369958 W
+Power-Stack : 17.822487094369958 W
+Power-Thermal : 6.162512905630043 W
+VStack : 0.9139736971471772 V
+Vcell : 0.9139736971471772 V
+###########
+I :19.6 A
+
+PEM Efficiency : 0.5851731986441038
+Power : 17.89225572174212 W
+Power-Stack : 17.89225572174212 W
+Power-Thermal : 6.215744278257882 W
+VStack : 0.912870189884802 V
+Vcell : 0.912870189884802 V
+###########
+I :19.7 A
+
+PEM Efficiency : 0.5844658090567932
+Power : 17.96180324393337 W
+Power-Stack : 17.96180324393337 W
+Power-Thermal : 6.269196756066627 W
+VStack : 0.9117666621285976 V
+Vcell : 0.9117666621285976 V
+###########
+I :19.8 A
+
+PEM Efficiency : 0.5837583725029035
+Power : 18.031128609869686 W
+Power-Stack : 18.031128609869686 W
+Power-Thermal : 6.322871390130315 W
+VStack : 0.9106630611045295 V
+Vcell : 0.9106630611045295 V
+###########
+I :19.9 A
+
+PEM Efficiency : 0.5830508549055692
+Power : 18.10023073968849 W
+Power-Stack : 18.10023073968849 W
+Power-Thermal : 6.376769260311507 W
+VStack : 0.909559333652688 V
+Vcell : 0.909559333652688 V
+###########
+I :20.0 A
+
+PEM Efficiency : 0.5823432219289632
+Power : 18.16910852418365 W
+Power-Stack : 18.16910852418365 W
+Power-Thermal : 6.430891475816349 W
+VStack : 0.9084554262091825 V
+Vcell : 0.9084554262091825 V
+###########
+I :20.1 A
+
+PEM Efficiency : 0.5816354389666256
+Power : 18.237760824237515 W
+Power-Stack : 18.237760824237515 W
+Power-Thermal : 6.485239175762486 W
+VStack : 0.907351284787936 V
+Vcell : 0.907351284787936 V
+###########
+I :20.2 A
+
+PEM Efficiency : 0.5809274711297219
+Power : 18.306186470239794 W
+Power-Stack : 18.306186470239794 W
+Power-Thermal : 6.539813529760203 W
+VStack : 0.9062468549623661 V
+Vcell : 0.9062468549623661 V
+###########
+I :20.3 A
+
+PEM Efficiency : 0.5802192832352218
+Power : 18.374384261493006 W
+Power-Stack : 18.374384261493006 W
+Power-Thermal : 6.594615738506996 W
+VStack : 0.905142081846946 V
+Vcell : 0.905142081846946 V
+###########
+I :20.4 A
+
+PEM Efficiency : 0.5795108397939975
+Power : 18.442352965604176 W
+Power-Stack : 18.442352965604176 W
+Power-Thermal : 6.649647034395823 W
+VStack : 0.9040369100786361 V
+Vcell : 0.9040369100786361 V
+###########
+I :20.5 A
+
+PEM Efficiency : 0.5788021049988329
+Power : 18.510091317862678 W
+Power-Stack : 18.510091317862678 W
+Power-Thermal : 6.704908682137323 W
+VStack : 0.9029312837981793 V
+Vcell : 0.9029312837981793 V
+###########
+I :20.6 A
+
+PEM Efficiency : 0.5780930427123385
+Power : 18.577598020603716 W
+Power-Stack : 18.577598020603716 W
+Power-Thermal : 6.760401979396287 W
+VStack : 0.9018251466312482 V
+Vcell : 0.9018251466312482 V
+###########
+I :20.7 A
+
+PEM Efficiency : 0.5773836164547693
+Power : 18.64487174255741 W
+Power-Stack : 18.64487174255741 W
+Power-Thermal : 6.816128257442588 W
+VStack : 0.9007184416694402 V
+Vcell : 0.9007184416694402 V
+###########
+I :20.8 A
+
+PEM Efficiency : 0.5766737893917349
+Power : 18.711911118183014 W
+Power-Stack : 18.711911118183014 W
+Power-Thermal : 6.872088881816987 W
+VStack : 0.8996111114511064 V
+Vcell : 0.8996111114511064 V
+###########
+I :20.9 A
+
+PEM Efficiency : 0.5759635243218035
+Power : 18.778714746988083 W
+Power-Stack : 18.778714746988083 W
+Power-Thermal : 6.928285253011916 W
+VStack : 0.8985030979420136 V
+Vcell : 0.8985030979420136 V
+###########
+I :21.0 A
+
+PEM Efficiency : 0.5752527836639879
+Power : 18.845281192832246 W
+Power-Stack : 18.845281192832246 W
+Power-Thermal : 6.984718807167755 W
+VStack : 0.8973943425158212 V
+Vcell : 0.8973943425158212 V
+###########
+I :21.1 A
+
+PEM Efficiency : 0.5745415294451122
+Power : 18.911608983215313 W
+Power-Stack : 18.911608983215313 W
+Power-Thermal : 7.041391016784687 W
+VStack : 0.896284785934375 V
+Vcell : 0.896284785934375 V
+###########
+I :21.2 A
+
+PEM Efficiency : 0.5738297232870508
+Power : 18.977696608549344 W
+Power-Stack : 18.977696608549344 W
+Power-Thermal : 7.098303391450655 W
+VStack : 0.8951743683277993 V
+Vcell : 0.8951743683277993 V
+###########
+I :21.3 A
+
+PEM Efficiency : 0.5731173263938389
+Power : 19.04354252141448 W
+Power-Stack : 19.04354252141448 W
+Power-Thermal : 7.15545747858552 W
+VStack : 0.8940630291743887 V
+Vcell : 0.8940630291743887 V
+###########
+I :21.4 A
+
+PEM Efficiency : 0.5724042995386417
+Power : 19.109145135798016 W
+Power-Stack : 19.109145135798016 W
+Power-Thermal : 7.212854864201983 W
+VStack : 0.8929507072802811 V
+Vcell : 0.8929507072802811 V
+###########
+I :21.5 A
+
+PEM Efficiency : 0.5716906030505862
+Power : 19.174502826316658 W
+Power-Stack : 19.174502826316658 W
+Power-Thermal : 7.2704971736833395 W
+VStack : 0.8918373407589144 V
+Vcell : 0.8918373407589144 V
+###########
+I :21.6 A
+
+PEM Efficiency : 0.57097619680144
+Power : 19.239613927421324 W
+Power-Stack : 19.239613927421324 W
+Power-Thermal : 7.328386072578678 W
+VStack : 0.8907228670102464 V
+Vcell : 0.8907228670102464 V
+###########
+I :21.7 A
+
+PEM Efficiency : 0.5702610401921416
+Power : 19.30447673258438 W
+Power-Stack : 19.30447673258438 W
+Power-Thermal : 7.386523267415619 W
+VStack : 0.889607222699741 V
+Vcell : 0.889607222699741 V
+###########
+I :21.8 A
+
+PEM Efficiency : 0.569545092139168
+Power : 19.369089493468827 W
+Power-Stack : 19.369089493468827 W
+Power-Thermal : 7.444910506531174 W
+VStack : 0.8884903437371021 V
+Vcell : 0.8884903437371021 V
+###########
+I :21.9 A
+
+PEM Efficiency : 0.5688283110607408
+Power : 19.433450419079147 W
+Power-Stack : 19.433450419079147 W
+Power-Thermal : 7.503549580920849 W
+VStack : 0.8873721652547557 V
+Vcell : 0.8873721652547557 V
+###########
+I :22.0 A
+
+PEM Efficiency : 0.5681106548628602
+Power : 19.49755767489336 W
+Power-Stack : 19.49755767489336 W
+Power-Thermal : 7.562442325106638 W
+VStack : 0.8862526215860619 V
+Vcell : 0.8862526215860619 V
+###########
+I :22.1 A
+
+PEM Efficiency : 0.5673920809251647
+Power : 19.56140938197598 W
+Power-Stack : 19.56140938197598 W
+Power-Thermal : 7.62159061802402 W
+VStack : 0.885131646243257 V
+Vcell : 0.885131646243257 V
+###########
+I :22.2 A
+
+PEM Efficiency : 0.5666725460866103
+Power : 19.62500361607149 W
+Power-Stack : 19.62500361607149 W
+Power-Thermal : 7.680996383928509 W
+VStack : 0.8840091718951122 V
+Vcell : 0.8840091718951122 V
+###########
+I :22.3 A
+
+PEM Efficiency : 0.5659520066309609
+Power : 19.688338406677868 W
+Power-Stack : 19.688338406677868 W
+Power-Thermal : 7.740661593322131 W
+VStack : 0.882885130344299 V
+Vcell : 0.882885130344299 V
+###########
+I :22.4 A
+
+PEM Efficiency : 0.5652304182720874
+Power : 19.751411736099822 W
+Power-Stack : 19.751411736099822 W
+Power-Thermal : 7.800588263900175 W
+VStack : 0.8817594525044564 V
+Vcell : 0.8817594525044564 V
+###########
+I :22.5 A
+
+PEM Efficiency : 0.5645077361390695
+Power : 19.814221538481338 W
+Power-Stack : 19.814221538481338 W
+Power-Thermal : 7.86077846151866 W
+VStack : 0.8806320683769484 V
+Vcell : 0.8806320683769484 V
+###########
+I :22.6 A
+
+PEM Efficiency : 0.5637839147610911
+Power : 19.87676569881703 W
+Power-Stack : 19.87676569881703 W
+Power-Thermal : 7.9212343011829685 W
+VStack : 0.8795029070273023 V
+Vcell : 0.8795029070273023 V
+###########
+I :22.7 A
+
+PEM Efficiency : 0.5630589080521282
+Power : 19.939042051941964 W
+Power-Stack : 19.939042051941964 W
+Power-Thermal : 7.981957948058033 W
+VStack : 0.8783718965613201 V
+Vcell : 0.8783718965613201 V
+###########
+I :22.8 A
+
+PEM Efficiency : 0.5623326692954187
+Power : 20.001048381499455 W
+Power-Stack : 20.001048381499455 W
+Power-Thermal : 8.042951618500547 W
+VStack : 0.8772389641008532 V
+Vcell : 0.8772389641008532 V
+###########
+I :22.9 A
+
+PEM Efficiency : 0.5616051511277121
+Power : 20.062782418886385 W
+Power-Stack : 20.062782418886385 W
+Power-Thermal : 8.10421758111361 W
+VStack : 0.8761040357592309 V
+Vcell : 0.8761040357592309 V
+###########
+I :23.0 A
+
+PEM Efficiency : 0.5608763055232909
+Power : 20.124241842175678 W
+Power-Stack : 20.124241842175678 W
+Power-Thermal : 8.165758157824323 W
+VStack : 0.8749670366163338 V
+Vcell : 0.8749670366163338 V
+###########
+I :23.1 A
+
+PEM Efficiency : 0.5601460837777572
+Power : 20.18542427501526 W
+Power-Stack : 20.18542427501526 W
+Power-Thermal : 8.22757572498474 W
+VStack : 0.8738278906933012 V
+Vcell : 0.8738278906933012 V
+###########
+I :23.2 A
+
+PEM Efficiency : 0.5594144364915806
+Power : 20.246327285503284 W
+Power-Stack : 20.246327285503284 W
+Power-Thermal : 8.289672714496715 W
+VStack : 0.8726865209268657 V
+Vcell : 0.8726865209268657 V
+###########
+I :23.3 A
+
+PEM Efficiency : 0.5586813135533986
+Power : 20.306948385038933 W
+Power-Stack : 20.306948385038933 W
+Power-Thermal : 8.352051614961068 W
+VStack : 0.8715428491433018 V
+Vcell : 0.8715428491433018 V
+###########
+I :23.4 A
+
+PEM Efficiency : 0.557946664123065
+Power : 20.367285027148366 W
+Power-Stack : 20.367285027148366 W
+Power-Thermal : 8.414714972851632 W
+VStack : 0.8703967960319815 V
+Vcell : 0.8703967960319815 V
+###########
+I :23.5 A
+
+PEM Efficiency : 0.557210436614439
+Power : 20.427334606285335 W
+Power-Stack : 20.427334606285335 W
+Power-Thermal : 8.477665393714664 W
+VStack : 0.8692482811185249 V
+Vcell : 0.8692482811185249 V
+###########
+I :23.6 A
+
+PEM Efficiency : 0.556472578677909
+Power : 20.4870944566059 W
+Power-Stack : 20.4870944566059 W
+Power-Thermal : 8.540905543394103 W
+VStack : 0.868097222737538 V
+Vcell : 0.868097222737538 V
+###########
+I :23.7 A
+
+PEM Efficiency : 0.5557330371826439
+Power : 20.54656185071671 W
+Power-Stack : 20.54656185071671 W
+Power-Thermal : 8.604438149283288 W
+VStack : 0.8669435380049245 V
+Vcell : 0.8669435380049245 V
+###########
+I :23.8 A
+
+PEM Efficiency : 0.5549917581985673
+Power : 20.605733998396406 W
+Power-Stack : 20.605733998396406 W
+Power-Thermal : 8.668266001603596 W
+VStack : 0.8657871427897649 V
+Vcell : 0.8657871427897649 V
+###########
+I :23.9 A
+
+PEM Efficiency : 0.5542486869780432
+Power : 20.664608045289363 W
+Power-Stack : 20.664608045289363 W
+Power-Thermal : 8.732391954710634 W
+VStack : 0.8646279516857475 V
+Vcell : 0.8646279516857475 V
+###########
+I :24.0 A
+
+PEM Efficiency : 0.553503767937274
+Power : 20.72318107157154 W
+Power-Stack : 20.72318107157154 W
+Power-Thermal : 8.796818928428461 W
+VStack : 0.8634658779821475 V
+Vcell : 0.8634658779821475 V
+###########
+I :24.1 A
+
+PEM Efficiency : 0.5527569446373951
+Power : 20.78145009058751 W
+Power-Stack : 20.78145009058751 W
+Power-Thermal : 8.861549909412492 W
+VStack : 0.8623008336343364 V
+Vcell : 0.8623008336343364 V
+###########
+I :24.2 A
+
+PEM Efficiency : 0.5520081597652664
+Power : 20.839412047458335 W
+Power-Stack : 20.839412047458335 W
+Power-Thermal : 8.926587952541663 W
+VStack : 0.8611327292338156 V
+Vcell : 0.8611327292338156 V
+###########
+I :24.3 A
+
+PEM Efficiency : 0.5512573551139495
+Power : 20.8970638176596 W
+Power-Stack : 20.8970638176596 W
+Power-Thermal : 8.991936182340401 W
+VStack : 0.8599614739777612 V
+Vcell : 0.8599614739777612 V
+###########
+I :24.4 A
+
+PEM Efficiency : 0.5505044715628651
+Power : 20.954402205568893 W
+Power-Stack : 20.954402205568893 W
+Power-Thermal : 9.057597794431103 W
+VStack : 0.8587869756380695 V
+Vcell : 0.8587869756380695 V
+###########
+I :24.5 A
+
+PEM Efficiency : 0.5497494490576215
+Power : 21.011423942982294 W
+Power-Stack : 21.011423942982294 W
+Power-Thermal : 9.123576057017704 W
+VStack : 0.8576091405298896 V
+Vcell : 0.8576091405298896 V
+###########
+I :24.6 A
+
+PEM Efficiency : 0.5489922265895106
+Power : 21.06812568759906 W
+Power-Stack : 21.06812568759906 W
+Power-Thermal : 9.18987431240094 W
+VStack : 0.8564278734796366 V
+Vcell : 0.8564278734796366 V
+###########
+I :24.7 A
+
+PEM Efficiency : 0.5482327421746593
+Power : 21.124504021473975 W
+Power-Stack : 21.124504021473975 W
+Power-Thermal : 9.256495978526024 W
+VStack : 0.8552430777924687 V
+Vcell : 0.8552430777924687 V
+###########
+I :24.8 A
+
+PEM Efficiency : 0.5474709328328312
+Power : 21.18055544943657 W
+Power-Stack : 21.18055544943657 W
+Power-Thermal : 9.323444550563428 W
+VStack : 0.8540546552192166 V
+Vcell : 0.8540546552192166 V
+###########
+I :24.9 A
+
+PEM Efficiency : 0.5467067345658708
+Power : 21.236276397476686 W
+Power-Stack : 21.236276397476686 W
+Power-Thermal : 9.39072360252331 W
+VStack : 0.8528625059227586 V
+Vcell : 0.8528625059227586 V
+###########
+I :25.0 A
+
+PEM Efficiency : 0.5459400823357831
+Power : 21.29166321109554 W
+Power-Stack : 21.29166321109554 W
+Power-Thermal : 9.45833678890446 W
+VStack : 0.8516665284438216 V
+Vcell : 0.8516665284438216 V
+###########
+I :25.1 A
+
+PEM Efficiency : 0.5451709100424359
+Power : 21.346712153621624 W
+Power-Stack : 21.346712153621624 W
+Power-Thermal : 9.526287846378379 W
+VStack : 0.8504666196662001 V
+Vcell : 0.8504666196662001 V
+###########
+I :25.2 A
+
+PEM Efficiency : 0.544399150500885
+Power : 21.401419404490795 W
+Power-Stack : 21.401419404490795 W
+Power-Thermal : 9.594580595509205 W
+VStack : 0.8492626747813807 V
+Vcell : 0.8492626747813807 V
+###########
+I :25.3 A
+
+PEM Efficiency : 0.5436247354183059
+Power : 21.455781057489702 W
+Power-Stack : 21.455781057489702 W
+Power-Thermal : 9.6632189425103 W
+VStack : 0.8480545872525573 V
+Vcell : 0.8480545872525573 V
+###########
+I :25.4 A
+
+PEM Efficiency : 0.5428475953705286
+Power : 21.509793118961827 W
+Power-Stack : 21.509793118961827 W
+Power-Thermal : 9.732206881038172 W
+VStack : 0.8468422487780247 V
+Vcell : 0.8468422487780247 V
+###########
+I :25.5 A
+
+PEM Efficiency : 0.5420676597781651
+Power : 21.563451505975408 W
+Power-Stack : 21.563451505975408 W
+Power-Thermal : 9.801548494024592 W
+VStack : 0.8456255492539375 V
+Vcell : 0.8456255492539375 V
+###########
+I :25.6 A
+
+PEM Efficiency : 0.5412848568823208
+Power : 21.61675204445236 W
+Power-Stack : 21.61675204445236 W
+Power-Thermal : 9.87124795554764 W
+VStack : 0.8444043767364203 V
+Vcell : 0.8444043767364203 V
+###########
+I :25.7 A
+
+PEM Efficiency : 0.540499113719883
+Power : 21.66969046725755 W
+Power-Stack : 21.66969046725755 W
+Power-Thermal : 9.94130953274245 W
+VStack : 0.8431786174030175 V
+Vcell : 0.8431786174030175 V
+###########
+I :25.8 A
+
+PEM Efficiency : 0.539710356098375
+Power : 21.7222624122474 W
+Power-Stack : 21.7222624122474 W
+Power-Thermal : 10.011737587752599 W
+VStack : 0.8419481555134651 V
+Vcell : 0.8419481555134651 V
+###########
+I :25.9 A
+
+PEM Efficiency : 0.5389185085703682
+Power : 21.774463420277154 W
+Power-Stack : 21.774463420277154 W
+Power-Thermal : 10.082536579722841 W
+VStack : 0.8407128733697744 V
+Vcell : 0.8407128733697744 V
+###########
+I :26.0 A
+
+PEM Efficiency : 0.5381234944074416
+Power : 21.82628893316583 W
+Power-Stack : 21.82628893316583 W
+Power-Thermal : 10.153711066834168 W
+VStack : 0.8394726512756089 V
+Vcell : 0.8394726512756089 V
+###########
+I :26.1 A
+
+PEM Efficiency : 0.5373252355736818
+Power : 21.87773429161803 W
+Power-Stack : 21.87773429161803 W
+Power-Thermal : 10.22526570838197 W
+VStack : 0.8382273674949436 V
+Vcell : 0.8382273674949436 V
+###########
+I :26.2 A
+
+PEM Efficiency : 0.5365236526987126
+Power : 21.928794733101785 W
+Power-Stack : 21.928794733101785 W
+Power-Thermal : 10.297205266898215 W
+VStack : 0.8369768982099918 V
+Vcell : 0.8369768982099918 V
+###########
+I :26.3 A
+
+PEM Efficiency : 0.5357186650502425
+Power : 21.97946538968135 W
+Power-Stack : 21.97946538968135 W
+Power-Thermal : 10.36953461031865 W
+VStack : 0.8357211174783783 V
+Vcell : 0.8357211174783783 V
+###########
+I :26.4 A
+
+PEM Efficiency : 0.5349101905061233
+Power : 22.02974128580418 W
+Power-Stack : 22.02974128580418 W
+Power-Thermal : 10.442258714195816 W
+VStack : 0.8344598971895524 V
+Vcell : 0.8344598971895524 V
+###########
+I :26.5 A
+
+PEM Efficiency : 0.5340981455259091
+Power : 22.079617336041082 W
+Power-Stack : 22.079617336041082 W
+Power-Thermal : 10.515382663958919 W
+VStack : 0.8331931070204182 V
+Vcell : 0.8331931070204182 V
+###########
+I :26.6 A
+
+PEM Efficiency : 0.5332824451219031
+Power : 22.129088342778495 W
+Power-Stack : 22.129088342778495 W
+Power-Thermal : 10.588911657221505 W
+VStack : 0.831920614390169 V
+Vcell : 0.831920614390169 V
+###########
+I :26.7 A
+
+PEM Efficiency : 0.5324630028296857
+Power : 22.178148993862074 W
+Power-Stack : 22.178148993862074 W
+Power-Thermal : 10.662851006137926 W
+VStack : 0.8306422844143099 V
+Vcell : 0.8306422844143099 V
+###########
+I :26.8 A
+
+PEM Efficiency : 0.53163973067811
+Power : 22.226793860190423 W
+Power-Stack : 22.226793860190423 W
+Power-Thermal : 10.73720613980958 W
+VStack : 0.8293579798578515 V
+Vcell : 0.8293579798578515 V
+###########
+I :26.9 A
+
+PEM Efficiency : 0.5308125391587536
+Power : 22.275017393257933 W
+Power-Stack : 22.275017393257933 W
+Power-Thermal : 10.811982606742065 W
+VStack : 0.8280675610876556 V
+Vcell : 0.8280675610876556 V
+###########
+I :27.0 A
+
+PEM Efficiency : 0.5299813371948213
+Power : 22.322813922645878 W
+Power-Stack : 22.322813922645878 W
+Power-Thermal : 10.887186077354123 W
+VStack : 0.8267708860239213 V
+Vcell : 0.8267708860239213 V
+###########
+I :27.1 A
+
+PEM Efficiency : 0.52914603210948
+Power : 22.370177653460377 W
+Power-Stack : 22.370177653460377 W
+Power-Thermal : 10.962822346539623 W
+VStack : 0.8254678100907888 V
+Vcell : 0.8254678100907888 V
+###########
+I :27.2 A
+
+PEM Efficiency : 0.5283065295936187
+Power : 22.417102663716427 W
+Power-Stack : 22.417102663716427 W
+Power-Thermal : 11.03889733628357 W
+VStack : 0.8241581861660452 V
+Vcell : 0.8241581861660452 V
+###########
+I :27.3 A
+
+PEM Efficiency : 0.5274627336730222
+Power : 22.46358290166667 W
+Power-Stack : 22.46358290166667 W
+Power-Thermal : 11.115417098333332 W
+VStack : 0.8228418645299146 V
+Vcell : 0.8228418645299146 V
+###########
+I :27.4 A
+
+PEM Efficiency : 0.5266145466749447
+Power : 22.509612183073838 W
+Power-Stack : 22.509612183073838 W
+Power-Thermal : 11.19238781692616 W
+VStack : 0.8215186928129138 V
+Vcell : 0.8215186928129138 V
+###########
+I :27.5 A
+
+PEM Efficiency : 0.5257618691940743
+Power : 22.555184188425788 W
+Power-Stack : 22.555184188425788 W
+Power-Thermal : 11.269815811574214 W
+VStack : 0.8201885159427559 V
+Vcell : 0.8201885159427559 V
+###########
+I :27.6 A
+
+PEM Efficiency : 0.5249046000578711
+Power : 22.6002924600917 W
+Power-Stack : 22.6002924600917 W
+Power-Thermal : 11.3477075399083 W
+VStack : 0.818851176090279 V
+Vcell : 0.818851176090279 V
+###########
+I :27.7 A
+
+PEM Efficiency : 0.5240426362912736
+Power : 22.644930399418513 W
+Power-Stack : 22.644930399418513 W
+Power-Thermal : 11.426069600581485 W
+VStack : 0.8175065126143868 V
+Vcell : 0.8175065126143868 V
+###########
+I :27.8 A
+
+PEM Efficiency : 0.5231758730807534
+Power : 22.689091263766116 W
+Power-Stack : 22.689091263766116 W
+Power-Thermal : 11.504908736233885 W
+VStack : 0.8161543620059754 V
+Vcell : 0.8161543620059754 V
+###########
+I :27.9 A
+
+PEM Efficiency : 0.522304203737712
+Power : 22.732768163480177 W
+Power-Stack : 22.732768163480177 W
+Power-Thermal : 11.584231836519821 W
+VStack : 0.8147945578308308 V
+Vcell : 0.8147945578308308 V
+###########
+I :28.0 A
+
+PEM Efficiency : 0.5214275196612004
+Power : 22.775954058801233 W
+Power-Stack : 22.775954058801233 W
+Power-Thermal : 11.664045941198768 W
+VStack : 0.8134269306714725 V
+Vcell : 0.8134269306714725 V
+###########
+I :28.1 A
+
+PEM Efficiency : 0.5205457102999536
+Power : 22.818641756708764 W
+Power-Stack : 22.818641756708764 W
+Power-Thermal : 11.744358243291234 W
+VStack : 0.8120513080679276 V
+Vcell : 0.8120513080679276 V
+###########
+I :28.2 A
+
+PEM Efficiency : 0.5196586631137229
+Power : 22.860823907698897 W
+Power-Stack : 22.860823907698897 W
+Power-Thermal : 11.825176092301103 W
+VStack : 0.8106675144574077 V
+Vcell : 0.8106675144574077 V
+###########
+I :28.3 A
+
+PEM Efficiency : 0.5187662635338937
+Power : 22.902493002494335 W
+Power-Stack : 22.902493002494335 W
+Power-Thermal : 11.906506997505664 W
+VStack : 0.8092753711128741 V
+Vcell : 0.8092753711128741 V
+###########
+I :28.4 A
+
+PEM Efficiency : 0.5178683949233732
+Power : 22.943641368685128 W
+Power-Stack : 22.943641368685128 W
+Power-Thermal : 11.98835863131487 W
+VStack : 0.8078746960804623 V
+Vcell : 0.8078746960804623 V
+###########
+I :28.5 A
+
+PEM Efficiency : 0.5169649385357372
+Power : 22.98426116729888 W
+Power-Stack : 22.98426116729888 W
+Power-Thermal : 12.070738832701121 W
+VStack : 0.8064653041157501 V
+Vcell : 0.8064653041157501 V
+###########
+I :28.6 A
+
+PEM Efficiency : 0.5160557734736161
+Power : 23.024344389298857 W
+Power-Stack : 23.024344389298857 W
+Power-Thermal : 12.153655610701145 W
+VStack : 0.8050470066188411 V
+Vcell : 0.8050470066188411 V
+###########
+I :28.7 A
+
+PEM Efficiency : 0.5151407766463099
+Power : 23.063882852008586 W
+Power-Stack : 23.063882852008586 W
+Power-Thermal : 12.237117147991412 W
+VStack : 0.8036196115682435 V
+Vcell : 0.8036196115682435 V
+###########
+I :28.8 A
+
+PEM Efficiency : 0.5142198227266149
+Power : 23.102868195461355 W
+Power-Stack : 23.102868195461355 W
+Power-Thermal : 12.321131804538645 W
+VStack : 0.8021829234535193 V
+Vcell : 0.8021829234535193 V
+###########
+I :28.9 A
+
+PEM Efficiency : 0.5132927841068469
+Power : 23.141291878673087 W
+Power-Stack : 23.141291878673087 W
+Power-Thermal : 12.405708121326912 W
+VStack : 0.8007367432066812 V
+Vcell : 0.8007367432066812 V
+###########
+I :29.0 A
+
+PEM Efficiency : 0.5123595308540451
+Power : 23.179145175836997 W
+Power-Stack : 23.179145175836997 W
+Power-Thermal : 12.490854824163002 W
+VStack : 0.7992808681323103 V
+Vcell : 0.7992808681323103 V
+###########
+I :29.1 A
+
+PEM Efficiency : 0.5114199306643407
+Power : 23.216419172438407 W
+Power-Stack : 23.216419172438407 W
+Power-Thermal : 12.576580827561594 W
+VStack : 0.7978150918363713 V
+Vcell : 0.7978150918363713 V
+###########
+I :29.2 A
+
+PEM Efficiency : 0.5104738488164757
+Power : 23.2531047612881 W
+Power-Stack : 23.2531047612881 W
+Power-Thermal : 12.662895238711899 W
+VStack : 0.7963392041537021 V
+Vcell : 0.7963392041537021 V
+###########
+I :29.3 A
+
+PEM Efficiency : 0.5095211481244507
+Power : 23.289192638472393 W
+Power-Stack : 23.289192638472393 W
+Power-Thermal : 12.749807361527607 W
+VStack : 0.7948529910741431 V
+Vcell : 0.7948529910741431 V
+###########
+I :29.4 A
+
+PEM Efficiency : 0.5085616888892909
+Power : 23.324673299218436 W
+Power-Stack : 23.324673299218436 W
+Power-Thermal : 12.837326700781562 W
+VStack : 0.7933562346672938 V
+Vcell : 0.7933562346672938 V
+###########
+I :29.5 A
+
+PEM Efficiency : 0.5075953288499082
+Power : 23.35953703367278 W
+Power-Stack : 23.35953703367278 W
+Power-Thermal : 12.92546296632722 W
+VStack : 0.7918487130058569 V
+Vcell : 0.7918487130058569 V
+###########
+I :29.6 A
+
+PEM Efficiency : 0.5066219231330438
+Power : 23.393773922591432 W
+Power-Stack : 23.393773922591432 W
+Power-Thermal : 13.014226077408571 W
+VStack : 0.7903302000875483 V
+Vcell : 0.7903302000875483 V
+###########
+I :29.7 A
+
+PEM Efficiency : 0.505641324202273
+Power : 23.427373832939715 W
+Power-Stack : 23.427373832939715 W
+Power-Thermal : 13.103626167060284 W
+VStack : 0.788800465755546 V
+Vcell : 0.788800465755546 V
+###########
+I :29.8 A
+
+PEM Efficiency : 0.5046533818060553
+Power : 23.4603264133999 W
+Power-Stack : 23.4603264133999 W
+Power-Thermal : 13.193673586600099 W
+VStack : 0.7872592756174464 V
+Vcell : 0.7872592756174464 V
+###########
+I :29.9 A
+
+PEM Efficiency : 0.5036579429248091
+Power : 23.492621089784798 W
+Power-Stack : 23.492621089784798 W
+Power-Thermal : 13.2843789102152 W
+VStack : 0.7857063909627023 V
+Vcell : 0.7857063909627023 V
+###########
+I :30.0 A
+
+PEM Efficiency : 0.5026548517169935
+Power : 23.524247060355297 W
+Power-Stack : 23.524247060355297 W
+Power-Thermal : 13.375752939644702 W
+VStack : 0.7841415686785099 V
+Vcell : 0.7841415686785099 V
+###########
+I :30.1 A
+
+PEM Efficiency : 0.5016439494641773
+Power : 23.555193291039913 W
+Power-Stack : 23.555193291039913 W
+Power-Thermal : 13.467806708960088 W
+VStack : 0.7825645611641167 V
+Vcell : 0.7825645611641167 V
+###########
+I :30.2 A
+
+PEM Efficiency : 0.5006250745150765
+Power : 23.585448510554286 W
+Power-Stack : 23.585448510554286 W
+Power-Thermal : 13.56055148944571 W
+VStack : 0.7809751162435195 V
+Vcell : 0.7809751162435195 V
+###########
+I :30.3 A
+
+PEM Efficiency : 0.4995980622285398
+Power : 23.61500120541862 W
+Power-Stack : 23.61500120541862 W
+Power-Thermal : 13.65399879458138 W
+VStack : 0.7793729770765221 V
+Vcell : 0.7793729770765221 V
+###########
+I :30.4 A
+
+PEM Efficiency : 0.49856274491546
+Power : 23.643839614870775 W
+Power-Stack : 23.643839614870775 W
+Power-Thermal : 13.748160385129225 W
+VStack : 0.7777578820681176 V
+Vcell : 0.7777578820681176 V
+###########
+I :30.5 A
+
+PEM Efficiency : 0.49751895177959454
+Power : 23.67195172567311 W
+Power-Stack : 23.67195172567311 W
+Power-Thermal : 13.843048274326888 W
+VStack : 0.7761295647761676 V
+Vcell : 0.7761295647761676 V
+###########
+I :30.6 A
+
+PEM Efficiency : 0.4964665088572704
+Power : 23.699325266810664 W
+Power-Stack : 23.699325266810664 W
+Power-Thermal : 13.938674733189337 W
+VStack : 0.7744877538173419 V
+Vcell : 0.7744877538173419 V
+###########
+I :30.7 A
+
+PEM Efficiency : 0.4954052389559531
+Power : 23.725947704078507 W
+Power-Stack : 23.725947704078507 W
+Power-Thermal : 14.03505229592149 W
+VStack : 0.7728321727712869 V
+Vcell : 0.7728321727712869 V
+###########
+I :30.8 A
+
+PEM Efficiency : 0.4943349615916582
+Power : 23.751806234555993 W
+Power-Stack : 23.751806234555993 W
+Power-Thermal : 14.132193765444006 W
+VStack : 0.7711625400829868 V
+Vcell : 0.7711625400829868 V
+###########
+I :30.9 A
+
+PEM Efficiency : 0.49325549292518334
+Power : 23.776887780965538 W
+Power-Stack : 23.776887780965538 W
+Power-Thermal : 14.23011221903446 W
+VStack : 0.769478568963286 V
+Vcell : 0.769478568963286 V
+###########
+I :31.0 A
+
+PEM Efficiency : 0.49216664569713586
+Power : 23.80117898591349 W
+Power-Stack : 23.80117898591349 W
+Power-Thermal : 14.32882101408651 W
+VStack : 0.767779967287532 V
+Vcell : 0.767779967287532 V
+###########
+I :31.1 A
+
+PEM Efficiency : 0.49106822916173604
+Power : 23.82466620601079 W
+Power-Stack : 23.82466620601079 W
+Power-Thermal : 14.428333793989212 W
+VStack : 0.7660664374923083 V
+Vcell : 0.7660664374923083 V
+###########
+I :31.2 A
+
+PEM Efficiency : 0.4899600490193692
+Power : 23.84733550587074 W
+Power-Stack : 23.84733550587074 W
+Power-Thermal : 14.52866449412926 W
+VStack : 0.764337676470216 V
+Vcell : 0.764337676470216 V
+###########
+I :31.3 A
+
+PEM Efficiency : 0.4888419073478655
+Power : 23.869172651981575 W
+Power-Stack : 23.869172651981575 W
+Power-Thermal : 14.629827348018424 W
+VStack : 0.7625933754626701 V
+Vcell : 0.7625933754626701 V
+###########
+I :31.4 A
+
+PEM Efficiency : 0.4877136025324792
+Power : 23.89016310645096 W
+Power-Stack : 23.89016310645096 W
+Power-Thermal : 14.731836893549037 W
+VStack : 0.7608332199506675 V
+Vcell : 0.7608332199506675 V
+###########
+I :31.5 A
+
+PEM Efficiency : 0.4865749291945478
+Power : 23.91029202062008 W
+Power-Stack : 23.91029202062008 W
+Power-Thermal : 14.83470797937992 W
+VStack : 0.7590568895434946 V
+Vcell : 0.7590568895434946 V
+###########
+I :31.6 A
+
+PEM Efficiency : 0.4854256781187993
+Power : 23.92954422854433 W
+Power-Stack : 23.92954422854433 W
+Power-Thermal : 14.93845577145567 W
+VStack : 0.7572640578653269 V
+Vcell : 0.7572640578653269 V
+###########
+I :31.7 A
+
+PEM Efficiency : 0.4842656361792864
+Power : 23.947904240338072 W
+Power-Stack : 23.947904240338072 W
+Power-Thermal : 15.043095759661927 W
+VStack : 0.7554543924396868 V
+Vcell : 0.7554543924396868 V
+###########
+I :31.8 A
+
+PEM Efficiency : 0.48309458626391927
+Power : 23.965356235380508 W
+Power-Stack : 23.965356235380508 W
+Power-Thermal : 15.148643764619493 W
+VStack : 0.753627554571714 V
+Vcell : 0.753627554571714 V
+###########
+I :31.9 A
+
+PEM Efficiency : 0.48191230719757006
+Power : 23.981884055379876 W
+Power-Stack : 23.981884055379876 W
+Power-Thermal : 15.25511594462012 W
+VStack : 0.7517831992282094 V
+Vcell : 0.7517831992282094 V
+###########
+I :32.0 A
+
+PEM Efficiency : 0.48071857366372195
+Power : 23.997471197293002 W
+Power-Stack : 23.997471197293002 W
+Power-Thermal : 15.362528802706997 W
+VStack : 0.7499209749154063 V
+Vcell : 0.7499209749154063 V
+###########
+I :32.1 A
+
+PEM Efficiency : 0.47951315612463496
+Power : 24.012100806097223 W
+Power-Stack : 24.012100806097223 W
+Power-Thermal : 15.470899193902778 W
+VStack : 0.7480405235544306 V
+Vcell : 0.7480405235544306 V
+###########
+I :32.2 A
+
+PEM Efficiency : 0.47829582073999877
+Power : 24.02575566741162 W
+Power-Stack : 24.02575566741162 W
+Power-Thermal : 15.580244332588382 W
+VStack : 0.7461414803543981 V
+Vcell : 0.7461414803543981 V
+###########
+I :32.3 A
+
+PEM Efficiency : 0.47706632928404535
+Power : 24.03841819996448 W
+Power-Stack : 24.03841819996448 W
+Power-Thermal : 15.690581800035519 W
+VStack : 0.7442234736831108 V
+Vcell : 0.7442234736831108 V
+###########
+I :32.4 A
+
+PEM Efficiency : 0.4758244390610915
+Power : 24.05007044790381 W
+Power-Stack : 24.05007044790381 W
+Power-Thermal : 15.801929552096189 W
+VStack : 0.7422861249353028 V
+Vcell : 0.7422861249353028 V
+###########
+I :32.5 A
+
+PEM Efficiency : 0.4745699028194791
+Power : 24.060694072947587 W
+Power-Stack : 24.060694072947587 W
+Power-Thermal : 15.914305927052412 W
+VStack : 0.7403290483983873 V
+Vcell : 0.7403290483983873 V
+###########
+I :32.6 A
+
+PEM Efficiency : 0.4733024686638842
+Power : 24.070270346370496 W
+Power-Stack : 24.070270346370496 W
+Power-Thermal : 16.027729653629503 W
+VStack : 0.7383518511156594 V
+Vcell : 0.7383518511156594 V
+###########
+I :32.7 A
+
+PEM Efficiency : 0.47202187996596495
+Power : 24.078780140823806 W
+Power-Stack : 24.078780140823806 W
+Power-Thermal : 16.142219859176198 W
+VStack : 0.7363541327469053 V
+Vcell : 0.7363541327469053 V
+###########
+I :32.8 A
+
+PEM Efficiency : 0.4707278752733123
+Power : 24.08620392198484 W
+Power-Stack : 24.08620392198484 W
+Power-Thermal : 16.257796078015154 W
+VStack : 0.7343354854263672 V
+Vcell : 0.7343354854263672 V
+###########
+I :32.9 A
+
+PEM Efficiency : 0.46942018821667514
+Power : 24.092521740032634 W
+Power-Stack : 24.092521740032634 W
+Power-Thermal : 16.37447825996736 W
+VStack : 0.7322954936180133 V
+Vcell : 0.7322954936180133 V
+###########
+I :33.0 A
+
+PEM Efficiency : 0.4680985474154249
+Power : 24.097713220946076 W
+Power-Stack : 24.097713220946076 W
+Power-Thermal : 16.492286779053924 W
+VStack : 0.7302337339680629 V
+Vcell : 0.7302337339680629 V
+###########
+I :33.1 A
+
+PEM Efficiency : 0.4667626763812258
+Power : 24.10175755762098 W
+Power-Stack : 24.10175755762098 W
+Power-Thermal : 16.61124244237902 W
+VStack : 0.7281497751547124 V
+Vcell : 0.7281497751547124 V
+###########
+I :33.2 A
+
+PEM Efficiency : 0.46541229341987617
+Power : 24.10463350080223 W
+Power-Stack : 24.10463350080223 W
+Power-Thermal : 16.731366499197776 W
+VStack : 0.7260431777350068 V
+Vcell : 0.7260431777350068 V
+###########
+I :33.3 A
+
+PEM Efficiency : 0.4640471115312872
+Power : 24.106319349827306 W
+Power-Stack : 24.106319349827306 W
+Power-Thermal : 16.85268065017269 W
+VStack : 0.723913493988808 V
+Vcell : 0.723913493988808 V
+###########
+I :33.4 A
+
+PEM Efficiency : 0.4626668383075613
+Power : 24.106792943177172 W
+Power-Stack : 24.106792943177172 W
+Power-Thermal : 16.975207056822825 W
+VStack : 0.7217602677597956 V
+Vcell : 0.7217602677597956 V
+###########
+I :33.5 A
+
+PEM Efficiency : 0.46127117582913685
+Power : 24.106031648830694 W
+Power-Stack : 24.106031648830694 W
+Power-Thermal : 17.098968351169308 W
+VStack : 0.7195830342934535 V
+Vcell : 0.7195830342934535 V
+###########
+I :33.6 A
+
+PEM Efficiency : 0.45985982055895774
+Power : 24.10401235441833 W
+Power-Stack : 24.10401235441833 W
+Power-Thermal : 17.223987645581673 W
+VStack : 0.7173813200719741 V
+Vcell : 0.7173813200719741 V
+###########
+I :33.7 A
+
+PEM Efficiency : 0.45843246323463405
+Power : 24.100711457171183 W
+Power-Stack : 24.100711457171183 W
+Power-Thermal : 17.35028854282882 W
+VStack : 0.7151546426460291 V
+Vcell : 0.7151546426460291 V
+###########
+I :33.8 A
+
+PEM Efficiency : 0.45698878875855353
+Power : 24.096104853661007 W
+Power-Stack : 24.096104853661007 W
+Power-Thermal : 17.477895146338987 W
+VStack : 0.7129025104633435 V
+Vcell : 0.7129025104633435 V
+###########
+I :33.9 A
+
+PEM Efficiency : 0.4555284760859038
+Power : 24.090167929326935 W
+Power-Stack : 24.090167929326935 W
+Power-Thermal : 17.60683207067306 W
+VStack : 0.7106244226940099 V
+Vcell : 0.7106244226940099 V
+###########
+I :34.0 A
+
+PEM Efficiency : 0.45405119811056877
+Power : 24.082875547784568 W
+Power-Stack : 24.082875547784568 W
+Power-Thermal : 17.737124452215433 W
+VStack : 0.7083198690524872 V
+Vcell : 0.7083198690524872 V
+###########
+I :34.1 A
+
+PEM Efficiency : 0.45255662154885345
+Power : 24.07420203991281 W
+Power-Stack : 24.07420203991281 W
+Power-Thermal : 17.868797960087193 W
+VStack : 0.7059883296162114 V
+Vcell : 0.7059883296162114 V
+###########
+I :34.2 A
+
+PEM Efficiency : 0.4510444068209996
+Power : 24.064121192713973 W
+Power-Stack : 24.064121192713973 W
+Power-Thermal : 18.00187880728603 W
+VStack : 0.7036292746407594 V
+Vcell : 0.7036292746407594 V
+###########
+I :34.3 A
+
+PEM Efficiency : 0.4495142079304494
+Power : 24.052606237942484 W
+Power-Stack : 24.052606237942484 W
+Power-Thermal : 18.13639376205751 W
+VStack : 0.7012421643715011 V
+Vcell : 0.7012421643715011 V
+###########
+I :34.4 A
+
+PEM Efficiency : 0.44796567234081097
+Power : 24.03962984049728 W
+Power-Stack : 24.03962984049728 W
+Power-Thermal : 18.272370159502717 W
+VStack : 0.6988264488516651 V
+Vcell : 0.6988264488516651 V
+###########
+I :34.5 A
+
+PEM Efficiency : 0.4463984408504871
+Power : 24.025164086573216 W
+Power-Stack : 24.025164086573216 W
+Power-Thermal : 18.409835913426786 W
+VStack : 0.6963815677267599 V
+Vcell : 0.6963815677267599 V
+###########
+I :34.6 A
+
+PEM Efficiency : 0.4448121474649166
+Power : 24.00918047156634 W
+Power-Stack : 24.00918047156634 W
+Power-Thermal : 18.54881952843366 W
+VStack : 0.6939069500452699 V
+Vcell : 0.6939069500452699 V
+###########
+I :34.7 A
+
+PEM Efficiency : 0.443206419266388
+Power : 23.99164988772812 W
+Power-Stack : 23.99164988772812 W
+Power-Thermal : 18.689350112271885 W
+VStack : 0.6914020140555653 V
+Vcell : 0.6914020140555653 V
+###########
+I :34.8 A
+
+PEM Efficiency : 0.4415808762813748
+Power : 23.972542611563277 W
+Power-Stack : 23.972542611563277 W
+Power-Thermal : 18.83145738843672 W
+VStack : 0.6888661669989448 V
+Vcell : 0.6888661669989448 V
+###########
+I :34.9 A
+
+PEM Efficiency : 0.43993513134534695
+Power : 23.95182829096607 W
+Power-Stack : 23.95182829096607 W
+Power-Thermal : 18.975171709033926 W
+VStack : 0.6862988048987413 V
+Vcell : 0.6862988048987413 V
+###########
+I :35.0 A
+
+PEM Efficiency : 0.438268789965011
+Power : 23.929475932089606 W
+Power-Stack : 23.929475932089606 W
+Power-Thermal : 19.120524067910395 W
+VStack : 0.6836993123454173 V
+Vcell : 0.6836993123454173 V
+###########
+I :35.1 A
+
+PEM Efficiency : 0.43658145017792876
+Power : 23.905453885942666 W
+Power-Stack : 23.905453885942666 W
+Power-Thermal : 19.267546114057332 W
+VStack : 0.6810670622775689 V
+Vcell : 0.6810670622775689 V
+###########
+I :35.2 A
+
+PEM Efficiency : 0.4348727024094629
+Power : 23.879729834708428 W
+Power-Stack : 23.879729834708428 W
+Power-Thermal : 19.416270165291575 W
+VStack : 0.6784014157587621 V
+Vcell : 0.6784014157587621 V
+###########
+I :35.3 A
+
+PEM Efficiency : 0.433142129327001
+Power : 23.85227077777929 W
+Power-Stack : 23.85227077777929 W
+Power-Thermal : 19.566729222220708 W
+VStack : 0.6757017217501216 V
+Vcell : 0.6757017217501216 V
+###########
+I :35.4 A
+
+PEM Efficiency : 0.43138930569140566
+Power : 23.823043017502187 W
+Power-Stack : 23.823043017502187 W
+Power-Thermal : 19.71895698249781 W
+VStack : 0.6729673168785929 V
+Vcell : 0.6729673168785929 V
+###########
+I :35.5 A
+
+PEM Efficiency : 0.429613798205635
+Power : 23.792012144628064 W
+Power-Stack : 23.792012144628064 W
+Power-Thermal : 19.872987855371935 W
+VStack : 0.6701975252007906 V
+Vcell : 0.6701975252007906 V
+###########
+I :35.6 A
+
+PEM Efficiency : 0.4278151653604823
+Power : 23.75914302345975 W
+Power-Stack : 23.75914302345975 W
+Power-Thermal : 20.028856976540254 W
+VStack : 0.6673916579623524 V
+Vcell : 0.6673916579623524 V
+###########
+I :35.7 A
+
+PEM Efficiency : 0.42599295727738007
+Power : 23.72439977669185 W
+Power-Stack : 23.72439977669185 W
+Power-Thermal : 20.18660022330815 W
+VStack : 0.6645490133527129 V
+Vcell : 0.6645490133527129 V
+###########
+I :35.8 A
+
+PEM Efficiency : 0.42414671554820815
+Power : 23.687745769936328 W
+Power-Stack : 23.687745769936328 W
+Power-Thermal : 20.346254230063668 W
+VStack : 0.6616688762552048 V
+Vcell : 0.6616688762552048 V
+###########
+I :35.9 A
+
+PEM Efficiency : 0.4222759730720539
+Power : 23.649143595927303 W
+Power-Stack : 23.649143595927303 W
+Power-Thermal : 20.507856404072694 W
+VStack : 0.658750517992404 V
+Vcell : 0.658750517992404 V
+###########
+I :36.0 A
+
+PEM Efficiency : 0.420380253888863
+Power : 23.608555058398547 W
+Power-Stack : 23.608555058398547 W
+Power-Thermal : 20.67144494160145 W
+VStack : 0.6557931960666263 V
+Vcell : 0.6557931960666263 V
+###########
+I :36.1 A
+
+PEM Efficiency : 0.41845907300992385
+Power : 23.56594115562687 W
+Power-Stack : 23.56594115562687 W
+Power-Thermal : 20.83705884437313 W
+VStack : 0.6527961538954812 V
+Vcell : 0.6527961538954812 V
+###########
+I :36.2 A
+
+PEM Efficiency : 0.4165119362451197
+Power : 23.5212620636344 W
+Power-Stack : 23.5212620636344 W
+Power-Thermal : 21.004737936365604 W
+VStack : 0.6497586205423866 V
+Vcell : 0.6497586205423866 V
+###########
+I :36.3 A
+
+PEM Efficiency : 0.4145383400268956
+Power : 23.47447711904304 W
+Power-Stack : 23.47447711904304 W
+Power-Thermal : 21.174522880956953 W
+VStack : 0.6466798104419571 V
+Vcell : 0.6466798104419571 V
+###########
+I :36.4 A
+
+PEM Efficiency : 0.4125377712308684
+Power : 23.425544801573633 W
+Power-Stack : 23.425544801573633 W
+Power-Thermal : 21.346455198426366 W
+VStack : 0.6435589231201547 V
+Vcell : 0.6435589231201547 V
+###########
+I :36.5 A
+
+PEM Efficiency : 0.41050970699302197
+Power : 23.374422716182675 W
+Power-Stack : 23.374422716182675 W
+Power-Thermal : 21.520577283817325 W
+VStack : 0.6403951429091144 V
+Vcell : 0.6403951429091144 V
+###########
+I :36.6 A
+
+PEM Efficiency : 0.40845361452341905
+Power : 23.321067574829137 W
+Power-Stack : 23.321067574829137 W
+Power-Thermal : 21.696932425170868 W
+VStack : 0.6371876386565337 V
+Vcell : 0.6371876386565337 V
+###########
+I :36.7 A
+
+PEM Efficiency : 0.4063689509163642
+Power : 23.265435177863687 W
+Power-Stack : 23.265435177863687 W
+Power-Thermal : 21.87556482213632 W
+VStack : 0.6339355634295282 V
+Vcell : 0.6339355634295282 V
+###########
+I :36.8 A
+
+PEM Efficiency : 0.40425516295695135
+Power : 23.20748039503266 W
+Power-Stack : 23.20748039503266 W
+Power-Thermal : 22.056519604967335 W
+VStack : 0.6306380542128441 V
+Vcell : 0.6306380542128441 V
+###########
+I :36.9 A
+
+PEM Efficiency : 0.40211168692392374
+Power : 23.147157146088745 W
+Power-Stack : 23.147157146088745 W
+Power-Thermal : 22.239842853911252 W
+VStack : 0.627294231601321 V
+Vcell : 0.627294231601321 V
+###########
+I :37.0 A
+
+PEM Efficiency : 0.3999379483887791
+Power : 23.08441838100033 W
+Power-Stack : 23.08441838100033 W
+Power-Thermal : 22.42558161899967 W
+VStack : 0.6239031994864954 V
+Vcell : 0.6239031994864954 V
+###########
+I :37.1 A
+
+PEM Efficiency : 0.3977333620110467
+Power : 23.01921605975134 W
+Power-Stack : 23.01921605975134 W
+Power-Thermal : 22.613783940248663 W
+VStack : 0.6204640447372328 V
+Vcell : 0.6204640447372328 V
+###########
+I :37.2 A
+
+PEM Efficiency : 0.3954973313296627
+Power : 22.95150113172299 W
+Power-Stack : 22.95150113172299 W
+Power-Thermal : 22.804498868277015 W
+VStack : 0.6169758368742738 V
+Vcell : 0.6169758368742738 V
+###########
+I :37.3 A
+
+PEM Efficiency : 0.3932292485503711
+Power : 22.881223514648994 W
+Power-Stack : 22.881223514648994 W
+Power-Thermal : 22.997776485351 W
+VStack : 0.613437627738579 V
+Vcell : 0.613437627738579 V
+###########
+I :37.4 A
+
+PEM Efficiency : 0.39092849432907284
+Power : 22.808332073135425 W
+Power-Stack : 22.808332073135425 W
+Power-Thermal : 23.193667926864574 W
+VStack : 0.6098484511533536 V
+Vcell : 0.6098484511533536 V
+###########
+I :37.5 A
+
+PEM Efficiency : 0.3885944375510447
+Power : 22.732774596736117 W
+Power-Stack : 22.732774596736117 W
+Power-Thermal : 23.39222540326388 W
+VStack : 0.6062073225796298 V
+Vcell : 0.6062073225796298 V
+###########
+I :37.6 A
+
+PEM Efficiency : 0.386226435105954
+Power : 22.65449777757484 W
+Power-Stack : 22.65449777757484 W
+Power-Thermal : 23.593502222425162 W
+VStack : 0.6025132387652883 V
+Vcell : 0.6025132387652883 V
+###########
+I :37.7 A
+
+PEM Efficiency : 0.3838238316585815
+Power : 22.5734471875045 W
+Power-Stack : 22.5734471875045 W
+Power-Thermal : 23.797552812495503 W
+VStack : 0.5987651773873872 V
+Vcell : 0.5987651773873872 V
+###########
+I :37.8 A
+
+PEM Efficiency : 0.38138595941517656
+Power : 22.48956725479413 W
+Power-Stack : 22.48956725479413 W
+Power-Thermal : 24.00443274520586 W
+VStack : 0.5949620966876755 V
+Vcell : 0.5949620966876755 V
+###########
+I :37.9 A
+
+PEM Efficiency : 0.3789121378853587
+Power : 22.40280124033395 W
+Power-Stack : 22.40280124033395 W
+Power-Thermal : 24.214198759666047 W
+VStack : 0.5911029351011596 V
+Vcell : 0.5911029351011596 V
+###########
+I :38.0 A
+
+PEM Efficiency : 0.37640167363948096
+Power : 22.31309121334843 W
+Power-Stack : 22.31309121334843 W
+Power-Thermal : 24.42690878665157 W
+VStack : 0.5871866108775903 V
+Vcell : 0.5871866108775903 V
+###########
+I :38.1 A
+
+PEM Efficiency : 0.37385386006136734
+Power : 22.22037802660743 W
+Power-Stack : 22.22037802660743 W
+Power-Thermal : 24.642621973392572 W
+VStack : 0.583212021695733 V
+Vcell : 0.583212021695733 V
+###########
+I :38.2 A
+
+PEM Efficiency : 0.3712679770963385
+Power : 22.124601291125007 W
+Power-Stack : 22.124601291125007 W
+Power-Thermal : 24.861398708874997 W
+VStack : 0.5791780442702881 V
+Vcell : 0.5791780442702881 V
+###########
+I :38.3 A
+
+PEM Efficiency : 0.36864329099443194
+Power : 22.02569935033532 W
+Power-Stack : 22.02569935033532 W
+Power-Thermal : 25.08330064966468 W
+VStack : 0.5750835339513138 V
+Vcell : 0.5750835339513138 V
+###########
+I :38.4 A
+
+PEM Efficiency : 0.3659790540487298
+Power : 21.923609253735112 W
+Power-Stack : 21.923609253735112 W
+Power-Thermal : 25.308390746264887 W
+VStack : 0.5709273243160186 V
+Vcell : 0.5709273243160186 V
+###########
+I :38.5 A
+
+PEM Efficiency : 0.36327450432869623
+Power : 21.818266729981495 W
+Power-Stack : 21.818266729981495 W
+Power-Thermal : 25.536733270018505 W
+VStack : 0.5667082267527661 V
+Vcell : 0.5667082267527661 V
+###########
+I :38.6 A
+
+PEM Efficiency : 0.36052886540843176
+Power : 21.70960615943413 W
+Power-Stack : 21.70960615943413 W
+Power-Thermal : 25.76839384056587 W
+VStack : 0.5624250300371536 V
+Vcell : 0.5624250300371536 V
+###########
+I :38.7 A
+
+PEM Efficiency : 0.3577413460897474
+Power : 21.597560546130232 W
+Power-Stack : 21.597560546130232 W
+Power-Thermal : 26.00343945386977 W
+VStack : 0.558076499900006 V
+Vcell : 0.558076499900006 V
+###########
+I :38.8 A
+
+PEM Efficiency : 0.35491114011995817
+Power : 21.48206148918083 W
+Power-Stack : 21.48206148918083 W
+Power-Thermal : 26.241938510819168 W
+VStack : 0.5536613785871348 V
+Vcell : 0.5536613785871348 V
+###########
+I :38.9 A
+
+PEM Efficiency : 0.3520374259042962
+Power : 21.36303915357631 W
+Power-Stack : 21.36303915357631 W
+Power-Thermal : 26.483960846423688 W
+VStack : 0.5491783844107021 V
+Vcell : 0.5491783844107021 V
+###########
+I :39.0 A
+
+PEM Efficiency : 0.3491193662128428
+Power : 21.240422240389353 W
+Power-Stack : 21.240422240389353 W
+Power-Thermal : 26.729577759610645 W
+VStack : 0.5446262112920347 V
+Vcell : 0.5446262112920347 V
+###########
+I :39.1 A
+
+PEM Efficiency : 0.34615610788186824
+Power : 21.114137956362438 W
+Power-Stack : 21.114137956362438 W
+Power-Thermal : 26.978862043637562 W
+VStack : 0.5400035282957145 V
+Vcell : 0.5400035282957145 V
+###########
+I :39.2 A
+
+PEM Efficiency : 0.3431467815094832
+Power : 20.98411198286792 W
+Power-Stack : 20.98411198286792 W
+Power-Thermal : 27.231888017132086 W
+VStack : 0.5353089791547938 V
+Vcell : 0.5353089791547938 V
+###########
+I :39.3 A
+
+PEM Efficiency : 0.3400905011454807
+Power : 20.85026844422713 W
+Power-Stack : 20.85026844422713 W
+Power-Thermal : 27.48873155577287 W
+VStack : 0.5305411817869499 V
+Vcell : 0.5305411817869499 V
+###########
+I :39.4 A
+
+PEM Efficiency : 0.33698636397526843
+Power : 20.7125298753759 W
+Power-Stack : 20.7125298753759 W
+Power-Thermal : 27.749470124624096 W
+VStack : 0.5256987278014188 V
+Vcell : 0.5256987278014188 V
+###########
+I :39.5 A
+
+PEM Efficiency : 0.3338334499977725
+Power : 20.57081718886274 W
+Power-Stack : 20.57081718886274 W
+Power-Thermal : 28.014182811137257 W
+VStack : 0.5207801819965251 V
+Vcell : 0.5207801819965251 V
+###########
+I :39.6 A
+
+PEM Efficiency : 0.33063082169720026
+Power : 20.425049641166247 W
+Power-Stack : 20.425049641166247 W
+Power-Thermal : 28.282950358833755 W
+VStack : 0.5157840818476325 V
+Vcell : 0.5157840818476325 V
+###########
+I :39.7 A
+
+PEM Efficiency : 0.32737752370854234
+Power : 20.275144798317445 W
+Power-Stack : 20.275144798317445 W
+Power-Thermal : 28.555855201682558 W
+VStack : 0.510708936985326 V
+Vcell : 0.510708936985326 V
+###########
+I :39.8 A
+
+PEM Efficiency : 0.32407258247669735
+Power : 20.121018500813186 W
+Power-Stack : 20.121018500813186 W
+Power-Thermal : 28.832981499186808 W
+VStack : 0.5055532286636479 V
+Vcell : 0.5055532286636479 V
+###########
+I :39.9 A
+
+PEM Efficiency : 0.32071500590909624
+Power : 19.962584827805788 W
+Power-Stack : 19.962584827805788 W
+Power-Thermal : 29.11441517219421 W
+VStack : 0.5003154092181902 V
+Vcell : 0.5003154092181902 V
+###########
+I :40.0 A
+
+PEM Efficiency : 0.31730378302170126
+Power : 19.79975606055416 W
+Power-Stack : 19.79975606055416 W
+Power-Thermal : 29.400243939445836 W
+VStack : 0.49499390151385403 V
+Vcell : 0.49499390151385403 V
+###########
+I :40.1 A
+
+PEM Efficiency : 0.3138378835782566
+Power : 19.63244264512142 W
+Power-Stack : 19.63244264512142 W
+Power-Thermal : 29.69055735487858 W
+VStack : 0.48958709838208025 V
+Vcell : 0.48958709838208025 V
+###########
+I :40.2 A
+
+PEM Efficiency : 0.31031625772265503
+Power : 19.460553154303145 W
+Power-Stack : 19.460553154303145 W
+Power-Thermal : 29.985446845696856 W
+VStack : 0.4840933620473419 V
+Vcell : 0.4840933620473419 V
+###########
+I :40.3 A
+
+PEM Efficiency : 0.3067378356042974
+Power : 19.28399424877097 W
+Power-Stack : 19.28399424877097 W
+Power-Thermal : 30.285005751229026 W
+VStack : 0.47851102354270403 V
+Vcell : 0.47851102354270403 V
+###########
+I :40.4 A
+
+PEM Efficiency : 0.3031015269963055
+Power : 19.102670637415155 W
+Power-Stack : 19.102670637415155 W
+Power-Thermal : 30.58932936258484 W
+VStack : 0.47283838211423657 V
+Vcell : 0.47283838211423657 V
+###########
+I :40.5 A
+
+PEM Efficiency : 0.2994062209064542
+Power : 18.91648503686978 W
+Power-Stack : 18.91648503686978 W
+Power-Thermal : 30.89851496313022 W
+VStack : 0.4670737046140686 V
+Vcell : 0.4670737046140686 V
+###########
+I :40.6 A
+
+PEM Efficiency : 0.29565078518068333
+Power : 18.725338130203763 W
+Power-Stack : 18.725338130203763 W
+Power-Thermal : 31.21266186979624 W
+VStack : 0.46121522488186606 V
+Vcell : 0.46121522488186606 V
+###########
+I :40.7 A
+
+PEM Efficiency : 0.29183406609904783
+Power : 18.529128524760747 W
+Power-Stack : 18.529128524760747 W
+Power-Thermal : 31.531871475239257 W
+VStack : 0.4552611431145146 V
+Vcell : 0.4552611431145146 V
+###########
+I :40.8 A
+
+PEM Efficiency : 0.28795488796396157
+Power : 18.327752709130223 W
+Power-Stack : 18.327752709130223 W
+Power-Thermal : 31.85624729086977 W
+VStack : 0.44920962522378005 V
+Vcell : 0.44920962522378005 V
+###########
+I :40.9 A
+
+PEM Efficiency : 0.28401205268058766
+Power : 18.121105009232213 W
+Power-Stack : 18.121105009232213 W
+Power-Thermal : 32.18589499076778 W
+VStack : 0.4430588021817167 V
+Vcell : 0.4430588021817167 V
+###########
+I :41.0 A
+
+PEM Efficiency : 0.2800043393292277
+Power : 17.909077543497403 W
+Power-Stack : 17.909077543497403 W
+Power-Thermal : 32.520922456502596 W
+VStack : 0.4368067693535952 V
+Vcell : 0.4368067693535952 V
+###########
+I :41.1 A
+
+PEM Efficiency : 0.27593050372955186
+Power : 17.69156017712395 W
+Power-Stack : 17.69156017712395 W
+Power-Thermal : 32.86143982287605 W
+VStack : 0.43045158581810095 V
+Vcell : 0.43045158581810095 V
+###########
+I :41.2 A
+
+PEM Efficiency : 0.271789277996522
+Power : 17.468440475392466 W
+Power-Stack : 17.468440475392466 W
+Power-Thermal : 33.20755952460754 W
+VStack : 0.4239912736745744 V
+Vcell : 0.4239912736745744 V
+###########
+I :41.3 A
+
+PEM Efficiency : 0.2675793700878396
+Power : 17.23960365601933 W
+Power-Stack : 17.23960365601933 W
+Power-Thermal : 33.559396343980666 W
+VStack : 0.4174238173370298 V
+Vcell : 0.4174238173370298 V
+###########
+I :41.4 A
+
+PEM Efficiency : 0.26329946334276555
+Power : 17.00493254052917 W
+Power-Stack : 17.00493254052917 W
+Power-Thermal : 33.91706745947083 W
+VStack : 0.41074716281471424 V
+Vcell : 0.41074716281471424 V
+###########
+I :41.5 A
+
+PEM Efficiency : 0.25894821601214346
+Power : 16.764307504626167 W
+Power-Stack : 16.764307504626167 W
+Power-Thermal : 34.28069249537383 W
+VStack : 0.4039592169789438 V
+Vcell : 0.4039592169789438 V
+###########
+I :41.6 A
+
+PEM Efficiency : 0.25452426077945606
+Power : 16.51760642754358 W
+Power-Stack : 16.51760642754358 W
+Power-Thermal : 34.65039357245642 W
+VStack : 0.3970578468159514 V
+Vcell : 0.3970578468159514 V
+###########
+I :41.7 A
+
+PEM Efficiency : 0.25002620427275035
+Power : 16.264704640350956 W
+Power-Stack : 16.264704640350956 W
+Power-Thermal : 35.02629535964905 W
+VStack : 0.39004087866549053 V
+Vcell : 0.39004087866549053 V
+###########
+I :41.8 A
+
+PEM Efficiency : 0.24545262656724864
+Power : 16.005474873197148 W
+Power-Stack : 16.005474873197148 W
+Power-Thermal : 35.40852512680285 W
+VStack : 0.3829060974449079 V
+Vcell : 0.3829060974449079 V
+###########
+I :41.9 A
+
+PEM Efficiency : 0.24080208067847425
+Power : 15.739787201467792 W
+Power-Stack : 15.739787201467792 W
+Power-Thermal : 35.79721279853221 W
+VStack : 0.37565124585841986 V
+Vcell : 0.37565124585841986 V
+###########
+I :42.0 A
+
+PEM Efficiency : 0.2360730920457109
+Power : 15.467508990834979 W
+Power-Stack : 15.467508990834979 W
+Power-Thermal : 36.19249100916502 W
+VStack : 0.368274023591309 V
+Vcell : 0.368274023591309 V
+###########
+I :42.1 A
+
+PEM Efficiency : 0.23126415800560418
+Power : 15.188504841176062 W
+Power-Stack : 15.188504841176062 W
+Power-Thermal : 36.59449515882394 W
+VStack : 0.36077208648874254 V
+Vcell : 0.36077208648874254 V
+###########
+I :42.2 A
+
+PEM Efficiency : 0.22637374725572856
+Power : 14.902636529339125 W
+Power-Stack : 14.902636529339125 W
+Power-Thermal : 37.00336347066088 W
+VStack : 0.35314304571893657 V
+Vcell : 0.35314304571893657 V
+###########
+I :42.3 A
+
+PEM Efficiency : 0.22140029930791538
+Power : 14.60976295073072 W
+Power-Stack : 14.60976295073072 W
+Power-Thermal : 37.41923704926927 W
+VStack : 0.345384466920348 V
+Vcell : 0.345384466920348 V
+###########
+I :42.4 A
+
+PEM Efficiency : 0.21634222393115646
+Power : 14.309740059702413 W
+Power-Stack : 14.309740059702413 W
+Power-Thermal : 37.84225994029758 W
+VStack : 0.3374938693326041 V
+Vcell : 0.3374938693326041 V
+###########
diff --git a/Documents/Chamberline_Kim.ipynb b/Documents/Chamberline_Kim.ipynb
index de51cc03..6bf47d47 100644
--- a/Documents/Chamberline_Kim.ipynb
+++ b/Documents/Chamberline_Kim.ipynb
@@ -11,7 +11,35 @@
"cell_type": "markdown",
"metadata": {},
"source": [
- "### Version 0.9"
+ "### Version 1.0"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "
+Larminie-Dicks model is obtained for large variation of the load parameters. In this model, the fuel cell is represented
+by means of its voltage-current characteristic obtained in static operating mode. In fact, Larminie-Dicks static model
+presents the fuel cell voltage as a function of the current magnitude. The obtained polarization curve is composed of
+three main regions corresponding to the predominance of electrochemical activation phenomena (region I), a linear
+part (region II) where the voltage drop is mainly due to electronic and ionic internal resistances and the last
+region where the diffusion kinetics of gases through the electrodes becomes the limiting factor (region III). This
+last zone is characterized by a rapid voltage fall.
+
+
Inputs
+
+
+
+Input
+
+Description
+
+Value
+
+
+
+
+A
+
+
+The slope of the Tafel line [V]
+
+
+0.0587
+
+
+
+B
+
+
+Constant in the mass transfer term [V]
+
+
+0.0517
+
+
+
+E0
+
+
+Fuel cell reversible no loss voltage [V]
+
+
+1.178
+
+
+
+N
+
+
+Number of single cells
+
+
+23
+
+
+
+RM
+
+
+The membrane and contact resistances [ohm]
+
+
+0.0018
+
+
+
+i-start
+
+
+Cell operating current start point [A]
+
+
+0.1
+
+
+
+i-step
+
+
+Cell operating current step
+
+
+0.1
+
+
+
+i-stop
+
+
+Cell operating current end point [A]
+
+
+98
+
+
+
+i_0
+
+
+Exchange current at which the overvoltage begins to move from zero [A]
+
+
+0.00654
+
+
+
+i_L
+
+
+Limiting current [A]
+
+
+100.0
+
+
+
+i_n
+
+
+Internal current [A]
+
+
+0.23
+
+
+
Overall Parameters
+
+
+
+Parameter
+
+Description
+
+Value
+
+
+
+
+Efficiency|Pmax
+
+
+Cell efficiency at maximum power
+
+
+0.25686509413321934
+
+
+
+Pmax
+
+
+Maximum power [W]
+
+
+730.854142495743
+
+
+
+Ptotal(Elec)
+
+
+Total electrical power [W]
+
+
+1202.4207343171606
+
+
+
+Ptotal(Thermal)
+
+
+Total thermal power [W]
+
+
+1564.341265682838
+
+
+
+VFC|Pmax
+
+
+Cell voltage at maximum power [V]
+
+
+9.216319577499911
+
+
+
Graphs
+
+
+
+
+
+
+
+
+
+
+
+
+
+Parameter
+
+Description
+
+Value
+
+
+
+
+K
+
+
+Slope of the curve obtained by linear approximation [A^(-1)]
+
+
+-0.1138845331475272
+
+
+
+Pmax(L-Approx)
+
+
+Maximum power obtained by linear approximation [W]
+
+
+701.5080301869865
+
+
+
+V0
+
+
+Intercept of the curve obtained by linear approximation [V]
+
+
+17.876343531839655
+
+
+
+VFC|Pmax(L-Approx)
+
+
+Cell voltage at maximum power obtained by linear approximation [V]
+
+
+
\ No newline at end of file
diff --git a/Documents/Larminie-Dicks/Larminiee_Test.opem b/Documents/Larminie-Dicks/Larminiee_Test.opem
new file mode 100644
index 00000000..c6f47a7b
--- /dev/null
+++ b/Documents/Larminie-Dicks/Larminiee_Test.opem
@@ -0,0 +1,8837 @@
+ ___
+ / _ \ _ __ ___ _ __ ___
+| | | || '_ \ / _ \| '_ ` _ \
+| |_| || |_) || __/| | | | | |
+ \___/ | .__/ \___||_| |_| |_|
+ |_|
+Simulation Date : 2019-02-22 18:15:23.916245
+**********
+Larminie-Dicks Model
+
+**********
+Simulation Inputs :
+
+A : 0.0587
+B : 0.0517
+E0 : 1.178
+N : 23
+Name : Larminiee_Test
+RM : 0.0018
+i-start : 0.1
+i-step : 0.1
+i-stop : 98
+i_0 : 0.00654
+i_L : 100.0
+i_n : 0.23
+**********
+I :0.1 A
+
+PEM Efficiency : 0.6070918465825977
+Power : 0.09470632806688527 W
+Power-Stack : 2.178245545538361 W
+Power-Thermal : 0.650754454461639 W
+VStack : 21.78245545538361 V
+Vcell : 0.9470632806688526 V
+###########
+I :0.2 A
+
+PEM Efficiency : 0.596983288796134
+Power : 0.18625878610439384 W
+Power-Stack : 4.2839520804010585 W
+Power-Thermal : 1.3740479195989417 W
+VStack : 21.41976040200529 V
+Vcell : 0.9312939305219692 V
+###########
+I :0.3 A
+
+PEM Efficiency : 0.5889668542476844
+Power : 0.27563648778791633 W
+Power-Stack : 6.339639219122075 W
+Power-Thermal : 2.1473607808779245 W
+VStack : 21.132130730406917 V
+Vcell : 0.9187882926263877 V
+###########
+I :0.4 A
+
+PEM Efficiency : 0.5823143704480743
+Power : 0.3633641671595984 W
+Power-Stack : 8.357375844670763 W
+Power-Thermal : 2.958624155329237 W
+VStack : 20.893439611676907 V
+Vcell : 0.908410417898996 V
+###########
+I :0.5 A
+
+PEM Efficiency : 0.576622053314997
+Power : 0.4497652015856977 W
+Power-Stack : 10.344599636471047 W
+Power-Thermal : 3.8004003635289525 W
+VStack : 20.689199272942094 V
+Vcell : 0.8995304031713954 V
+###########
+I :0.6 A
+
+PEM Efficiency : 0.5716425142657562
+Power : 0.5350573933527478 W
+Power-Stack : 12.3063200471132 W
+Power-Thermal : 4.6676799528867985 W
+VStack : 20.510533411855334 V
+Vcell : 0.8917623222545797 V
+###########
+I :0.7 A
+
+PEM Efficiency : 0.5672131517182866
+Power : 0.6193967616763688 W
+Power-Stack : 14.246125518556482 W
+Power-Thermal : 5.556874481443514 W
+VStack : 20.35160788365212 V
+Vcell : 0.884852516680527 V
+###########
+I :0.8 A
+
+PEM Efficiency : 0.5632213484876261
+Power : 0.7029002429125574 W
+Power-Stack : 16.16670558698882 W
+Power-Thermal : 6.465294413011179 W
+VStack : 20.208381983736025 V
+Vcell : 0.8786253036406967 V
+###########
+I :0.9 A
+
+PEM Efficiency : 0.5595858755325545
+Power : 0.7856585692477064 W
+Power-Stack : 18.070147092697248 W
+Power-Thermal : 7.390852907302754 W
+VStack : 20.07794121410805 V
+Vcell : 0.8729539658307849 V
+###########
+I :1.0 A
+
+PEM Efficiency : 0.5562462126792992
+Power : 0.8677440917797067 W
+Power-Stack : 19.958114110933252 W
+Power-Thermal : 8.331885889066747 W
+VStack : 19.958114110933252 V
+Vcell : 0.8677440917797067 V
+###########
+I :1.1 A
+
+PEM Efficiency : 0.5531560572234717
+Power : 0.9492157941954775 W
+Power-Stack : 21.831963266495983 W
+Power-Thermal : 9.287036733504017 W
+VStack : 19.847239333178166 V
+Vcell : 0.8629234492686159 V
+###########
+I :1.2 A
+
+PEM Efficiency : 0.5502791922121564
+Power : 1.0301226478211567 W
+Power-Stack : 23.692820899886605 W
+Power-Thermal : 10.255179100113395 W
+VStack : 19.74401741657217 V
+Vcell : 0.858435539850964 V
+###########
+I :1.3 A
+
+PEM Efficiency : 0.5475867544887774
+Power : 1.1105059381032407 W
+Power-Stack : 25.541636576374536 W
+Power-Thermal : 11.235363423625465 W
+VStack : 19.647412751057335 V
+Vcell : 0.8542353370024928 V
+###########
+I :1.4 A
+
+PEM Efficiency : 0.5450553693735705
+Power : 1.190400926711878 W
+Power-Stack : 27.379221314373194 W
+Power-Thermal : 12.226778685626805 W
+VStack : 19.55658665312371 V
+Vcell : 0.85028637622277 V
+###########
+I :1.5 A
+
+PEM Efficiency : 0.5426658416714328
+Power : 1.2698380695111529 W
+Power-Stack : 29.206275598756516 W
+Power-Thermal : 13.228724401243484 W
+VStack : 19.47085039917101 V
+Vcell : 0.8465587130074352 V
+###########
+I :1.6 A
+
+PEM Efficiency : 0.5404022150580957
+Power : 1.348843928785007 W
+Power-Stack : 31.02341036205516 W
+Power-Thermal : 14.24058963794484 W
+VStack : 19.389631476284475 V
+Vcell : 0.8430274554906293 V
+###########
+I :1.7 A
+
+PEM Efficiency : 0.5382510820424253
+Power : 1.427441869576512 W
+Power-Stack : 32.83116300025978 W
+Power-Thermal : 15.261836999740217 W
+VStack : 19.312448823682224 V
+Vcell : 0.8396716879861836 V
+###########
+I :1.8 A
+
+PEM Efficiency : 0.536201068437617
+Power : 1.5056526001728283 W
+Power-Stack : 34.63000980397505 W
+Power-Thermal : 16.29199019602495 W
+VStack : 19.238894335541694 V
+Vcell : 0.8364736667626824 V
+###########
+I :1.9 A
+
+PEM Efficiency : 0.5342424419218519
+Power : 1.583494597856369 W
+Power-Stack : 36.420375750696486 W
+Power-Thermal : 17.330624249303508 W
+VStack : 19.168618816156048 V
+Vcell : 0.833418209398089 V
+###########
+I :2.0 A
+
+PEM Efficiency : 0.532366810486187
+Power : 1.6609844487169034 W
+Power-Stack : 38.20264232048878 W
+Power-Thermal : 18.37735767951122 W
+VStack : 19.10132116024439 V
+Vcell : 0.8304922243584517 V
+###########
+I :2.1 A
+
+PEM Efficiency : 0.5305668870842597
+Power : 1.738137122088035 W
+Power-Stack : 39.97715380802481 W
+Power-Thermal : 19.431846191975197 W
+VStack : 19.03673990858324 V
+Vcell : 0.8276843438514452 V
+###########
+I :2.2 A
+
+PEM Efficiency : 0.5288363037744284
+Power : 1.8149661945538385 W
+Power-Stack : 41.74422247473829 W
+Power-Thermal : 20.49377752526172 W
+VStack : 18.97464657942649 V
+Vcell : 0.8249846338881083 V
+###########
+I :2.3 A
+
+PEM Efficiency : 0.527169463367337
+Power : 1.891484034562005 W
+Power-Stack : 43.504132794926115 W
+Power-Thermal : 21.562867205073875 W
+VStack : 18.914840345620053 V
+Vcell : 0.8223843628530457 V
+###########
+I :2.4 A
+
+PEM Efficiency : 0.5255614198480028
+Power : 1.9677019559109223 W
+Power-Stack : 45.257144985951214 W
+Power-Thermal : 22.638855014048787 W
+VStack : 18.857143744146338 V
+Vcell : 0.8198758149628843 V
+###########
+I :2.5 A
+
+PEM Efficiency : 0.5240077811244296
+Power : 2.0436303463852754 W
+Power-Stack : 47.00349796686133 W
+Power-Thermal : 23.721502033138655 W
+VStack : 18.801399186744536 V
+Vcell : 0.8174521385541103 V
+###########
+I :2.6 A
+
+PEM Efficiency : 0.5225046292799733
+Power : 2.1192787763595717 W
+Power-Stack : 48.74341185627015 W
+Power-Thermal : 24.810588143729856 W
+VStack : 18.74746609856544 V
+Vcell : 0.8151072216767583 V
+###########
+I :2.7 A
+
+PEM Efficiency : 0.52104845467996
+Power : 2.194656091111992 W
+Power-Stack : 50.47709009557581 W
+Power-Thermal : 25.905909904424192 W
+VStack : 18.695218553916966 V
+Vcell : 0.8128355893007376 V
+###########
+I :2.8 A
+
+PEM Efficiency : 0.5196361011410657
+Power : 2.269770489784175 W
+Power-Stack : 52.20472126503602 W
+Power-Thermal : 27.007278734963975 W
+VStack : 18.644543308941437 V
+Vcell : 0.8106323177800625 V
+###########
+I :2.9 A
+
+PEM Efficiency : 0.5182647200068938
+Power : 2.3446295933111876 W
+Power-Stack : 53.926480646157316 W
+Power-Thermal : 28.11451935384268 W
+VStack : 18.59533815384735 V
+Vcell : 0.8084929632107544 V
+###########
+I :3.0 A
+
+PEM Efficiency : 0.5169317314482642
+Power : 2.4192405031778765 W
+Power-Stack : 55.64253157309116 W
+Power-Thermal : 29.22746842690884 W
+VStack : 18.54751052436372 V
+Vcell : 0.8064135010592922 V
+###########
+I :3.1 A
+
+PEM Efficiency : 0.515634791665824
+Power : 2.4936098524959247 W
+Power-Stack : 57.35302660740627 W
+Power-Thermal : 30.345973392593724 W
+VStack : 18.500976324969766 V
+Vcell : 0.8043902749986854 V
+###########
+I :3.2 A
+
+PEM Efficiency : 0.514371764946645
+Power : 2.5677438506136525 W
+Power-Stack : 59.05810856411401 W
+Power-Thermal : 31.469891435885998 W
+VStack : 18.455658926285626 V
+Vcell : 0.8024199533167663 V
+###########
+I :3.3 A
+
+PEM Efficiency : 0.5131406997374682
+Power : 2.6416483222484866 W
+Power-Stack : 60.75791141171519 W
+Power-Thermal : 32.5990885882848 W
+VStack : 18.411488306580363 V
+Vcell : 0.8004994915904505 V
+###########
+I :3.4 A
+
+PEM Efficiency : 0.5119398080610783
+Power : 2.7153287419559593 W
+Power-Stack : 62.452561064987066 W
+Power-Thermal : 33.73343893501293 W
+VStack : 18.36840031323149 V
+Vcell : 0.7986261005752822 V
+###########
+I :3.5 A
+
+PEM Efficiency : 0.5107674477304784
+Power : 2.788790264608412 W
+Power-Stack : 64.14217608599348 W
+Power-Thermal : 34.872823914006524 W
+VStack : 18.326336024569564 V
+Vcell : 0.7967972184595463 V
+###########
+I :3.6 A
+
+PEM Efficiency : 0.5096221069165698
+Power : 2.862037752443456 W
+Power-Stack : 65.82686830619949 W
+Power-Thermal : 36.017131693800515 W
+VStack : 18.285241196166524 V
+Vcell : 0.7950104867898489 V
+###########
+I :3.7 A
+
+PEM Efficiency : 0.5085023907052405
+Power : 2.935075799150648 W
+Power-Stack : 67.50674338046491 W
+Power-Thermal : 37.16625661953508 W
+VStack : 18.24506577850403 V
+Vcell : 0.7932637295001752 V
+###########
+I :3.8 A
+
+PEM Efficiency : 0.5074070093438323
+Power : 3.007908751390238 W
+Power-Stack : 69.18190128197547 W
+Power-Thermal : 38.32009871802452 W
+VStack : 18.205763495256704 V
+Vcell : 0.7915549345763785 V
+###########
+I :3.9 A
+
+PEM Efficiency : 0.5063347679284521
+Power : 3.080540728076703 W
+Power-Stack : 70.85243674576417 W
+Power-Thermal : 39.47856325423582 W
+VStack : 18.167291473272865 V
+Vcell : 0.7898822379683854 V
+###########
+I :4.0 A
+
+PEM Efficiency : 0.5052845573252364
+Power : 3.1529756377094746 W
+Power-Stack : 72.51843966731792 W
+Power-Thermal : 40.641560332682076 W
+VStack : 18.12960991682948 V
+Vcell : 0.7882439094273687 V
+###########
+I :4.1 A
+
+PEM Efficiency : 0.5042553461525208
+Power : 3.225217193991523 W
+Power-Stack : 74.17999546180504 W
+Power-Thermal : 41.80900453819495 W
+VStack : 18.09268181995245 V
+Vcell : 0.7866383399979325 V
+###########
+I :4.2 A
+
+PEM Efficiency : 0.5032461736785444
+Power : 3.297268929941823 W
+Power-Stack : 75.83718538866192 W
+Power-Thermal : 42.98081461133807 W
+VStack : 18.056472711586174 V
+Vcell : 0.7850640309385293 V
+###########
+I :4.3 A
+
+PEM Efficiency : 0.5022561435120266
+Power : 3.369134210678675 W
+Power-Stack : 77.49008684560953 W
+Power-Thermal : 44.15691315439047 W
+VStack : 18.020950429211517 V
+Vcell : 0.7835195838787616 V
+###########
+I :4.4 A
+
+PEM Efficiency : 0.5012844179817214
+Power : 3.440816245026536 W
+Power-Stack : 79.13877363561032 W
+Power-Thermal : 45.33722636438969 W
+VStack : 17.98608491718416 V
+Vcell : 0.7820036920514853 V
+###########
+I :4.5 A
+
+PEM Efficiency : 0.5003302131165906
+Power : 3.5123180960784666 W
+Power-Stack : 80.78331620980472 W
+Power-Thermal : 46.52168379019527 W
+VStack : 17.951848046623272 V
+Vcell : 0.7805151324618814 V
+###########
+I :4.6 A
+
+PEM Efficiency : 0.49939279415118687
+Power : 3.583642690828917 W
+Power-Stack : 82.42378188906508 W
+Power-Thermal : 47.7102181109349 W
+VStack : 17.918213454144585 V
+Vcell : 0.7790527588758516 V
+###########
+I :4.7 A
+
+PEM Efficiency : 0.49847147149164955
+Power : 3.6547928289767744 W
+Power-Stack : 84.06023506646581 W
+Power-Thermal : 48.90276493353418 W
+VStack : 17.885156397120387 V
+Vcell : 0.7776154955269733 V
+###########
+I :4.8 A
+
+PEM Efficiency : 0.4975655970868098
+Power : 3.7257711909860323 W
+Power-Stack : 85.69273739267874 W
+Power-Thermal : 50.09926260732126 W
+VStack : 17.852653623474737 V
+Vcell : 0.7762023314554234 V
+###########
+I :4.9 A
+
+PEM Efficiency : 0.4966745611565416
+Power : 3.796580345480604 W
+Power-Stack : 87.32134794605389 W
+Power-Thermal : 51.2996520539461 W
+VStack : 17.820683254296714 V
+Vcell : 0.7748123154042049 V
+###########
+I :5.0 A
+
+PEM Efficiency : 0.49579778923597145
+Power : 3.8672227560405776 W
+Power-Stack : 88.94612338893329 W
+Power-Thermal : 52.503876611066715 W
+VStack : 17.789224677786656 V
+Vcell : 0.7734445512081155 V
+###########
+I :5.1 A
+
+PEM Efficiency : 0.4949347394996449
+Power : 3.9377007874591743 W
+Power-Stack : 90.56711811156102 W
+Power-Thermal : 53.711881888438974 W
+VStack : 17.758258453247258 V
+Vcell : 0.772098193619446 V
+###########
+I :5.2 A
+
+PEM Efficiency : 0.49408490033442143
+Power : 4.008016711512827 W
+Power-Stack : 92.18438436479502 W
+Power-Thermal : 54.92361563520499 W
+VStack : 17.72776622399904 V
+Vcell : 0.7707724445216975 V
+###########
+I :5.3 A
+
+PEM Efficiency : 0.49324778813385933
+Power : 4.078172712290749 W
+Power-Stack : 93.79797238268723 W
+Power-Thermal : 56.13902761731276 W
+VStack : 17.697730638242874 V
+Vcell : 0.7694665494888207 V
+###########
+I :5.4 A
+
+PEM Efficiency : 0.4924229452902696
+Power : 4.148170891125232 W
+Power-Stack : 95.40793049588034 W
+Power-Thermal : 57.35806950411968 W
+VStack : 17.668135277014873 V
+Vcell : 0.7681797946528206 V
+###########
+I :5.5 A
+
+PEM Efficiency : 0.4916099383635533
+Power : 4.218013271159287 W
+Power-Stack : 97.0143052366636 W
+Power-Thermal : 58.58069476333639 W
+VStack : 17.638964588484292 V
+Vcell : 0.7669115038471431 V
+###########
+I :5.6 A
+
+PEM Efficiency : 0.49080835640847037
+Power : 4.287701801584397 W
+Power-Stack : 98.61714143644113 W
+Power-Thermal : 59.80685856355884 W
+VStack : 17.61020382793592 V
+Vcell : 0.7656610359972138 V
+###########
+I :5.7 A
+
+PEM Efficiency : 0.4900178094441672
+Power : 4.357238361577535 W
+Power-Stack : 100.2164823162833 W
+Power-Thermal : 61.0365176837167 W
+VStack : 17.581839002856718 V
+Vcell : 0.7644277827329008 V
+###########
+I :5.8 A
+
+PEM Efficiency : 0.4892379270516898
+Power : 4.426624763963689 W
+Power-Stack : 101.81236957116485 W
+Power-Thermal : 62.269630428835136 W
+VStack : 17.55385682261463 V
+Vcell : 0.7632111662006361 V
+###########
+I :5.9 A
+
+PEM Efficiency : 0.4884683570868489
+Power : 4.495862758627358 W
+Power-Stack : 103.40484344842923 W
+Power-Thermal : 63.50615655157077 W
+VStack : 17.52624465227614 V
+Vcell : 0.7620106370554843 V
+###########
+I :6.0 A
+
+PEM Efficiency : 0.48770876449723627
+Power : 4.564954035694132 W
+Power-Stack : 104.99394282096505 W
+Power-Thermal : 64.74605717903495 W
+VStack : 17.49899047016084 V
+Vcell : 0.7608256726156887 V
+###########
+I :6.1 A
+
+PEM Efficiency : 0.4869588302334399
+Power : 4.633900228501414 W
+Power-Stack : 106.57970525553252 W
+Power-Thermal : 65.98929474446746 W
+VStack : 17.472082828775825 V
+Vcell : 0.7596557751641663 V
+###########
+I :6.2 A
+
+PEM Efficiency : 0.4862182502455986
+Power : 4.70270291637543 W
+Power-Stack : 108.16216707663489 W
+Power-Thermal : 67.23583292336511 W
+VStack : 17.445510818812078 V
+Vcell : 0.7585004703831338 V
+###########
+I :6.3 A
+
+PEM Efficiency : 0.48548673455739133
+Power : 4.771363627230042 W
+Power-Stack : 109.74136342629097 W
+Power-Thermal : 68.48563657370902 W
+VStack : 17.419264035919202 V
+Vcell : 0.7573593059095305 V
+###########
+I :6.4 A
+
+PEM Efficiency : 0.4847640064104014
+Power : 4.839883840001448 W
+Power-Stack : 111.31732832003331 W
+Power-Thermal : 69.73867167996671 W
+VStack : 17.3933325500052 V
+Vcell : 0.7562318500002262 V
+###########
+I :6.5 A
+
+PEM Efficiency : 0.4840498014725325
+Power : 4.90826498693148 W
+Power-Stack : 112.89009469942403 W
+Power-Thermal : 70.99490530057598 W
+VStack : 17.367706876834465 V
+Vcell : 0.7551176902971507 V
+###########
+I :6.6 A
+
+PEM Efficiency : 0.483343867104807
+Power : 4.976508455711093 W
+Power-Stack : 114.45969448135513 W
+Power-Thermal : 72.25430551864486 W
+VStack : 17.342377951720476 V
+Vcell : 0.7540164326834989 V
+###########
+I :6.7 A
+
+PEM Efficiency : 0.48264596168145596
+Power : 5.044615591494578 W
+Power-Stack : 116.0261586043753 W
+Power-Thermal : 73.51684139562471 W
+VStack : 17.31733710513064 V
+Vcell : 0.7529277002230713 V
+###########
+I :6.8 A
+
+PEM Efficiency : 0.4819558539587174
+Power : 5.112587698794075 W
+Power-Stack : 117.58951707226372 W
+Power-Thermal : 74.78248292773628 W
+VStack : 17.29257604003878 V
+Vcell : 0.7518511321755992 V
+###########
+I :6.9 A
+
+PEM Efficiency : 0.4812733224882165
+Power : 5.1804260432631635 W
+Power-Stack : 119.14979899505276 W
+Power-Thermal : 76.05120100494725 W
+VStack : 17.26808681087721 V
+Vcell : 0.7507863830816178 V
+###########
+I :7.0 A
+
+PEM Efficiency : 0.4805981550712
+Power : 5.2481318533775045 W
+Power-Stack : 120.70703262768261 W
+Power-Thermal : 77.32296737231738 W
+VStack : 17.24386180395466 V
+Vcell : 0.7497331219110721 V
+###########
+I :7.1 A
+
+PEM Efficiency : 0.4799301482502582
+Power : 5.31570632201986 W
+Power-Stack : 122.26124540645678 W
+Power-Thermal : 78.59775459354321 W
+VStack : 17.219893719219264 V
+Vcell : 0.7486910312704028 V
+###########
+I :7.2 A
+
+PEM Efficiency : 0.4792691068354869
+Power : 5.383150607976189 W
+Power-Stack : 123.81246398345235 W
+Power-Thermal : 79.87553601654763 W
+VStack : 17.196175553257273 V
+Vcell : 0.7476598066633596 V
+###########
+I :7.3 A
+
+PEM Efficiency : 0.4786148434623254
+Power : 5.450465837348962 W
+Power-Stack : 125.36071425902612 W
+Power-Thermal : 81.15628574097389 W
+VStack : 17.172700583428234 V
+Vcell : 0.7466391558012276 V
+###########
+I :7.4 A
+
+PEM Efficiency : 0.4779671781785626
+Power : 5.517653104893327 W
+Power-Stack : 126.90602141254652 W
+Power-Thermal : 82.4399785874535 W
+VStack : 17.149462353046825 V
+Vcell : 0.7456287979585576 V
+###########
+I :7.5 A
+
+PEM Efficiency : 0.47732593805823526
+Power : 5.584713475281353 W
+Power-Stack : 128.4484099314711 W
+Power-Thermal : 83.72659006852888 W
+VStack : 17.126454657529482 V
+Vcell : 0.744628463370847 V
+###########
+I :7.6 A
+
+PEM Efficiency : 0.4766909568403395
+Power : 5.651647984299065 W
+Power-Stack : 129.9879036388785 W
+Power-Thermal : 85.0160963611215 W
+VStack : 17.10367153143138 V
+Vcell : 0.7436378926709296 V
+###########
+I :7.7 A
+
+PEM Efficiency : 0.4760620745904702
+Power : 5.718457639980728 W
+Power-Stack : 131.52452571955675 W
+Power-Thermal : 86.30847428044328 W
+VStack : 17.081107236306067 V
+Vcell : 0.7426568363611334 V
+###########
+I :7.8 A
+
+PEM Efficiency : 0.47543913738366156
+Power : 5.785143423684394 W
+Power-Stack : 133.05829874474105 W
+Power-Thermal : 87.60370125525893 W
+VStack : 17.05875624932578 V
+Vcell : 0.7416850543185121 V
+###########
+I :7.9 A
+
+PEM Efficiency : 0.47482199700685623
+Power : 5.851706291112496 W
+Power-Stack : 134.5892446955874 W
+Power-Thermal : 88.9017553044126 W
+VStack : 17.036613252606 V
+Vcell : 0.7407223153306957 V
+###########
+I :8.0 A
+
+PEM Efficiency : 0.47421051067956177
+Power : 5.918147173280931 W
+Power-Stack : 136.11738498546143 W
+Power-Thermal : 90.20261501453857 W
+VStack : 17.01467312318268 V
+Vcell : 0.7397683966601164 V
+###########
+I :8.1 A
+
+PEM Efficiency : 0.4736045407913766
+Power : 5.984466977439834 W
+Power-Stack : 137.6427404811162 W
+Power-Thermal : 91.5062595188838 W
+VStack : 16.992930923594592 V
+Vcell : 0.7388230836345475 V
+###########
+I :8.2 A
+
+PEM Efficiency : 0.47300395465517836
+Power : 6.050666587949041 W
+Power-Stack : 139.16533152282796 W
+Power-Thermal : 92.81266847717202 W
+VStack : 16.9713818930278 V
+Vcell : 0.7378861692620783 V
+###########
+I :8.3 A
+
+PEM Efficiency : 0.4724086242748654
+Power : 6.116746867110957 W
+Power-Stack : 140.68517794355202 W
+Power-Thermal : 94.121822056448 W
+VStack : 16.95002143898217 V
+Vcell : 0.73695745386879 V
+###########
+I :8.4 A
+
+PEM Efficiency : 0.4718184261266338
+Power : 6.18270865596341 W
+Power-Stack : 142.20229908715842 W
+Power-Thermal : 95.43370091284157 W
+VStack : 16.92884512942362 V
+Vcell : 0.7360367447575488 V
+###########
+I :8.5 A
+
+PEM Efficiency : 0.47123324095285596
+Power : 6.24855277503487 W
+Power-Stack : 143.716713825802 W
+Power-Thermal : 96.74828617419797 W
+VStack : 16.907848685388473 V
+Vcell : 0.7351238558864553 V
+###########
+I :8.6 A
+
+PEM Efficiency : 0.4706529535676952
+Power : 6.314280025064199 W
+Power-Stack : 145.22844057647657 W
+Power-Thermal : 98.0655594235234 W
+VStack : 16.887027974008905 V
+Vcell : 0.7342186075656045 V
+###########
+I :8.7 A
+
+PEM Efficiency : 0.4700774526736686
+Power : 6.37989118768703 W
+Power-Stack : 146.7374973168017 W
+Power-Thermal : 99.38550268319827 W
+VStack : 16.866379001931232 V
+Vcell : 0.7333208261709231 V
+###########
+I :8.8 A
+
+PEM Efficiency : 0.4695066306884237
+Power : 6.445387026090682 W
+Power-Stack : 148.24390160008568 W
+Power-Thermal : 100.70809839991435 W
+VStack : 16.845897909100643 V
+Vcell : 0.732430343873941 V
+###########
+I :8.9 A
+
+PEM Efficiency : 0.4689403835810528
+Power : 6.510768285639337 W
+Power-Stack : 149.74767056970475 W
+Power-Thermal : 102.03332943029524 W
+VStack : 16.825580962888175 V
+Vcell : 0.7315469983864423 V
+###########
+I :9.0 A
+
+PEM Efficiency : 0.46837861071732473
+Power : 6.57603569447124 W
+Power-Stack : 151.2488209728385 W
+Power-Thermal : 103.36117902716148 W
+VStack : 16.805424552537612 V
+Vcell : 0.7306706327190267 V
+###########
+I :9.1 A
+
+PEM Efficiency : 0.4678212147132561
+Power : 6.641189964069383 W
+Power-Stack : 152.7473691735958 W
+Power-Thermal : 104.69163082640415 W
+VStack : 16.78542518391163 V
+Vcell : 0.7298010949526795 V
+###########
+I :9.2 A
+
+PEM Efficiency : 0.46726810129648605
+Power : 6.706231789807167 W
+Power-Stack : 154.24333116556485 W
+Power-Thermal : 106.02466883443512 W
+VStack : 16.76557947451792 V
+Vcell : 0.7289382380225182 V
+###########
+I :9.3 A
+
+PEM Efficiency : 0.46671917917496575
+Power : 6.771161851470404 W
+Power-Stack : 155.73672258381927 W
+Power-Thermal : 107.36027741618074 W
+VStack : 16.74588414879777 V
+Vcell : 0.7280819195129465 V
+###########
+I :9.4 A
+
+PEM Efficiency : 0.46617435991249906
+Power : 6.835980813756886 W
+Power-Stack : 157.22755871640837 W
+Power-Thermal : 108.6984412835916 W
+VStack : 16.726336033660466 V
+Vcell : 0.7272320014634985 V
+###########
+I :9.5 A
+
+PEM Efficiency : 0.46563355781071375
+Power : 6.900689326754778 W
+Power-Stack : 158.7158545153599 W
+Power-Thermal : 110.03914548464012 W
+VStack : 16.70693205424841 V
+Vcell : 0.7263883501847135 V
+###########
+I :9.6 A
+
+PEM Efficiency : 0.46509668979706664
+Power : 6.96528802640087 W
+Power-Stack : 160.20162460722003 W
+Power-Thermal : 111.38237539277999 W
+VStack : 16.68766922991875 V
+Vcell : 0.725550836083424 V
+###########
+I :9.7 A
+
+PEM Efficiency : 0.4645636753185162
+Power : 7.029777534919787 W
+Power-Stack : 161.6848833031551 W
+Power-Thermal : 112.72811669684485 W
+VStack : 16.668544670428364 V
+Vcell : 0.7247193334968853 V
+###########
+I :9.8 A
+
+PEM Efficiency : 0.4640344362405236
+Power : 7.094158461245126 W
+Power-Stack : 163.1656446086379 W
+Power-Thermal : 114.07635539136214 W
+VStack : 16.649555572309986 V
+Vcell : 0.7238937205352168 V
+###########
+I :9.9 A
+
+PEM Efficiency : 0.46350889675106255
+Power : 7.158431401423411 W
+Power-Stack : 164.64392223273845 W
+Power-Thermal : 115.42707776726154 W
+VStack : 16.630699215428127 V
+Vcell : 0.7230738789316576 V
+###########
+I :10.0 A
+
+PEM Efficiency : 0.4629869832693446
+Power : 7.222596939001776 W
+Power-Stack : 166.11972959704084 W
+Power-Thermal : 116.78027040295913 W
+VStack : 16.611972959704087 V
+Vcell : 0.7222596939001776 V
+###########
+I :10.1 A
+
+PEM Efficiency : 0.46246862435898434
+Power : 7.286655645400156 W
+Power-Stack : 167.5930798442036 W
+Power-Thermal : 118.13592015579637 W
+VStack : 16.59337424200036 V
+Vcell : 0.7214510540000155 V
+###########
+I :10.2 A
+
+PEM Efficiency : 0.46195375064534594
+Power : 7.350608080268744 W
+Power-Stack : 169.0639858461811 W
+Power-Thermal : 119.49401415381885 W
+VStack : 16.574900573155013 V
+Vcell : 0.7206478510067397 V
+###########
+I :10.3 A
+
+PEM Efficiency : 0.4614422947368356
+Power : 7.414454791831476 W
+Power-Stack : 170.53246021212394 W
+Power-Thermal : 120.85453978787605 W
+VStack : 16.556549535157664 V
+Vcell : 0.7198499797894636 V
+###########
+I :10.4 A
+
+PEM Efficiency : 0.4609341911499122
+Power : 7.478196317216175 W
+Power-Stack : 171.99851529597203 W
+Power-Thermal : 122.21748470402798 W
+VStack : 16.538318778458848 V
+Vcell : 0.719057338193863 V
+###########
+I :10.5 A
+
+PEM Efficiency : 0.4604293762376078
+Power : 7.541833182772017 W
+Power-Stack : 173.46216320375638 W
+Power-Thermal : 123.58283679624363 W
+VStack : 16.520206019405368 V
+Vcell : 0.7182698269306682 V
+###########
+I :10.6 A
+
+PEM Efficiency : 0.4599277881213669
+Power : 7.605365904374922 W
+Power-Stack : 174.92341580062322 W
+Power-Thermal : 124.95058419937678 W
+VStack : 16.502209037794643 V
+Vcell : 0.7174873494693323 V
+###########
+I :10.7 A
+
+PEM Efficiency : 0.45942936662601425
+Power : 7.668794987721429 W
+Power-Stack : 176.38228471759288 W
+Power-Thermal : 126.3207152824071 W
+VStack : 16.48432567454139 V
+Vcell : 0.7167098119365822 V
+###########
+I :10.8 A
+
+PEM Efficiency : 0.45893405321768665
+Power : 7.732120928611586 W
+Power-Stack : 177.83878135806648 W
+Power-Thermal : 127.69321864193356 W
+VStack : 16.466553829450596 V
+Vcell : 0.7159371230195912 V
+###########
+I :10.9 A
+
+PEM Efficiency : 0.45844179094456544
+Power : 7.795344213221391 W
+Power-Stack : 179.29291690409198 W
+Power-Thermal : 129.068083095908 W
+VStack : 16.44889145909101 V
+Vcell : 0.7151691938735221 V
+###########
+I :11.0 A
+
+PEM Efficiency : 0.45795252438025824
+Power : 7.858465318365233 W
+Power-Stack : 180.74470232240034 W
+Power-Thermal : 130.44529767759963 W
+VStack : 16.43133657476367 V
+Vcell : 0.714405938033203 V
+###########
+I :11.1 A
+
+PEM Efficiency : 0.4574661995696921
+Power : 7.921484711748789 W
+Power-Stack : 182.19414837022214 W
+Power-Thermal : 131.8248516297778 W
+VStack : 16.413887240560555 V
+Vcell : 0.7136472713287197 V
+###########
+I :11.2 A
+
+PEM Efficiency : 0.456982763977383
+Power : 7.984402852212836 W
+Power-Stack : 183.64126560089522 W
+Power-Thermal : 133.20673439910473 W
+VStack : 16.396541571508504 V
+Vcell : 0.7128931118047175 V
+###########
+I :11.3 A
+
+PEM Efficiency : 0.45650216643795805
+Power : 8.047220189968325 W
+Power-Stack : 185.08606436927147 W
+Power-Thermal : 134.59093563072852 W
+VStack : 16.379297731793937 V
+Vcell : 0.7121433796432146 V
+###########
+I :11.4 A
+
+PEM Efficiency : 0.4560243571088157
+Power : 8.10993716682318 W
+Power-Stack : 186.52855483693313 W
+Power-Thermal : 135.97744516306688 W
+VStack : 16.36215393306431 V
+Vcell : 0.7113979970897526 V
+###########
+I :11.5 A
+
+PEM Efficiency : 0.45554928742481043
+Power : 8.1725542164011 W
+Power-Stack : 187.9687469772253 W
+Power-Thermal : 137.36625302277469 W
+VStack : 16.3451084328022 V
+Vcell : 0.7106568883827044 V
+###########
+I :11.6 A
+
+PEM Efficiency : 0.4550769100548624
+Power : 8.23507176435279 W
+Power-Stack : 189.4066505801142 W
+Power-Thermal : 138.7573494198858 W
+VStack : 16.328159532768463 V
+Vcell : 0.7099199796855854 V
+###########
+I :11.7 A
+
+PEM Efficiency : 0.45460717886039226
+Power : 8.297490228559878 W
+Power-Stack : 190.8422752568772 W
+Power-Thermal : 140.15072474312274 W
+VStack : 16.311305577510876 V
+Vcell : 0.709187199022212 V
+###########
+I :11.8 A
+
+PEM Efficiency : 0.45414004885549164
+Power : 8.359810019331892 W
+Power-Stack : 192.27563044463352 W
+Power-Thermal : 141.5463695553665 W
+VStack : 16.29454495293504 V
+Vcell : 0.708458476214567 V
+###########
+I :11.9 A
+
+PEM Efficiency : 0.4536754761687415
+Power : 8.422031539596517 W
+Power-Stack : 193.7067254107199 W
+Power-Thermal : 142.9442745892801 W
+VStack : 16.277876084934444 V
+Vcell : 0.7077337428232368 V
+###########
+I :12.0 A
+
+PEM Efficiency : 0.4532134180065979
+Power : 8.484155185083514 W
+Power-Stack : 195.13556925692083 W
+Power-Thermal : 144.34443074307916 W
+VStack : 16.261297438076735 V
+Vcell : 0.7070129320902928 V
+###########
+I :12.1 A
+
+PEM Efficiency : 0.45275383261826935
+Power : 8.546181344502452 W
+Power-Stack : 196.5621709235564 W
+Power-Thermal : 145.74682907644356 W
+VStack : 16.244807514343506 V
+Vcell : 0.7062959788845002 V
+###########
+I :12.2 A
+
+PEM Efficiency : 0.45229667926201134
+Power : 8.6081103997146 W
+Power-Stack : 197.9865391934358 W
+Power-Thermal : 147.1514608065642 W
+VStack : 16.228404851920967 V
+Vcell : 0.7055828196487377 V
+###########
+I :12.3 A
+
+PEM Efficiency : 0.45184191817277225
+Power : 8.669942725899155 W
+Power-Stack : 199.40868269568057 W
+Power-Thermal : 148.55831730431944 W
+VStack : 16.21208802403907 V
+Vcell : 0.7048733923495247 V
+###########
+I :12.4 A
+
+PEM Efficiency : 0.4513895105311251
+Power : 8.731678691714084 W
+Power-Stack : 200.82860990942393 W
+Power-Thermal : 149.96739009057606 W
+VStack : 16.19585563785677 V
+Vcell : 0.7041676364285552 V
+###########
+I :12.5 A
+
+PEM Efficiency : 0.45093941843342356
+Power : 8.79331865945176 W
+Power-Stack : 202.24632916739048 W
+Power-Thermal : 151.37867083260952 W
+VStack : 16.179706333391238 V
+Vcell : 0.7034654927561408 V
+###########
+I :12.6 A
+
+PEM Efficiency : 0.450491604863127
+Power : 8.854862985189623 W
+Power-Stack : 203.66184865936134 W
+Power-Thermal : 152.79215134063864 W
+VStack : 16.163638782488995 V
+Vcell : 0.7027669035864781 V
+###########
+I :12.7 A
+
+PEM Efficiency : 0.4500460336632363
+Power : 8.916312018936038 W
+Power-Stack : 205.07517643552887 W
+Power-Thermal : 154.2078235644711 W
+VStack : 16.14765168783692 V
+Vcell : 0.7020718125146487 V
+###########
+I :12.8 A
+
+PEM Efficiency : 0.4496026695097947
+Power : 8.977666104771583 W
+Power-Stack : 206.4863204097464 W
+Power-Thermal : 155.6256795902536 W
+VStack : 16.131743782011437 V
+Vcell : 0.7013801644352798 V
+###########
+I :12.9 A
+
+PEM Efficiency : 0.4491614778863981
+Power : 9.038925580985875 W
+Power-Stack : 207.89528836267513 W
+Power-Thermal : 157.04571163732484 W
+VStack : 16.115913826563965 V
+Vcell : 0.700691905502781 V
+###########
+I :13.0 A
+
+PEM Efficiency : 0.44872242505967497
+Power : 9.10009078021021 W
+Power-Stack : 209.3020879448348 W
+Power-Thermal : 158.4679120551652 W
+VStack : 16.10016061114114 V
+Vcell : 0.700006983093093 V
+###########
+I :13.1 A
+
+PEM Efficiency : 0.44828547805568775
+Power : 9.161162029546034 W
+Power-Stack : 210.70672667955878 W
+Power-Thermal : 159.89227332044118 W
+VStack : 16.084482952638076 V
+Vcell : 0.6993253457668729 V
+###########
+I :13.2 A
+
+PEM Efficiency : 0.44785060463721715
+Power : 9.222139650689575 W
+Power-Stack : 212.10921196586023 W
+Power-Thermal : 161.3187880341397 W
+VStack : 16.068879694383355 V
+Vcell : 0.6986469432340588 V
+###########
+I :13.3 A
+
+PEM Efficiency : 0.4474177732818887
+Power : 9.283023960052628 W
+Power-Stack : 213.50955108121045 W
+Power-Thermal : 162.7474489187896 W
+VStack : 16.053349705354165 V
+Vcell : 0.6979717263197464 V
+###########
+I :13.4 A
+
+PEM Efficiency : 0.4469869531611036
+Power : 9.34381526887971 W
+Power-Stack : 214.90775118423335 W
+Power-Thermal : 164.1782488157667 W
+VStack : 16.037891879420396 V
+Vcell : 0.6972996469313216 V
+###########
+I :13.5 A
+
+PEM Efficiency : 0.44655811411974133
+Power : 9.404513883361753 W
+Power-Stack : 216.30381931732032 W
+Power-Thermal : 165.61118068267967 W
+VStack : 16.02250513461632 V
+Vcell : 0.6966306580267966 V
+###########
+I :13.6 A
+
+PEM Efficiency : 0.44613122665659743
+Power : 9.46512010474637 W
+Power-Stack : 217.69776240916653 W
+Power-Thermal : 167.04623759083344 W
+VStack : 16.007188412438715 V
+Vcell : 0.695964713584292 V
+###########
+I :13.7 A
+
+PEM Efficiency : 0.44570626190552604
+Power : 9.525634229444902 W
+Power-Stack : 219.08958727723277 W
+Power-Thermal : 168.48341272276724 W
+VStack : 15.991940677170273 V
+Vcell : 0.6953017685726206 V
+###########
+I :13.8 A
+
+PEM Efficiency : 0.4452831916172575
+Power : 9.58605654913632 W
+Power-Stack : 220.47930063013536 W
+Power-Thermal : 169.92269936986466 W
+VStack : 15.976760915227198 V
+Vcell : 0.6946417789229217 V
+###########
+I :13.9 A
+
+PEM Efficiency : 0.444861988141861
+Power : 9.646387350868114 W
+Power-Stack : 221.86690906996662 W
+Power-Thermal : 171.36409093003337 W
+VStack : 15.961648134529973 V
+Vcell : 0.6939847015013032 V
+###########
+I :14.0 A
+
+PEM Efficiency : 0.4444426244118254
+Power : 9.706626917154269 W
+Power-Stack : 223.25241909454817 W
+Power-Thermal : 172.80758090545183 W
+VStack : 15.946601363896297 V
+Vcell : 0.6933304940824477 V
+###########
+I :14.1 A
+
+PEM Efficiency : 0.44402507392573376
+Power : 9.76677552607044 W
+Power-Stack : 224.63583709962012 W
+Power-Thermal : 174.25316290037986 W
+VStack : 15.931619652455328 V
+Vcell : 0.6926791153241447 V
+###########
+I :14.2 A
+
+PEM Efficiency : 0.44360931073250287
+Power : 9.826833451346404 W
+Power-Stack : 226.0171693809673 W
+Power-Thermal : 175.70083061903267 W
+VStack : 15.916702069082204 V
+Vcell : 0.6920305247427045 V
+###########
+I :14.3 A
+
+PEM Efficiency : 0.44319530941616975
+Power : 9.886800962455915 W
+Power-Stack : 227.39642213648605 W
+Power-Thermal : 177.15057786351394 W
+VStack : 15.901847701852171 V
+Vcell : 0.6913846826892248 V
+###########
+I :14.4 A
+
+PEM Efficiency : 0.4427830450811979
+Power : 9.946678324704031 W
+Power-Stack : 228.7736014681927 W
+Power-Thermal : 178.6023985318073 W
+VStack : 15.887055657513383 V
+Vcell : 0.6907415503266688 V
+###########
+I :14.5 A
+
+PEM Efficiency : 0.4423724933382852
+Power : 10.006465799312013 W
+Power-Stack : 230.1487133841763 W
+Power-Thermal : 180.0562866158237 W
+VStack : 15.872325060977674 V
+Vcell : 0.690101089607725 V
+###########
+I :14.6 A
+
+PEM Efficiency : 0.4419636302906504
+Power : 10.066163643499854 W
+Power-Stack : 231.52176380049664 W
+Power-Thermal : 181.51223619950335 W
+VStack : 15.857655054828538 V
+Vcell : 0.6894632632534147 V
+###########
+I :14.7 A
+
+PEM Efficiency : 0.4415564325207822
+Power : 10.125772110566578 W
+Power-Stack : 232.89275854303128 W
+Power-Thermal : 182.9702414569687 W
+VStack : 15.843044798845666 V
+Vcell : 0.6888280347324203 V
+###########
+I :14.8 A
+
+PEM Efficiency : 0.4411508770776287
+Power : 10.185291449968293 W
+Power-Stack : 234.26170334927073 W
+Power-Thermal : 184.43029665072928 W
+VStack : 15.82849346954532 V
+Vcell : 0.6881953682411008 V
+###########
+I :14.9 A
+
+PEM Efficiency : 0.44074694146421356
+Power : 10.24472190739418 W
+Power-Stack : 235.62860387006612 W
+Power-Thermal : 185.89239612993387 W
+VStack : 15.814000259735982 V
+Vcell : 0.6875652286841731 V
+###########
+I :15.0 A
+
+PEM Efficiency : 0.4403446036256577
+Power : 10.30406372484039 W
+Power-Stack : 236.99346567132898 W
+Power-Thermal : 187.35653432867102 W
+VStack : 15.799564378088599 V
+Vcell : 0.686937581656026 V
+###########
+I :15.1 A
+
+PEM Efficiency : 0.4399438419375946
+Power : 10.363317140681978 W
+Power-Stack : 238.3562942356855 W
+Power-Thermal : 188.8227057643145 W
+VStack : 15.785185048720894 V
+Vcell : 0.6863123934226476 V
+###########
+I :15.2 A
+
+PEM Efficiency : 0.43954463519496206
+Power : 10.42248238974294 W
+Power-Stack : 239.71709496408764 W
+Power-Thermal : 190.29090503591235 W
+VStack : 15.770861510795239 V
+Vcell : 0.6856896309041408 V
+###########
+I :15.3 A
+
+PEM Efficiency : 0.43914696260115443
+Power : 10.481559703364356 W
+Power-Stack : 241.07587317738017 W
+Power-Thermal : 191.76112682261981 W
+VStack : 15.756593018129424 V
+Vcell : 0.685069261657801 V
+###########
+I :15.4 A
+
+PEM Efficiency : 0.4387508037575254
+Power : 10.54054930947079 W
+Power-Stack : 242.43263411782817 W
+Power-Thermal : 193.2333658821718 W
+VStack : 15.742378838820013 V
+Vcell : 0.6844512538617397 V
+###########
+I :15.5 A
+
+PEM Efficiency : 0.4383561386532225
+Power : 10.59945143263492 W
+Power-Stack : 243.78738295060316 W
+Power-Thermal : 194.7076170493968 W
+VStack : 15.728218254877625 V
+Vcell : 0.6838355762990271 V
+###########
+I :15.6 A
+
+PEM Efficiency : 0.4379629476553464
+Power : 10.65826629414051 W
+Power-Stack : 245.14012476523175 W
+Power-Thermal : 196.1838752347682 W
+VStack : 15.71411056187383 V
+Vcell : 0.6832221983423404 V
+###########
+I :15.7 A
+
+PEM Efficiency : 0.43757121149941824
+Power : 10.716994112043752 W
+Power-Stack : 246.49086457700628 W
+Power-Thermal : 197.66213542299369 W
+VStack : 15.700055068599127 V
+Vcell : 0.6826110899390925 V
+###########
+I :15.8 A
+
+PEM Efficiency : 0.4371809112801454
+Power : 10.775635101233025 W
+Power-Stack : 247.83960732835956 W
+Power-Thermal : 199.14239267164044 W
+VStack : 15.686051096731617 V
+Vcell : 0.6820022215970268 V
+###########
+I :15.9 A
+
+PEM Efficiency : 0.43679202844247544
+Power : 10.83418947348716 W
+Power-Stack : 249.1863578902047 W
+Power-Thermal : 200.62464210979527 W
+VStack : 15.67209798051602 V
+Vcell : 0.6813955643702617 V
+###########
+I :16.0 A
+
+PEM Efficiency : 0.43640454477292495
+Power : 10.892657437532206 W
+Power-Stack : 250.53112106324073 W
+Power-Thermal : 202.10887893675925 W
+VStack : 15.658195066452546 V
+Vcell : 0.6807910898457629 V
+###########
+I :16.1 A
+
+PEM Efficiency : 0.4360184423911754
+Power : 10.951039199096762 W
+Power-Stack : 251.87390157922553 W
+Power-Thermal : 203.5950984207745 W
+VStack : 15.644341712995374 V
+Vcell : 0.6801887701302336 V
+###########
+I :16.2 A
+
+PEM Efficiency : 0.4356337037419256
+Power : 11.009334960965944 W
+Power-Stack : 253.21470410221673 W
+Power-Thermal : 205.08329589778324 W
+VStack : 15.630537290260293 V
+Vcell : 0.679588577837404 V
+###########
+I :16.3 A
+
+PEM Efficiency : 0.4352503115869912
+Power : 11.067544923034013 W
+Power-Stack : 254.55353322978232 W
+Power-Thermal : 206.5734667702177 W
+VStack : 15.616781179741245 V
+Vcell : 0.6789904860757063 V
+###########
+I :16.4 A
+
+PEM Efficiency : 0.4348682489976418
+Power : 11.12566928235567 W
+Power-Stack : 255.89039349418042 W
+Power-Thermal : 208.06560650581955 W
+VStack : 15.603072774035391 V
+Vcell : 0.6783944684363213 V
+###########
+I :16.5 A
+
+PEM Efficiency : 0.4344874993471684
+Power : 11.183708233196114 W
+Power-Stack : 257.2252893635106 W
+Power-Thermal : 209.55971063648937 W
+VStack : 15.589411476576402 V
+Vcell : 0.6778004989815827 V
+###########
+I :16.6 A
+
+PEM Efficiency : 0.43410804630367195
+Power : 11.241661967079889 W
+Power-Stack : 258.55822524283747 W
+Power-Thermal : 211.05577475716257 W
+VStack : 15.575796701375749 V
+Vcell : 0.6772085522337282 V
+###########
+I :16.7 A
+
+PEM Efficiency : 0.4337298738230656
+Power : 11.299530672838506 W
+Power-Stack : 259.8892054752856 W
+Power-Thermal : 212.55379452471436 W
+VStack : 15.562227872771594 V
+Vcell : 0.6766186031639824 V
+###########
+I :16.8 A
+
+PEM Efficiency : 0.43335296614228275
+Power : 11.357314536656949 W
+Power-Stack : 261.2182343431098 W
+Power-Thermal : 214.0537656568902 W
+VStack : 15.548704425185107 V
+Vcell : 0.6760306271819612 V
+###########
+I :16.9 A
+
+PEM Efficiency : 0.43297730777268395
+Power : 11.415013742119038 W
+Power-Stack : 262.54531606873786 W
+Power-Thermal : 215.55568393126205 W
+VStack : 15.5352258028839 V
+Vcell : 0.675444600125387 V
+###########
+I :17.0 A
+
+PEM Efficiency : 0.4326028834936558
+Power : 11.47262847025175 W
+Power-Stack : 263.87045481579025 W
+Power-Thermal : 217.05954518420972 W
+VStack : 15.521791459752368 V
+Vcell : 0.674860498250103 V
+###########
+I :17.1 A
+
+PEM Efficiency : 0.432229678346394
+Power : 11.530158899568406 W
+Power-Stack : 265.19365469007334 W
+Power-Thermal : 218.56534530992667 W
+VStack : 15.508400859068615 V
+Vcell : 0.6742782982203746 V
+###########
+I :17.2 A
+
+PEM Efficiency : 0.4318576776278674
+Power : 11.587605206110938 W
+Power-Stack : 266.5149197405516 W
+Power-Thermal : 220.07308025944837 W
+VStack : 15.495053473287884 V
+Vcell : 0.6736979770994732 V
+###########
+I :17.3 A
+
+PEM Efficiency : 0.43148686688495225
+Power : 11.644967563491091 W
+Power-Stack : 267.8342539602951 W
+Power-Thermal : 221.58274603970492 W
+VStack : 15.481748783832085 V
+Vcell : 0.6731195123405255 V
+###########
+I :17.4 A
+
+PEM Efficiency : 0.43111723190873397
+Power : 11.702246142930674 W
+Power-Stack : 269.1516612874055 W
+Power-Thermal : 223.09433871259444 W
+VStack : 15.468486280885376 V
+Vcell : 0.672542881777625 V
+###########
+I :17.5 A
+
+PEM Efficiency : 0.43074875872897106
+Power : 11.759441113300912 W
+Power-Stack : 270.46714560592096 W
+Power-Thermal : 224.607854394079 W
+VStack : 15.455265463195484 V
+Vcell : 0.671968063617195 V
+###########
+I :17.6 A
+
+PEM Efficiency : 0.4303814336087137
+Power : 11.816552641160845 W
+Power-Stack : 271.7807107466994 W
+Power-Thermal : 226.12328925330058 W
+VStack : 15.442085837880649 V
+Vcell : 0.6713950364295934 V
+###########
+I :17.7 A
+
+PEM Efficiency : 0.4300152430390719
+Power : 11.873580890794852 W
+Power-Stack : 273.0923604882816 W
+Power-Thermal : 227.64063951171838 W
+VStack : 15.428946920241899 V
+Vcell : 0.6708237791409521 V
+###########
+I :17.8 A
+
+PEM Efficiency : 0.42965017373413095
+Power : 11.93052602424935 W
+Power-Stack : 274.40209855773503 W
+Power-Thermal : 229.15990144226495 W
+VStack : 15.41584823358062 V
+Vcell : 0.6702542710252444 V
+###########
+I :17.9 A
+
+PEM Efficiency : 0.4292862126260064
+Power : 11.987388201368603 W
+Power-Stack : 275.70992863147785 W
+Power-Thermal : 230.68107136852208 W
+VStack : 15.402789309021111 V
+Vcell : 0.66968649169657 V
+###########
+I :18.0 A
+
+PEM Efficiency : 0.42892334686003464
+Power : 12.044167579829773 W
+Power-Stack : 277.0158543360848 W
+Power-Thermal : 232.2041456639152 W
+VStack : 15.389769685338043 V
+Vcell : 0.669120421101654 V
+###########
+I :18.1 A
+
+PEM Efficiency : 0.4285615637900958
+Power : 12.100864315177146 W
+Power-Stack : 278.31987924907435 W
+Power-Thermal : 233.72912075092566 W
+VStack : 15.376788908788638 V
+Vcell : 0.6685560395125495 V
+###########
+I :18.2 A
+
+PEM Efficiency : 0.42820085097406324
+Power : 12.157478560855605 W
+Power-Stack : 279.6220068996789 W
+Power-Thermal : 235.25599310032104 W
+VStack : 15.363846532949392 V
+Vcell : 0.6679933275195388 V
+###########
+I :18.3 A
+
+PEM Efficiency : 0.42784119616937627
+Power : 12.214010468243355 W
+Power-Stack : 280.9222407695972 W
+Power-Thermal : 236.78475923040284 W
+VStack : 15.35094211855722 V
+Vcell : 0.667432266024227 V
+###########
+I :18.4 A
+
+PEM Efficiency : 0.4274825873287316
+Power : 12.270460186683911 W
+Power-Stack : 282.2205842937299 W
+Power-Thermal : 238.31541570627 W
+VStack : 15.33807523335489 V
+Vcell : 0.6668728362328213 V
+###########
+I :18.5 A
+
+PEM Efficiency : 0.427125012595891
+Power : 12.326827863517414 W
+Power-Stack : 283.5170408609005 W
+Power-Thermal : 239.84795913909946 W
+VStack : 15.32524545194057 V
+Vcell : 0.66631501964959 V
+###########
+I :18.6 A
+
+PEM Efficiency : 0.4267684603015996
+Power : 12.383113644111214 W
+Power-Stack : 284.8116138145579 W
+Power-Thermal : 241.3823861854421 W
+VStack : 15.312452355621392 V
+Vcell : 0.6657587980704953 V
+###########
+I :18.7 A
+
+PEM Efficiency : 0.4264129189596118
+Power : 12.439317671889796 W
+Power-Stack : 286.1043064534653 W
+Power-Thermal : 242.91869354653466 W
+VStack : 15.299695532270873 V
+Vcell : 0.6652041535769945 V
+###########
+I :18.8 A
+
+PEM Efficiency : 0.42605837726282403
+Power : 12.495440088364106 W
+Power-Stack : 287.39512203237445 W
+Power-Thermal : 244.4568779676256 W
+VStack : 15.286974576190127 V
+Vcell : 0.6646510685300056 V
+###########
+I :18.9 A
+
+PEM Efficiency : 0.4257048240795055
+Power : 12.55148103316014 W
+Power-Stack : 288.68406376268325 W
+Power-Thermal : 245.99693623731673 W
+VStack : 15.274289087972658 V
+Vcell : 0.6640995255640286 V
+###########
+I :19.0 A
+
+PEM Efficiency : 0.4253522484496299
+Power : 12.60744064404703 W
+Power-Stack : 289.9711348130817 W
+Power-Thermal : 247.5388651869183 W
+VStack : 15.26163867437272 V
+Vcell : 0.6635495075814226 V
+###########
+I :19.1 A
+
+PEM Efficiency : 0.4250006395813012
+Power : 12.66331905696445 W
+Power-Stack : 291.25633831018234 W
+Power-Thermal : 249.08266168981763 W
+VStack : 15.249022948177087 V
+Vcell : 0.6630009977468299 V
+###########
+I :19.2 A
+
+PEM Efficiency : 0.424649986847271
+Power : 12.71911640604946 W
+Power-Stack : 292.5396773391376 W
+Power-Thermal : 250.62832266086235 W
+VStack : 15.236441528080084 V
+Vcell : 0.6624539794817428 V
+###########
+I :19.3 A
+
+PEM Efficiency : 0.4243002797815458
+Power : 12.77483282366278 W
+Power-Stack : 293.821154944244 W
+Power-Thermal : 252.17584505575604 W
+VStack : 15.223894038561863 V
+Vcell : 0.6619084364592114 V
+###########
+I :19.4 A
+
+PEM Efficiency : 0.4239515080760811
+Power : 12.83046844041452 W
+Power-Stack : 295.100774129534 W
+Power-Thermal : 253.72522587046598 W
+VStack : 15.211380109769793 V
+Vcell : 0.6613643525986866 V
+###########
+I :19.5 A
+
+PEM Efficiency : 0.4236036615775592
+Power : 12.886023385189352 W
+Power-Stack : 296.3785378593551 W
+Power-Thermal : 255.2764621406449 W
+VStack : 15.198899377402824 V
+Vcell : 0.6608217120609924 V
+###########
+I :19.6 A
+
+PEM Efficiency : 0.4232567302842474
+Power : 12.94149778517115 W
+Power-Stack : 297.65444905893645 W
+Power-Thermal : 256.8295509410636 W
+VStack : 15.186451482598796 V
+Vcell : 0.6602804992434259 V
+###########
+I :19.7 A
+
+PEM Efficiency : 0.4229107043429368
+Power : 12.996891765867133 W
+Power-Stack : 298.92851061494406 W
+Power-Thermal : 258.38448938505593 W
+VStack : 15.174036071824572 V
+Vcell : 0.6597406987749814 V
+###########
+I :19.8 A
+
+PEM Efficiency : 0.4225655740459567
+Power : 13.052205451131512 W
+Power-Stack : 300.20072537602476 W
+Power-Thermal : 259.94127462397523 W
+VStack : 15.161652796768928 V
+Vcell : 0.6592022955116925 V
+###########
+I :19.9 A
+
+PEM Efficiency : 0.42222132982826316
+Power : 13.107438963188601 W
+Power-Stack : 301.47109615333784 W
+Power-Thermal : 261.4999038466621 W
+VStack : 15.149301314238082 V
+Vcell : 0.6586652745320906 V
+###########
+I :20.0 A
+
+PEM Efficiency : 0.4218779622646
+Power : 13.162592422655521 W
+Power-Stack : 302.739625721077 W
+Power-Thermal : 263.060374278923 W
+VStack : 15.13698128605385 V
+Vcell : 0.6581296211327761 V
+###########
+I :20.1 A
+
+PEM Efficiency : 0.4215354620667297
+Power : 13.217665948564377 W
+Power-Stack : 304.0063168169807 W
+Power-Thermal : 264.6226831830194 W
+VStack : 15.124692378954261 V
+Vcell : 0.6575953208240983 V
+###########
+I :20.2 A
+
+PEM Efficiency : 0.4211938200807317
+Power : 13.272659658384017 W
+Power-Stack : 305.27117214283237 W
+Power-Thermal : 266.18682785716754 W
+VStack : 15.112434264496654 V
+Vcell : 0.6570623593259415 V
+###########
+I :20.3 A
+
+PEM Efficiency : 0.4208530272843674
+Power : 13.327573668041346 W
+Power-Stack : 306.53419436495096 W
+Power-Thermal : 267.752805635049 W
+VStack : 15.100206618963101 V
+Vcell : 0.6565307225636131 V
+###########
+I :20.4 A
+
+PEM Efficiency : 0.4205130747845084
+Power : 13.382408091942196 W
+Power-Stack : 307.7953861146705 W
+Power-Thermal : 269.32061388532946 W
+VStack : 15.088009123268161 V
+Vcell : 0.6560003966638331 V
+###########
+I :20.5 A
+
+PEM Efficiency : 0.4201739538146269
+Power : 13.43716304299177 W
+Power-Stack : 309.0547499888107 W
+Power-Thermal : 270.89025001118927 W
+VStack : 15.075841462868816 V
+Vcell : 0.6554713679508181 V
+###########
+I :20.6 A
+
+PEM Efficiency : 0.41983565573234705
+Power : 13.491838632614705 W
+Power-Stack : 310.3122885501382 W
+Power-Thermal : 272.4617114498618 W
+VStack : 15.063703327676611 V
+Vcell : 0.6549436229424613 V
+###########
+I :20.7 A
+
+PEM Efficiency : 0.4194981720170539
+Power : 13.546434970774705 W
+Power-Stack : 311.5680043278182 W
+Power-Thermal : 274.03499567218176 W
+VStack : 15.051594411971895 V
+Vcell : 0.6544171483466041 V
+###########
+I :20.8 A
+
+PEM Efficiency : 0.4191614942675601
+Power : 13.600952165993792 W
+Power-Stack : 312.82189981785723 W
+Power-Thermal : 275.6101001821428 W
+VStack : 15.039514414320058 V
+Vcell : 0.6538919310573938 V
+###########
+I :20.9 A
+
+PEM Efficiency : 0.41882561419982756
+Power : 13.655390325371176 W
+Power-Stack : 314.073977483537 W
+Power-Thermal : 277.1870225164629 W
+VStack : 15.027463037489813 V
+Vcell : 0.653367958151731 V
+###########
+I :21.0 A
+
+PEM Efficiency : 0.4184905236447424
+Power : 13.70974955460176 W
+Power-Stack : 315.3242397558405 W
+Power-Thermal : 278.7657602441595 W
+VStack : 15.015439988373357 V
+Vcell : 0.6528452168857981 V
+###########
+I :21.1 A
+
+PEM Efficiency : 0.4181562145459429
+Power : 13.764029957994259 W
+Power-Stack : 316.57268903386796 W
+Power-Thermal : 280.3463109661321 W
+VStack : 15.003444977908432 V
+Vcell : 0.652323694691671 V
+###########
+I :21.2 A
+
+PEM Efficiency : 0.4178226789576976
+Power : 13.818231638488976 W
+Power-Stack : 317.81932768524644 W
+Power-Thermal : 281.9286723147535 W
+VStack : 14.991477721002191 V
+Vcell : 0.6518033791740083 V
+###########
+I :21.3 A
+
+PEM Efficiency : 0.41748990904283306
+Power : 13.87235469767526 W
+Power-Stack : 319.06415804653096 W
+Power-Thermal : 283.51284195346904 W
+VStack : 14.979537936456852 V
+Vcell : 0.6512842581068197 V
+###########
+I :21.4 A
+
+PEM Efficiency : 0.4171578970707088
+Power : 13.926399235808544 W
+Power-Stack : 320.30718242359654 W
+Power-Thermal : 285.09881757640346 W
+VStack : 14.967625346897034 V
+Vcell : 0.6507663194303058 V
+###########
+I :21.5 A
+
+PEM Efficiency : 0.41682663541524045
+Power : 13.980365351827164 W
+Power-Stack : 321.5484030920248 W
+Power-Thermal : 286.68659690797523 W
+VStack : 14.955739678698826 V
+Vcell : 0.6502495512477751 V
+###########
+I :21.6 A
+
+PEM Efficiency : 0.41649611655296576
+Power : 14.034253143368737 W
+Power-Stack : 322.78782229748094 W
+Power-Thermal : 288.2761777025191 W
+VStack : 14.943880661920414 V
+Vcell : 0.6497339418226267 V
+###########
+I :21.7 A
+
+PEM Efficiency : 0.4161663330611579
+Power : 14.088062706786317 W
+Power-Stack : 324.0254422560853 W
+Power-Thermal : 289.86755774391463 W
+VStack : 14.932048030234347 V
+Vcell : 0.6492194795754064 V
+###########
+I :21.8 A
+
+PEM Efficiency : 0.4158372776159783
+Power : 14.14179413716419 W
+Power-Stack : 325.26126515477637 W
+Power-Thermal : 291.4607348452236 W
+VStack : 14.920241520861302 V
+Vcell : 0.6487061530809262 V
+###########
+I :21.9 A
+
+PEM Efficiency : 0.4155089429906736
+Power : 14.195447528333373 W
+Power-Stack : 326.49529315166757 W
+Power-Thermal : 293.05570684833236 W
+VStack : 14.90846087450537 V
+Vcell : 0.6481939510654509 V
+###########
+I :22.0 A
+
+PEM Efficiency : 0.41518132205381253
+Power : 14.249022972886847 W
+Power-Stack : 327.72752837639746 W
+Power-Thermal : 294.65247162360254 W
+VStack : 14.896705835290794 V
+Vcell : 0.6476828624039476 V
+###########
+I :22.1 A
+
+PEM Efficiency : 0.4148544077675615
+Power : 14.30252056219445 W
+Power-Stack : 328.95797293047235 W
+Power-Thermal : 296.25102706952765 W
+VStack : 14.884976150700107 V
+Vcell : 0.6471728761173959 V
+###########
+I :22.2 A
+
+PEM Efficiency : 0.41452819318599954
+Power : 14.355940386417535 W
+Power-Stack : 330.1866288876033 W
+Power-Thermal : 297.8513711123967 W
+VStack : 14.873271571513662 V
+Vcell : 0.6466639813701592 V
+###########
+I :22.3 A
+
+PEM Efficiency : 0.41420267145347045
+Power : 14.409282534523333 W
+Power-Stack : 331.4134982940367 W
+Power-Thermal : 299.4535017059634 W
+VStack : 14.861591851750521 V
+Vcell : 0.646156167467414 V
+###########
+I :22.4 A
+
+PEM Efficiency : 0.4138778358029715
+Power : 14.462547094299035 W
+Power-Stack : 332.6385831688778 W
+Power-Thermal : 301.0574168311221 W
+VStack : 14.849936748610618 V
+Vcell : 0.6456494238526356 V
+###########
+I :22.5 A
+
+PEM Efficiency : 0.4135536795545765
+Power : 14.515734152365637 W
+Power-Stack : 333.86188550440966 W
+Power-Thermal : 302.6631144955903 W
+VStack : 14.838306022418207 V
+Vcell : 0.6451437401051394 V
+###########
+I :22.6 A
+
+PEM Efficiency : 0.41323019611389517
+Power : 14.568843794191489 W
+Power-Stack : 335.08340726640427 W
+Power-Thermal : 304.2705927335958 W
+VStack : 14.826699436566559 V
+Vcell : 0.6446391059376765 V
+###########
+I :22.7 A
+
+PEM Efficiency : 0.41290737897056445
+Power : 14.62187610410563 W
+Power-Stack : 336.30315039442945 W
+Power-Thermal : 305.8798496055705 W
+VStack : 14.815116757463855 V
+Vcell : 0.6441355111940806 V
+###########
+I :22.8 A
+
+PEM Efficiency : 0.412585221696774
+Power : 14.674831165310858 W
+Power-Stack : 337.5211168021497 W
+Power-Thermal : 307.4908831978503 W
+VStack : 14.80355775448025 V
+Vcell : 0.6436329458469674 V
+###########
+I :22.9 A
+
+PEM Efficiency : 0.41226371794582184
+Power : 14.727709059896538 W
+Power-Stack : 338.73730837762037 W
+Power-Thermal : 309.10369162237953 W
+VStack : 14.792022199896088 V
+Vcell : 0.6431313999954821 V
+###########
+I :23.0 A
+
+PEM Efficiency : 0.411942861450703
+Power : 14.780509868851222 W
+Power-Stack : 339.9517269835781 W
+Power-Thermal : 310.71827301642185 W
+VStack : 14.780509868851222 V
+Vcell : 0.6426308638630966 V
+###########
+I :23.1 A
+
+PEM Efficiency : 0.4116226460227271
+Power : 14.833233672074993 W
+Power-Stack : 341.1643744577248 W
+Power-Thermal : 312.3346255422752 W
+VStack : 14.769020539295447 V
+Vcell : 0.6421313277954542 V
+###########
+I :23.2 A
+
+PEM Efficiency : 0.41130306555016555
+Power : 14.885880548391592 W
+Power-Stack : 342.37525261300664 W
+Power-Thermal : 313.9527473869934 W
+VStack : 14.75755399193994 V
+Vcell : 0.6416327822582583 V
+###########
+I :23.3 A
+
+PEM Efficiency : 0.4109841139969279
+Power : 14.938450575560339 W
+Power-Stack : 343.58436323788777 W
+Power-Thermal : 315.5726367621122 W
+VStack : 14.746110010209776 V
+Vcell : 0.6411352178352077 V
+###########
+I :23.4 A
+
+PEM Efficiency : 0.41066578540126636
+Power : 14.990943830287826 W
+Power-Stack : 344.79170809661997 W
+Power-Thermal : 317.19429190337996 W
+VStack : 14.734688380197436 V
+Vcell : 0.6406386252259755 V
+###########
+I :23.5 A
+
+PEM Efficiency : 0.4103480738745058
+Power : 15.043360388239385 W
+Power-Stack : 345.9972889295059 W
+Power-Thermal : 318.8177110704941 W
+VStack : 14.72328889061727 V
+Vcell : 0.6401429952442291 V
+###########
+I :23.6 A
+
+PEM Efficiency : 0.410030973599804
+Power : 15.095700324050386 W
+Power-Stack : 347.20110745315884 W
+Power-Thermal : 320.44289254684116 W
+VStack : 14.711911332760968 V
+Vcell : 0.6396483188156943 V
+###########
+I :23.7 A
+
+PEM Efficiency : 0.40971447883093354
+Power : 15.147963711337272 W
+Power-Stack : 348.40316536075727 W
+Power-Thermal : 322.0698346392427 W
+VStack : 14.700555500453895 V
+Vcell : 0.6391545869762563 V
+###########
+I :23.8 A
+
+PEM Efficiency : 0.4093985838910918
+Power : 15.200150622708456 W
+Power-Stack : 349.6034643222945 W
+Power-Thermal : 323.6985356777055 W
+VStack : 14.689221190012374 V
+Vcell : 0.6386617908701032 V
+###########
+I :23.9 A
+
+PEM Efficiency : 0.409083283171735
+Power : 15.252261129774965 W
+Power-Stack : 350.8020059848242 W
+Power-Thermal : 325.32899401517574 W
+VStack : 14.67790820020185 V
+Vcell : 0.6381699217479065 V
+###########
+I :24.0 A
+
+PEM Efficiency : 0.40876857113143544
+Power : 15.304295303160945 W
+Power-Stack : 351.9987919727017 W
+Power-Thermal : 326.9612080272983 W
+VStack : 14.666616332195904 V
+Vcell : 0.6376789709650393 V
+###########
+I :24.1 A
+
+PEM Efficiency : 0.40845444229476363
+Power : 15.356253212513936 W
+Power-Stack : 353.19382388782054 W
+Power-Thermal : 328.5951761121795 W
+VStack : 14.655345389536121 V
+Vcell : 0.6371889299798313 V
+###########
+I :24.2 A
+
+PEM Efficiency : 0.40814089125119185
+Power : 15.408134926514995 W
+Power-Stack : 354.38710330984486 W
+Power-Thermal : 330.2308966901551 W
+VStack : 14.644095178092764 V
+Vcell : 0.6366997903518593 V
+###########
+I :24.3 A
+
+PEM Efficiency : 0.4078279126540203
+Power : 15.459940512888602 W
+Power-Stack : 355.57863179643783 W
+Power-Thermal : 331.8683682035621 W
+VStack : 14.63286550602625 V
+Vcell : 0.6362115437402717 V
+###########
+I :24.4 A
+
+PEM Efficiency : 0.40751550121932634
+Power : 15.51167003841244 W
+Power-Stack : 356.7684108834861 W
+Power-Thermal : 333.5075891165138 W
+VStack : 14.621656183749431 V
+Vcell : 0.6357241819021492 V
+###########
+I :24.5 A
+
+PEM Efficiency : 0.40720365172493306
+Power : 15.563323568926942 W
+Power-Stack : 357.9564420853197 W
+Power-Thermal : 335.14855791468034 W
+VStack : 14.610467023890598 V
+Vcell : 0.6352376966908956 V
+###########
+I :24.6 A
+
+PEM Efficiency : 0.4068923590093994
+Power : 15.614901169344714 W
+Power-Stack : 359.14272689492844 W
+Power-Thermal : 336.79127310507164 W
+VStack : 14.59929784125725 V
+Vcell : 0.6347520800546631 V
+###########
+I :24.7 A
+
+PEM Efficiency : 0.40658161797103126
+Power : 15.666402903659776 W
+Power-Stack : 360.32726678417487 W
+Power-Thermal : 338.4357332158251 W
+VStack : 14.588148452800603 V
+Vcell : 0.6342673240348088 V
+###########
+I :24.8 A
+
+PEM Efficiency : 0.40627142356691054
+Power : 15.717828834956638 W
+Power-Stack : 361.5100632040027 W
+Power-Thermal : 340.0819367959973 W
+VStack : 14.577018677580753 V
+Vcell : 0.6337834207643805 V
+###########
+I :24.9 A
+
+PEM Efficiency : 0.40596177081194545
+Power : 15.769179025419207 W
+Power-Stack : 362.69111758464174 W
+Power-Thermal : 341.72988241535813 W
+VStack : 14.565908336732603 V
+Vcell : 0.6333003624666349 V
+###########
+I :25.0 A
+
+PEM Efficiency : 0.4056526547779378
+Power : 15.820453536339576 W
+Power-Stack : 363.8704313358102 W
+Power-Thermal : 343.3795686641897 W
+VStack : 14.554817253432411 V
+Vcell : 0.6328181414535831 V
+###########
+I :25.1 A
+
+PEM Efficiency : 0.4053440705926697
+Power : 15.871652428126575 W
+Power-Stack : 365.0480058469112 W
+Power-Thermal : 345.03099415308884 W
+VStack : 14.543745252864987 V
+Vcell : 0.6323367501245647 V
+###########
+I :25.2 A
+
+PEM Efficiency : 0.4050360134390084
+Power : 15.9227757603143 W
+Power-Stack : 366.2238424872289 W
+Power-Thermal : 346.6841575127711 W
+VStack : 14.532692162191623 V
+Vcell : 0.6318561809648532 V
+###########
+I :25.3 A
+
+PEM Efficiency : 0.4047284785540274
+Power : 15.973823591570353 W
+Power-Stack : 367.39794260611814 W
+Power-Thermal : 348.33905739388183 W
+VStack : 14.521657810518503 V
+Vcell : 0.6313764265442827 V
+###########
+I :25.4 A
+
+PEM Efficiency : 0.4044214612281455
+Power : 16.024795979704038 W
+Power-Stack : 368.5703075331929 W
+Power-Thermal : 349.9956924668071 W
+VStack : 14.510642028865862 V
+Vcell : 0.630897479515907 V
+###########
+I :25.5 A
+
+PEM Efficiency : 0.404114956804283
+Power : 16.07569298167438 W
+Power-Stack : 369.74093857851074 W
+Power-Thermal : 351.65406142148925 W
+VStack : 14.499644650137675 V
+Vcell : 0.6304193326146815 V
+###########
+I :25.6 A
+
+PEM Efficiency : 0.4038089606770329
+Power : 16.12651465359799 W
+Power-Stack : 370.9098370327538 W
+Power-Thermal : 353.31416296724626 W
+VStack : 14.488665509091943 V
+Vcell : 0.6299419786561714 V
+###########
+I :25.7 A
+
+PEM Efficiency : 0.4035034682918492
+Power : 16.17726105075682 W
+Power-Stack : 372.0770041674068 W
+Power-Thermal : 354.9759958325931 W
+VStack : 14.47770444231155 V
+Vcell : 0.6294654105352848 V
+###########
+I :25.8 A
+
+PEM Efficiency : 0.4031984751442495
+Power : 16.227932227605756 W
+Power-Stack : 373.24244123493236 W
+Power-Thermal : 356.63955876506765 W
+VStack : 14.466761288175672 V
+Vcell : 0.6289896212250292 V
+###########
+I :25.9 A
+
+PEM Efficiency : 0.402893976779034
+Power : 16.27852823778009 W
+Power-Stack : 374.4061494689421 W
+Power-Thermal : 358.30485053105787 W
+VStack : 14.455835886831741 V
+Vcell : 0.6285146037752931 V
+###########
+I :26.0 A
+
+PEM Efficiency : 0.4025899687895195
+Power : 16.329049134102913 W
+Power-Stack : 375.568130084367 W
+Power-Thermal : 359.971869915633 W
+VStack : 14.44492808016796 V
+Vcell : 0.6280403513116505 V
+###########
+I :26.1 A
+
+PEM Efficiency : 0.40228644681678555
+Power : 16.37949496859224 W
+Power-Stack : 376.72838427762156 W
+Power-Thermal : 361.64061572237847 W
+VStack : 14.434037711786265 V
+Vcell : 0.6275668570341855 V
+###########
+I :26.2 A
+
+PEM Efficiency : 0.4019834065489382
+Power : 16.429865792468203 W
+Power-Stack : 377.8869132267687 W
+Power-Thermal : 363.3110867732313 W
+VStack : 14.423164626975904 V
+Vcell : 0.6270941142163436 V
+###########
+I :26.3 A
+
+PEM Efficiency : 0.4016808437203848
+Power : 16.48016165615995 W
+Power-Stack : 379.04371809167884 W
+Power-Thermal : 364.98328190832115 W
+VStack : 14.41230867268741 V
+Vcell : 0.6266221162038004 V
+###########
+I :26.4 A
+
+PEM Efficiency : 0.4013787541111237
+Power : 16.53038260931252 W
+Power-Stack : 380.198800014188 W
+Power-Thermal : 366.657199985812 W
+VStack : 14.401469697507121 V
+Vcell : 0.6261508564133531 V
+###########
+I :26.5 A
+
+PEM Efficiency : 0.40107713354604674
+Power : 16.58052870079357 W
+Power-Stack : 381.35216011825213 W
+Power-Thermal : 368.33283988174776 W
+VStack : 14.390647551632158 V
+Vcell : 0.625680328331833 V
+###########
+I :26.6 A
+
+PEM Efficiency : 0.4007759778942548
+Power : 16.630599978699998 W
+Power-Stack : 382.50379951009995 W
+Power-Thermal : 370.0102004899 W
+VStack : 14.379842086845864 V
+Vcell : 0.6252105255150375 V
+###########
+I :26.7 A
+
+PEM Efficiency : 0.40047528306838626
+Power : 16.680596490364422 W
+Power-Stack : 383.6537192783817 W
+Power-Thermal : 371.6892807216182 W
+VStack : 14.369053156493699 V
+Vcell : 0.6247414415866825 V
+###########
+I :26.8 A
+
+PEM Efficiency : 0.40017504502395673
+Power : 16.730518282361587 W
+Power-Stack : 384.8019204943165 W
+Power-Thermal : 373.3700795056836 W
+VStack : 14.358280615459568 V
+Vcell : 0.6242730702373726 V
+###########
+I :26.9 A
+
+PEM Efficiency : 0.3998752597587126
+Power : 16.780365400514615 W
+Power-Stack : 385.94840421183613 W
+Power-Thermal : 375.05259578816384 W
+VStack : 14.347524320142607 V
+Vcell : 0.6238054052235916 V
+###########
+I :27.0 A
+
+PEM Efficiency : 0.39957592331199493
+Power : 16.830137889901224 W
+Power-Stack : 387.09317146772815 W
+Power-Thermal : 376.7368285322718 W
+VStack : 14.336784128434378 V
+Vcell : 0.623338440366712 V
+###########
+I :27.1 A
+
+PEM Efficiency : 0.3992770317641154
+Power : 16.87983579485974 W
+Power-Stack : 388.236223281774 W
+Power-Thermal : 378.422776718226 W
+VStack : 14.326059899696459 V
+Vcell : 0.62287216955202 V
+###########
+I :27.2 A
+
+PEM Efficiency : 0.3989785812357435
+Power : 16.929459158995066 W
+Power-Stack : 389.3775606568865 W
+Power-Thermal : 380.11043934311346 W
+VStack : 14.315351494738476 V
+Vcell : 0.6224065867277598 V
+###########
+I :27.3 A
+
+PEM Efficiency : 0.3986805678873052
+Power : 16.979008025184555 W
+Power-Stack : 390.51718457924477 W
+Power-Thermal : 381.79981542075524 W
+VStack : 14.304658775796511 V
+Vcell : 0.6219416859041962 V
+###########
+I :27.4 A
+
+PEM Efficiency : 0.39838298791839205
+Power : 17.02848243558375 W
+Power-Stack : 391.65509601842626 W
+Power-Thermal : 383.4909039815737 W
+VStack : 14.293981606511908 V
+Vcell : 0.6214774611526916 V
+###########
+I :27.5 A
+
+PEM Efficiency : 0.3980858375671803
+Power : 17.077882431632034 W
+Power-Stack : 392.7912959275368 W
+Power-Thermal : 385.1837040724632 W
+VStack : 14.283319851910429 V
+Vcell : 0.6210139066048013 V
+###########
+I :27.6 A
+
+PEM Efficiency : 0.3977891131098616
+Power : 17.1272080540582 W
+Power-Stack : 393.9257852433386 W
+Power-Thermal : 386.87821475666135 W
+VStack : 14.272673378381835 V
+Vcell : 0.6205510164513841 V
+###########
+I :27.7 A
+
+PEM Efficiency : 0.3974928108600827
+Power : 17.176459342885895 W
+Power-Stack : 395.05856488637556 W
+Power-Thermal : 388.5744351136244 W
+VStack : 14.262042053659767 V
+Vcell : 0.620088784941729 V
+###########
+I :27.8 A
+
+PEM Efficiency : 0.397196927168396
+Power : 17.225636337439 W
+Power-Stack : 396.18963576109695 W
+Power-Thermal : 390.27236423890304 W
+VStack : 14.251425746802049 V
+Vcell : 0.6196272063826977 V
+###########
+I :27.9 A
+
+PEM Efficiency : 0.3969014584217188
+Power : 17.27473907634689 W
+Power-Stack : 397.31899875597844 W
+Power-Thermal : 391.9720012440215 W
+VStack : 14.240824328171271 V
+Vcell : 0.6191662751378814 V
+###########
+I :28.0 A
+
+PEM Efficiency : 0.3966064010428027
+Power : 17.323767597549622 W
+Power-Stack : 398.4466547436413 W
+Power-Thermal : 393.67334525635863 W
+VStack : 14.230237669415763 V
+Vcell : 0.6187059856267723 V
+###########
+I :28.1 A
+
+PEM Efficiency : 0.39631175148971265
+Power : 17.372721938303044 W
+Power-Stack : 399.57260458097005 W
+Power-Thermal : 395.37639541902996 W
+VStack : 14.21966564345089 V
+Vcell : 0.6182463323239518 V
+###########
+I :28.2 A
+
+PEM Efficiency : 0.3960175062553136
+Power : 17.421602135183754 W
+Power-Stack : 400.6968491092263 W
+Power-Thermal : 397.0811508907736 W
+VStack : 14.209108124440652 V
+Vcell : 0.6177873097582892 V
+###########
+I :28.3 A
+
+PEM Efficiency : 0.39572366186676783
+Power : 17.47040822409407 W
+Power-Stack : 401.81938915416356 W
+Power-Thermal : 398.78761084583647 W
+VStack : 14.19856498777963 V
+Vcell : 0.6173289125121578 V
+###########
+I :28.4 A
+
+PEM Efficiency : 0.3954302148850399
+Power : 17.519140240266804 W
+Power-Stack : 402.9402255261365 W
+Power-Thermal : 400.49577447386343 W
+VStack : 14.18803611007523 V
+Vcell : 0.6168711352206622 V
+###########
+I :28.5 A
+
+PEM Efficiency : 0.39513716190441006
+Power : 17.56779821827007 W
+Power-Stack : 404.0593590202116 W
+Power-Thermal : 402.20564097978837 W
+VStack : 14.177521369130233 V
+Vcell : 0.6164139725708797 V
+###########
+I :28.6 A
+
+PEM Efficiency : 0.39484449955199713
+Power : 17.616382192011905 W
+Power-Stack : 405.17679041627383 W
+Power-Thermal : 403.91720958372616 W
+VStack : 14.167020643925659 V
+Vcell : 0.6159574193011156 V
+###########
+I :28.7 A
+
+PEM Efficiency : 0.3945522244872877
+Power : 17.664892194744848 W
+Power-Stack : 406.2925204791315 W
+Power-Thermal : 405.6304795208685 W
+VStack : 14.156533814603884 V
+Vcell : 0.6155014702001689 V
+###########
+I :28.8 A
+
+PEM Efficiency : 0.39426033340167516
+Power : 17.71332825907046 W
+Power-Stack : 407.40654995862064 W
+Power-Thermal : 407.3454500413794 W
+VStack : 14.146060762452104 V
+Vcell : 0.6150461201066132 V
+###########
+I :28.9 A
+
+PEM Efficiency : 0.3939688230180057
+Power : 17.761690416943768 W
+Power-Stack : 408.51887958970667 W
+Power-Thermal : 409.0621204102933 W
+VStack : 14.135601369886045 V
+Vcell : 0.6145913639080889 V
+###########
+I :29.0 A
+
+PEM Efficiency : 0.3936776900901316
+Power : 17.809978699677554 W
+Power-Stack : 409.62951009258376 W
+Power-Thermal : 410.78048990741627 W
+VStack : 14.125155520433921 V
+Vcell : 0.6141371965406053 V
+###########
+I :29.1 A
+
+PEM Efficiency : 0.39338693140247316
+Power : 17.85819313794667 W
+Power-Stack : 410.73844217277343 W
+Power-Thermal : 412.5005578272266 W
+VStack : 14.114723098720736 V
+Vcell : 0.6136836129878581 V
+###########
+I :29.2 A
+
+PEM Efficiency : 0.3930965437695869
+Power : 17.906333761792222 W
+Power-Stack : 411.8456765212211 W
+Power-Thermal : 414.2223234787789 W
+VStack : 14.104303990452777 V
+Vcell : 0.6132306082805555 V
+###########
+I :29.3 A
+
+PEM Efficiency : 0.3928065240357411
+Power : 17.954400600625654 W
+Power-Stack : 412.95121381439003 W
+Power-Thermal : 415.9457861856099 W
+VStack : 14.093898082402392 V
+Vcell : 0.6127781774957561 V
+###########
+I :29.4 A
+
+PEM Efficiency : 0.3925168690744998
+Power : 18.002393683232857 W
+Power-Stack : 414.0550547143557 W
+Power-Thermal : 417.6709452856442 W
+VStack : 14.083505262393052 V
+Vcell : 0.6123263157562197 V
+###########
+I :29.5 A
+
+PEM Efficiency : 0.39222757578831136
+Power : 18.05031303777809 W
+Power-Stack : 415.15719986889604 W
+Power-Thermal : 419.3978001311039 W
+VStack : 14.073125419284612 V
+Vcell : 0.6118750182297658 V
+###########
+I :29.6 A
+
+PEM Efficiency : 0.3919386411081057
+Power : 18.09815869180789 W
+Power-Stack : 416.25764991158144 W
+Power-Thermal : 421.1263500884185 W
+VStack : 14.062758442958833 V
+Vcell : 0.6114242801286449 V
+###########
+I :29.7 A
+
+PEM Efficiency : 0.3916500619928978
+Power : 18.14593067225494 W
+Power-Stack : 417.35640546186363 W
+Power-Thermal : 422.85659453813633 W
+VStack : 14.052404224305173 V
+Vcell : 0.6109740967089206 V
+###########
+I :29.8 A
+
+PEM Efficiency : 0.39136183542939657
+Power : 18.19362900544179 W
+Power-Stack : 418.4534671251611 W
+Power-Thermal : 424.58853287483885 W
+VStack : 14.042062655206749 V
+Vcell : 0.6105244632698587 V
+###########
+I :29.9 A
+
+PEM Efficiency : 0.39107395843162196
+Power : 18.241253717084575 W
+Power-Stack : 419.5488354929452 W
+Power-Thermal : 426.3221645070547 W
+VStack : 14.031733628526597 V
+Vcell : 0.6100753751533303 V
+###########
+I :30.0 A
+
+PEM Efficiency : 0.39078642804052677
+Power : 18.288804832296652 W
+Power-Stack : 420.64251114282297 W
+Power-Thermal : 428.05748885717696 W
+VStack : 14.0214170380941 V
+Vcell : 0.6096268277432217 V
+###########
+I :30.1 A
+
+PEM Efficiency : 0.3904992413236249
+Power : 18.33628237559213 W
+Power-Stack : 421.734494638619 W
+Power-Thermal : 429.79450536138097 W
+VStack : 14.011112778691661 V
+Vcell : 0.6091788164648548 V
+###########
+I :30.2 A
+
+PEM Efficiency : 0.3902123953746266
+Power : 18.383686370889407 W
+Power-Stack : 422.8247865304564 W
+Power-Thermal : 431.53321346954357 W
+VStack : 14.000820746041603 V
+Vcell : 0.6087313367844175 V
+###########
+I :30.3 A
+
+PEM Efficiency : 0.38992588731307826
+Power : 18.43101684151458 W
+Power-Stack : 423.9133873548353 W
+Power-Thermal : 433.2736126451646 W
+VStack : 13.990540836793247 V
+Vcell : 0.608284384208402 V
+###########
+I :30.4 A
+
+PEM Efficiency : 0.3896397142840086
+Power : 18.478273810204826 W
+Power-Stack : 425.000297634711 W
+Power-Thermal : 435.0157023652889 W
+VStack : 13.980272948510232 V
+Vcell : 0.6078379542830535 V
+###########
+I :30.5 A
+
+PEM Efficiency : 0.3893538734575812
+Power : 18.52545729911171 W
+Power-Stack : 426.08551787956935 W
+Power-Thermal : 436.75948212043056 W
+VStack : 13.970016979658013 V
+Vcell : 0.6073920425938266 V
+###########
+I :30.6 A
+
+PEM Efficiency : 0.3890683620287503
+Power : 18.572567329804425 W
+Power-Stack : 427.1690485855018 W
+Power-Thermal : 438.50495141449824 W
+VStack : 13.95977282959156 V
+Vcell : 0.6069466447648505 V
+###########
+I :30.7 A
+
+PEM Efficiency : 0.38878317721692546
+Power : 18.619603923272994 W
+Power-Stack : 428.25089023527886 W
+Power-Thermal : 440.25210976472107 W
+VStack : 13.949540398543286 V
+Vcell : 0.6065017564584038 V
+###########
+I :30.8 A
+
+PEM Efficiency : 0.38849831626563797
+Power : 18.666567099931374 W
+Power-Stack : 429.3310432984216 W
+Power-Thermal : 442.0009567015784 W
+VStack : 13.939319587611092 V
+Vcell : 0.6060573733743952 V
+###########
+I :30.9 A
+
+PEM Efficiency : 0.3882137764422152
+Power : 18.71345687962054 W
+Power-Stack : 430.4095082312724 W
+Power-Thermal : 443.7514917687275 W
+VStack : 13.929110298746682 V
+Vcell : 0.6056134912498558 V
+###########
+I :31.0 A
+
+PEM Efficiency : 0.3879295550374591
+Power : 18.76027328161152 W
+Power-Stack : 431.486285477065 W
+Power-Thermal : 445.50371452293496 W
+VStack : 13.918912434744033 V
+Vcell : 0.6051701058584362 V
+###########
+I :31.1 A
+
+PEM Efficiency : 0.3876456493653286
+Power : 18.807016324608284 W
+Power-Stack : 432.5613754659905 W
+Power-Thermal : 447.2576245340095 W
+VStack : 13.90872589922799 V
+Vcell : 0.6047272130099126 V
+###########
+I :31.2 A
+
+PEM Efficiency : 0.38736205676262936
+Power : 18.853686026750694 W
+Power-Stack : 433.634778615266 W
+Power-Thermal : 449.013221384734 W
+VStack : 13.89855059664314 V
+Vcell : 0.6042848085497018 V
+###########
+I :31.3 A
+
+PEM Efficiency : 0.387078774588706
+Power : 18.900282405617336 W
+Power-Stack : 434.70649532919873 W
+Power-Thermal : 450.7705046708013 W
+VStack : 13.88838643224277 V
+Vcell : 0.6038428883583813 V
+###########
+I :31.4 A
+
+PEM Efficiency : 0.3867958002251403
+Power : 18.94680547822827 W
+Power-Stack : 435.7765259992502 W
+Power-Thermal : 452.5294740007497 W
+VStack : 13.878233312078034 V
+Vcell : 0.6034014483512189 V
+###########
+I :31.5 A
+
+PEM Efficiency : 0.3865131310754544
+Power : 18.993255261047832 W
+Power-Stack : 436.8448710041001 W
+Power-Thermal : 454.29012899589986 W
+VStack : 13.868091142987305 V
+Vcell : 0.6029604844777089 V
+###########
+I :31.6 A
+
+PEM Efficiency : 0.3862307645648171
+Power : 19.039631769987224 W
+Power-Stack : 437.91153070970614 W
+Power-Thermal : 456.05246929029386 W
+VStack : 13.857959832585637 V
+Vcell : 0.6025199927211147 V
+###########
+I :31.7 A
+
+PEM Efficiency : 0.3859486981397556
+Power : 19.085935020407195 W
+Power-Stack : 438.97650546936546 W
+Power-Thermal : 457.8164945306345 W
+VStack : 13.84783928925443 V
+Vcell : 0.6020799690980188 V
+###########
+I :31.8 A
+
+PEM Efficiency : 0.3856669292678723
+Power : 19.132165027120614 W
+Power-Stack : 440.0397956237741 W
+Power-Thermal : 459.5822043762259 W
+VStack : 13.837729422131261 V
+Vcell : 0.6016404096578809 V
+###########
+I :31.9 A
+
+PEM Efficiency : 0.3853854554375646
+Power : 19.178321804394965 W
+Power-Stack : 441.1014015010842 W
+Power-Thermal : 461.3495984989157 W
+VStack : 13.827630141099819 V
+Vcell : 0.6012013104826008 V
+###########
+I :32.0 A
+
+PEM Efficiency : 0.3851042741577489
+Power : 19.224405365954823 W
+Power-Stack : 442.16132341696095 W
+Power-Thermal : 463.118676583039 W
+VStack : 13.81754135678003 V
+Vcell : 0.6007626676860882 V
+###########
+I :32.1 A
+
+PEM Efficiency : 0.3848233829575901
+Power : 19.270415724984282 W
+Power-Stack : 443.2195616746385 W
+Power-Thermal : 464.88943832536154 W
+VStack : 13.807462980518332 V
+Vcell : 0.6003244774138405 V
+###########
+I :32.2 A
+
+PEM Efficiency : 0.3845427793862341
+Power : 19.316352894129313 W
+Power-Stack : 444.2761165649742 W
+Power-Thermal : 466.66188343502586 W
+VStack : 13.797394924378079 V
+Vcell : 0.5998867358425252 V
+###########
+I :32.3 A
+
+PEM Efficiency : 0.3842624610125446
+Power : 19.362216885500093 W
+Power-Stack : 445.33098836650214 W
+Power-Thermal : 468.43601163349774 W
+VStack : 13.787337101130099 V
+Vcell : 0.5994494391795695 V
+###########
+I :32.4 A
+
+PEM Efficiency : 0.38398242542484334
+Power : 19.40800771067328 W
+Power-Stack : 446.38417734548545 W
+Power-Thermal : 470.21182265451444 W
+VStack : 13.77728942424338 V
+Vcell : 0.5990125836627557 V
+###########
+I :32.5 A
+
+PEM Efficiency : 0.3837026702306551
+Power : 19.453725380694213 W
+Power-Stack : 447.43568375596686 W
+Power-Thermal : 471.9893162440331 W
+VStack : 13.767251807875905 V
+Vcell : 0.598576165559822 V
+###########
+I :32.6 A
+
+PEM Efficiency : 0.38342319305645567
+Power : 19.49936990607911 W
+Power-Stack : 448.48550783981955 W
+Power-Thermal : 473.7684921601805 W
+VStack : 13.75722416686563 V
+Vcell : 0.5981401811680709 V
+###########
+I :32.7 A
+
+PEM Efficiency : 0.3831439915474238
+Power : 19.544941296817186 W
+Power-Stack : 449.5336498267953 W
+Power-Thermal : 475.54935017320474 W
+VStack : 13.747206416721568 V
+Vcell : 0.5977046268139812 V
+###########
+I :32.8 A
+
+PEM Efficiency : 0.3828650633671971
+Power : 19.59043956237274 W
+Power-Stack : 450.58010993457304 W
+Power-Thermal : 477.3318900654269 W
+VStack : 13.737198473615033 V
+Vcell : 0.5972694988528275 V
+###########
+I :32.9 A
+
+PEM Efficiency : 0.3825864061976309
+Power : 19.635864711687205 W
+Power-Stack : 451.6248883688057 W
+Power-Thermal : 479.1161116311942 W
+VStack : 13.727200254370995 V
+Vcell : 0.5968347936683042 V
+###########
+I :33.0 A
+
+PEM Efficiency : 0.38230801773856066
+Power : 19.6812167531811 W
+Power-Stack : 452.66798532316534 W
+Power-Thermal : 480.90201467683465 W
+VStack : 13.717211676459556 V
+Vcell : 0.5964005076721546 V
+###########
+I :33.1 A
+
+PEM Efficiency : 0.3820298957075685
+Power : 19.726495694756007 W
+Power-Stack : 453.7094009793882 W
+Power-Thermal : 482.68959902061187 W
+VStack : 13.707232657987557 V
+Vcell : 0.5959666373038068 V
+###########
+I :33.2 A
+
+PEM Efficiency : 0.38175203783975264
+Power : 19.77170154379647 W
+Power-Stack : 454.74913550731884 W
+Power-Thermal : 484.4788644926812 W
+VStack : 13.697263117690325 V
+Vcell : 0.5955331790300141 V
+###########
+I :33.3 A
+
+PEM Efficiency : 0.3814744418874997
+Power : 19.81683430717183 W
+Power-Stack : 455.78718906495214 W
+Power-Thermal : 486.26981093504776 W
+VStack : 13.687302974923488 V
+Vcell : 0.5951001293444995 V
+###########
+I :33.4 A
+
+PEM Efficiency : 0.38119710562026154
+Power : 19.861893991238105 W
+Power-Stack : 456.8235617984764 W
+Power-Thermal : 488.0624382015235 W
+VStack : 13.677352149654984 V
+Vcell : 0.594667484767608 V
+###########
+I :33.5 A
+
+PEM Efficiency : 0.3809200268243333
+Power : 19.906880601839656 W
+Power-Stack : 457.8582538423121 W
+Power-Thermal : 489.8567461576879 W
+VStack : 13.667410562457077 V
+Vcell : 0.5942352418459599 V
+###########
+I :33.6 A
+
+PEM Efficiency : 0.38064320330263673
+Power : 19.951794144311005 W
+Power-Stack : 458.89126531915315 W
+Power-Thermal : 491.65273468084683 W
+VStack : 13.657478134498605 V
+Vcell : 0.5938033971521133 V
+###########
+I :33.7 A
+
+PEM Efficiency : 0.3803666328745053
+Power : 19.996634623478496 W
+Power-Stack : 459.9225963400054 W
+Power-Thermal : 493.4504036599947 W
+VStack : 13.64755478753725 V
+Vcell : 0.5933719472842283 V
+###########
+I :33.8 A
+
+PEM Efficiency : 0.38009031337547217
+Power : 20.041402043661897 W
+Power-Stack : 460.95224700422364 W
+Power-Thermal : 495.2497529957763 W
+VStack : 13.637640443911941 V
+Vcell : 0.5929408888657366 V
+###########
+I :33.9 A
+
+PEM Efficiency : 0.3798142426570626
+Power : 20.086096408676095 W
+Power-Stack : 461.9802173995502 W
+Power-Thermal : 497.05078260044974 W
+VStack : 13.627735026535404 V
+Vcell : 0.5925102185450176 V
+###########
+I :34.0 A
+
+PEM Efficiency : 0.3795384185865868
+Power : 20.130717721832564 W
+Power-Stack : 463.006507602149 W
+Power-Thermal : 498.85349239785097 W
+VStack : 13.617838458886736 V
+Vcell : 0.5920799329950754 V
+###########
+I :34.1 A
+
+PEM Efficiency : 0.3792628390469386
+Power : 20.175265985940946 W
+Power-Stack : 464.03111767664177 W
+Power-Thermal : 500.6578823233583 W
+VStack : 13.607950665004156 V
+Vcell : 0.5916500289132242 V
+###########
+I :34.2 A
+
+PEM Efficiency : 0.37898750193639436
+Power : 20.219741203310516 W
+Power-Stack : 465.05404767614186 W
+Power-Thermal : 502.4639523238582 W
+VStack : 13.59807156947783 V
+Vcell : 0.5912205030207752 V
+###########
+I :34.3 A
+
+PEM Efficiency : 0.3787124051684162
+Power : 20.264143375751612 W
+Power-Stack : 466.07529764228707 W
+Power-Thermal : 504.2717023577128 W
+VStack : 13.588201097442774 V
+Vcell : 0.5907913520627293 V
+###########
+I :34.4 A
+
+PEM Efficiency : 0.3784375466714573
+Power : 20.308472504577082 W
+Power-Stack : 467.0948676052729 W
+Power-Thermal : 506.08113239472704 W
+VStack : 13.578339174571887 V
+Vcell : 0.5903625728074734 V
+###########
+I :34.5 A
+
+PEM Efficiency : 0.37816292438876986
+Power : 20.352728590603594 W
+Power-Stack : 468.1127575838826 W
+Power-Thermal : 507.8922424161173 W
+VStack : 13.568485727069062 V
+Vcell : 0.589934162046481 V
+###########
+I :34.6 A
+
+PEM Efficiency : 0.3778885362782161
+Power : 20.396911634152996 W
+Power-Stack : 469.1289675855189 W
+Power-Thermal : 509.7050324144811 W
+VStack : 13.558640681662396 V
+Vcell : 0.5895061165940172 V
+###########
+I :34.7 A
+
+PEM Efficiency : 0.37761438031208144
+Power : 20.441021635053595 W
+Power-Stack : 470.1434976062327 W
+Power-Thermal : 511.51950239376737 W
+VStack : 13.548803965597482 V
+Vcell : 0.5890784332868471 V
+###########
+I :34.8 A
+
+PEM Efficiency : 0.37734045447689
+Power : 20.485058592641405 W
+Power-Stack : 471.1563476307523 W
+Power-Thermal : 513.3356523692476 W
+VStack : 13.538975506630814 V
+Vcell : 0.5886511089839485 V
+###########
+I :34.9 A
+
+PEM Efficiency : 0.37706675677322327
+Power : 20.529022505761368 W
+Power-Stack : 472.1675176325115 W
+Power-Thermal : 515.1534823674886 W
+VStack : 13.52915523302325 V
+Vcell : 0.5882241405662283 V
+###########
+I :35.0 A
+
+PEM Efficiency : 0.37679328521554073
+Power : 20.572913372768525 W
+Power-Stack : 473.17700757367606 W
+Power-Thermal : 516.9729924263238 W
+VStack : 13.519343073533603 V
+Vcell : 0.5877975249362436 V
+###########
+I :35.1 A
+
+PEM Efficiency : 0.3765200378320028
+Power : 20.616731191529148 W
+Power-Stack : 474.1848174051704 W
+Power-Thermal : 518.7941825948296 W
+VStack : 13.509538957412262 V
+Vcell : 0.5873712590179244 V
+###########
+I :35.2 A
+
+PEM Efficiency : 0.3762470126642965
+Power : 20.660475959421852 W
+Power-Stack : 475.1909470667026 W
+Power-Thermal : 520.6170529332974 W
+VStack : 13.49974281439496 V
+Vcell : 0.5869453397563026 V
+###########
+I :35.3 A
+
+PEM Efficiency : 0.37597420776746293
+Power : 20.70414767333865 W
+Power-Stack : 476.1953964867889 W
+Power-Thermal : 522.4416035132109 W
+VStack : 13.489954574696572 V
+Vcell : 0.5865197641172423 V
+###########
+I :35.4 A
+
+PEM Efficiency : 0.3757016212097276
+Power : 20.747746329685995 W
+Power-Stack : 477.1981655827779 W
+Power-Thermal : 524.267834417222 W
+VStack : 13.480174169005027 V
+Vcell : 0.5860945290871751 V
+###########
+I :35.5 A
+
+PEM Efficiency : 0.3754292510723325
+Power : 20.791271924385775 W
+Power-Stack : 478.1992542608728 W
+Power-Thermal : 526.0957457391272 W
+VStack : 13.47040152847529 V
+Vcell : 0.5856696316728387 V
+###########
+I :35.6 A
+
+PEM Efficiency : 0.3751570954493707
+Power : 20.834724452876255 W
+Power-Stack : 479.19866241615387 W
+Power-Thermal : 527.9253375838462 W
+VStack : 13.460636584723423 V
+Vcell : 0.5852450689010184 V
+###########
+I :35.7 A
+
+PEM Efficiency : 0.3748851524476226
+Power : 20.878103910113 W
+Power-Stack : 480.196389932599 W
+Power-Thermal : 529.7566100674011 W
+VStack : 13.4508792698207 V
+Vcell : 0.5848208378182913 V
+###########
+I :35.8 A
+
+PEM Efficiency : 0.3746134201863952
+Power : 20.9214102905698 W
+Power-Stack : 481.19243668310537 W
+Power-Thermal : 531.5895633168946 W
+VStack : 13.44112951628786 V
+Vcell : 0.5843969354907765 V
+###########
+I :35.9 A
+
+PEM Efficiency : 0.37434189679736213
+Power : 20.964643588239472 W
+Power-Stack : 482.1868025295079 W
+Power-Thermal : 533.4241974704921 W
+VStack : 13.431387257089355 V
+Vcell : 0.583973359003885 V
+###########
+I :36.0 A
+
+PEM Efficiency : 0.37407058042440766
+Power : 21.007803796634736 W
+Power-Stack : 483.1794873225989 W
+Power-Thermal : 535.260512677401 W
+VStack : 13.421652425627748 V
+Vcell : 0.583550105462076 V
+###########
+I :36.1 A
+
+PEM Efficiency : 0.3737994692234699
+Power : 21.050890908788933 W
+Power-Stack : 484.17049090214545 W
+Power-Thermal : 537.0985090978545 W
+VStack : 13.411924955738101 V
+Vcell : 0.5831271719886131 V
+###########
+I :36.2 A
+
+PEM Efficiency : 0.37352856136238904
+Power : 21.09390491725684 W
+Power-Stack : 485.1598130969073 W
+Power-Thermal : 538.9381869030927 W
+VStack : 13.40220478168252 V
+Vcell : 0.582704555725327 V
+###########
+I :36.3 A
+
+PEM Efficiency : 0.37325785502075565
+Power : 21.13684581411535 W
+Power-Stack : 486.1474537246531 W
+Power-Thermal : 540.7795462753468 W
+VStack : 13.392491838144714 V
+Vcell : 0.5822822538323789 V
+###########
+I :36.4 A
+
+PEM Efficiency : 0.37298734838976066
+Power : 21.17971359096417 W
+Power-Stack : 487.1334125921759 W
+Power-Thermal : 542.622587407824 W
+VStack : 13.382786060224614 V
+Vcell : 0.5818602634880267 V
+###########
+I :36.5 A
+
+PEM Efficiency : 0.37271703967204917
+Power : 21.222508238926483 W
+Power-Stack : 488.1176894953091 W
+Power-Thermal : 544.4673105046909 W
+VStack : 13.373087383433127 V
+Vcell : 0.5814385818883968 V
+###########
+I :36.6 A
+
+PEM Efficiency : 0.3724469270815736
+Power : 21.26522974864953 W
+Power-Stack : 489.10028421893924 W
+Power-Thermal : 546.3137157810608 W
+VStack : 13.363395743686864 V
+Vcell : 0.581017206247255 V
+###########
+I :36.7 A
+
+PEM Efficiency : 0.3721770088434505
+Power : 21.30787811030523 W
+Power-Stack : 490.0811965370203 W
+Power-Thermal : 548.1618034629798 W
+VStack : 13.353711077303004 V
+Vcell : 0.5805961337957828 V
+###########
+I :36.8 A
+
+PEM Efficiency : 0.37190728319381816
+Power : 21.35045331359071 W
+Power-Stack : 491.0604262125863 W
+Power-Thermal : 550.0115737874136 W
+VStack : 13.344033320994194 V
+Vcell : 0.5801753617823563 V
+###########
+I :36.9 A
+
+PEM Efficiency : 0.3716377483796968
+Power : 21.39295534772887 W
+Power-Stack : 492.037972997764 W
+Power-Thermal : 551.863027002236 W
+VStack : 13.334362411863523 V
+Vcell : 0.5797548874723271 V
+###########
+I :37.0 A
+
+PEM Efficiency : 0.37136840265884946
+Power : 21.435384201468793 W
+Power-Stack : 493.01383663378226 W
+Power-Thermal : 553.7161633662178 W
+VStack : 13.324698287399519 V
+Vcell : 0.5793347081478052 V
+###########
+I :37.1 A
+
+PEM Efficiency : 0.37109924429964547
+Power : 21.477739863086285 W
+Power-Stack : 493.98801685098454 W
+Power-Thermal : 555.5709831490155 W
+VStack : 13.31504088547128 V
+Vcell : 0.578914821107447 V
+###########
+I :37.2 A
+
+PEM Efficiency : 0.37083027158092485
+Power : 21.520022320384236 W
+Power-Stack : 494.96051336883744 W
+Power-Thermal : 557.4274866311627 W
+VStack : 13.305390144323585 V
+Vcell : 0.5784952236662428 V
+###########
+I :37.3 A
+
+PEM Efficiency : 0.37056148279186485
+Power : 21.56223156069303 W
+Power-Stack : 495.93132589593966 W
+Power-Thermal : 559.2856741040601 W
+VStack : 13.29574600257211 V
+Vcell : 0.5780759131553092 V
+###########
+I :37.4 A
+
+PEM Efficiency : 0.37029287623184814
+Power : 21.60436757087095 W
+Power-Stack : 496.9004541300318 W
+Power-Thermal : 561.1455458699681 W
+VStack : 13.286108399198712 V
+Vcell : 0.5776568869216832 V
+###########
+I :37.5 A
+
+PEM Efficiency : 0.37002445021033215
+Power : 21.64643033730443 W
+Power-Stack : 497.8678977580019 W
+Power-Thermal : 563.0071022419982 W
+VStack : 13.276477273546716 V
+Vcell : 0.5772381423281181 V
+###########
+I :37.6 A
+
+PEM Efficiency : 0.3697562030467201
+Power : 21.688419845908417 W
+Power-Stack : 498.83365645589356 W
+Power-Thermal : 564.8703435441064 W
+VStack : 13.266852565316318 V
+Vcell : 0.5768196767528834 V
+###########
+I :37.7 A
+
+PEM Efficiency : 0.36948813307023387
+Power : 21.7303360821266 W
+Power-Stack : 499.79772988891176 W
+Power-Thermal : 566.7352701110883 W
+VStack : 13.257234214559993 V
+Vcell : 0.5764014875895649 V
+###########
+I :37.8 A
+
+PEM Efficiency : 0.3692202386197881
+Power : 21.772179030931664 W
+Power-Stack : 500.7601177114283 W
+Power-Thermal : 568.6018822885717 W
+VStack : 13.247622161677997 V
+Vcell : 0.5759835722468695 V
+###########
+I :37.9 A
+
+PEM Efficiency : 0.3689525180438657
+Power : 21.813948676825518 W
+Power-Stack : 501.7208195669869 W
+Power-Thermal : 570.4701804330131 W
+VStack : 13.238016347413902 V
+Vcell : 0.5755659281484306 V
+###########
+I :38.0 A
+
+PEM Efficiency : 0.36868496970039494
+Power : 21.855645003839413 W
+Power-Stack : 502.6798350883065 W
+Power-Thermal : 572.3401649116935 W
+VStack : 13.228416712850171 V
+Vcell : 0.5751485527326161 V
+###########
+I :38.1 A
+
+PEM Efficiency : 0.3684175919566276
+Power : 21.89726799553412 W
+Power-Stack : 503.6371638972847 W
+Power-Thermal : 574.2118361027152 W
+VStack : 13.218823199403799 V
+Vcell : 0.5747314434523391 V
+###########
+I :38.2 A
+
+PEM Efficiency : 0.36815038318901955
+Power : 21.93881763500006 W
+Power-Stack : 504.5928056050014 W
+Power-Thermal : 576.0851943949987 W
+VStack : 13.209235748822024 V
+Vcell : 0.5743145977748706 V
+###########
+I :38.3 A
+
+PEM Efficiency : 0.36788334178311166
+Power : 21.980293904857355 W
+Power-Stack : 505.54675981171914 W
+Power-Thermal : 577.9602401882807 W
+VStack : 13.199654303178047 V
+Vcell : 0.5738980131816542 V
+###########
+I :38.4 A
+
+PEM Efficiency : 0.36761646613341226
+Power : 22.021696787255927 W
+Power-Stack : 506.49902610688633 W
+Power-Thermal : 579.8369738931136 W
+VStack : 13.19007880486683 V
+Vcell : 0.5734816871681231 V
+###########
+I :38.5 A
+
+PEM Efficiency : 0.36734975464328057
+Power : 22.06302626387543 W
+Power-Stack : 507.44960406913486 W
+Power-Thermal : 581.715395930865 W
+VStack : 13.180509196600907 V
+Vcell : 0.5730656172435177 V
+###########
+I :38.6 A
+
+PEM Efficiency : 0.3670832057248135
+Power : 22.10428231592537 W
+Power-Stack : 508.39849326628354 W
+Power-Thermal : 583.5955067337164 W
+VStack : 13.170945421406309 V
+Vcell : 0.572649800930709 V
+###########
+I :38.7 A
+
+PEM Efficiency : 0.3668168177987305
+Power : 22.14546492414496 W
+Power-Stack : 509.3456932553341 W
+Power-Thermal : 585.477306744666 W
+VStack : 13.161387422618452 V
+Vcell : 0.5722342357660196 V
+###########
+I :38.8 A
+
+PEM Efficiency : 0.3665505892942625
+Power : 22.186574068803118 W
+Power-Stack : 510.2912035824717 W
+Power-Thermal : 587.3607964175281 W
+VStack : 13.151835143878138 V
+Vcell : 0.5718189192990495 V
+###########
+I :38.9 A
+
+PEM Efficiency : 0.36628451864903977
+Power : 22.22760972969833 W
+Power-Stack : 511.2350237830616 W
+Power-Thermal : 589.2459762169383 W
+VStack : 13.142288529127548 V
+Vcell : 0.5714038490925021 V
+###########
+I :39.0 A
+
+PEM Efficiency : 0.3660186043089837
+Power : 22.26857188615857 W
+Power-Stack : 512.177153381647 W
+Power-Thermal : 591.1328466183529 W
+VStack : 13.132747522606335 V
+Vcell : 0.5709890227220146 V
+###########
+I :39.1 A
+
+PEM Efficiency : 0.3657528447281968
+Power : 22.309460517041096 W
+Power-Stack : 513.1175918919452 W
+Power-Thermal : 593.0214081080549 W
+VStack : 13.123212068847701 V
+Vcell : 0.570574437775987 V
+###########
+I :39.2 A
+
+PEM Efficiency : 0.3654872383688562
+Power : 22.3502756007323 W
+Power-Stack : 514.0563388168429 W
+Power-Thermal : 594.9116611831572 W
+VStack : 13.113682112674562 V
+Vcell : 0.5701600918554157 V
+###########
+I :39.3 A
+
+PEM Efficiency : 0.3652217837011071
+Power : 22.391017115147474 W
+Power-Stack : 514.9933936483919 W
+Power-Thermal : 596.803606351608 W
+VStack : 13.104157599195723 V
+Vcell : 0.5697459825737271 V
+###########
+I :39.4 A
+
+PEM Efficiency : 0.36495647920295765
+Power : 22.431685037730592 W
+Power-Stack : 515.9287558678036 W
+Power-Thermal : 598.6972441321963 W
+VStack : 13.094638473802123 V
+Vcell : 0.569332107556614 V
+###########
+I :39.5 A
+
+PEM Efficiency : 0.36469132336017557
+Power : 22.47227934545402 W
+Power-Stack : 516.8624249454424 W
+Power-Thermal : 600.5925750545575 W
+VStack : 13.0851246821631 V
+Vcell : 0.5689184644418739 V
+###########
+I :39.6 A
+
+PEM Efficiency : 0.36442631466618397
+Power : 22.51280001481818 W
+Power-Stack : 517.7944003408181 W
+Power-Thermal : 602.4895996591819 W
+VStack : 13.07561617022268 V
+Vcell : 0.568505050879247 V
+###########
+I :39.7 A
+
+PEM Efficiency : 0.36416145162196134
+Power : 22.553247021851313 W
+Power-Stack : 518.7246815025802 W
+Power-Thermal : 604.3883184974198 W
+VStack : 13.066112884195974 V
+Vcell : 0.5680918645302597 V
+###########
+I :39.8 A
+
+PEM Efficiency : 0.3638967327359393
+Power : 22.593620342109 W
+Power-Stack : 519.653267868507 W
+Power-Thermal : 606.2887321314929 W
+VStack : 13.056614770565503 V
+Vcell : 0.5676789030680653 V
+###########
+I :39.9 A
+
+PEM Efficiency : 0.36363215652390385
+Power : 22.63391995067387 W
+Power-Stack : 520.580158865499 W
+Power-Thermal : 608.1908411345009 W
+VStack : 13.04712177607767 V
+Vcell : 0.56726616417729 V
+###########
+I :40.0 A
+
+PEM Efficiency : 0.3633677215088967
+Power : 22.674145822155154 W
+Power-Stack : 521.5053539095685 W
+Power-Thermal : 610.0946460904314 W
+VStack : 13.037633847739214 V
+Vcell : 0.5668536455538788 V
+###########
+I :40.1 A
+
+PEM Efficiency : 0.3631034262211169
+Power : 22.71429793068819 W
+Power-Stack : 522.4288524058284 W
+Power-Thermal : 612.0001475941717 W
+VStack : 13.028150932813674 V
+Vcell : 0.5664413449049424 V
+###########
+I :40.2 A
+
+PEM Efficiency : 0.3628392691978251
+Power : 22.754376249934012 W
+Power-Stack : 523.3506537484823 W
+Power-Thermal : 613.9073462515178 W
+VStack : 13.018672978817966 V
+Vcell : 0.5660292599486072 V
+###########
+I :40.3 A
+
+PEM Efficiency : 0.36257524898324783
+Power : 22.79438075307882 W
+Power-Stack : 524.2707573208129 W
+Power-Thermal : 615.816242679187 W
+VStack : 13.00919993351893 V
+Vcell : 0.5656173884138666 V
+###########
+I :40.4 A
+
+PEM Efficiency : 0.3623113641284818
+Power : 22.83431141283344 W
+Power-Stack : 525.1891624951692 W
+Power-Thermal : 617.7268375048309 W
+VStack : 12.999731744929928 V
+Vcell : 0.5652057280404317 V
+###########
+I :40.5 A
+
+PEM Efficiency : 0.36204761319140183
+Power : 22.874168201432767 W
+Power-Stack : 526.1058686329536 W
+Power-Thermal : 619.6391313670464 W
+VStack : 12.990268361307496 V
+Vcell : 0.5647942765785868 V
+###########
+I :40.6 A
+
+PEM Efficiency : 0.36178399473656625
+Power : 22.913951090635162 W
+Power-Stack : 527.0208750846087 W
+Power-Thermal : 621.5531249153913 W
+VStack : 12.980809731147998 V
+Vcell : 0.5643830317890434 V
+###########
+I :40.7 A
+
+PEM Efficiency : 0.3615205073351265
+Power : 22.95366005172185 W
+Power-Stack : 527.9341811896026 W
+Power-Thermal : 623.4688188103975 W
+VStack : 12.971355803184338 V
+Vcell : 0.5639719914427973 V
+###########
+I :40.8 A
+
+PEM Efficiency : 0.3612571495647353
+Power : 22.993295055496272 W
+Power-Stack : 528.8457862764143 W
+Power-Thermal : 625.3862137235856 W
+VStack : 12.961906526382704 V
+Vcell : 0.5635611533209871 V
+###########
+I :40.9 A
+
+PEM Efficiency : 0.3609939200094568
+Power : 23.032856072283383 W
+Power-Stack : 529.7556896625179 W
+Power-Thermal : 627.3053103374821 W
+VStack : 12.952461849939311 V
+Vcell : 0.5631505152147527 V
+###########
+I :41.0 A
+
+PEM Efficiency : 0.36073081725967715
+Power : 23.07234307192895 W
+Power-Stack : 530.6638906543659 W
+Power-Thermal : 629.2261093456341 W
+VStack : 12.943021723277216 V
+Vcell : 0.5627400749250964 V
+###########
+I :41.1 A
+
+PEM Efficiency : 0.3604678399120164
+Power : 23.111756023798847 W
+Power-Stack : 531.5703885473735 W
+Power-Thermal : 631.1486114526265 W
+VStack : 12.93358609604315 V
+Vcell : 0.5623298302627456 V
+###########
+I :41.2 A
+
+PEM Efficiency : 0.3602049865692407
+Power : 23.151094896778243 W
+Power-Stack : 532.4751826258996 W
+Power-Thermal : 633.0728173741004 W
+VStack : 12.924154918104358 V
+Vcell : 0.5619197790480156 V
+###########
+I :41.3 A
+
+PEM Efficiency : 0.3599422558401759
+Power : 23.19035965927085 W
+Power-Stack : 533.3782721632296 W
+Power-Thermal : 634.9987278367703 W
+VStack : 12.914728139545511 V
+Vcell : 0.5615099191106744 V
+###########
+I :41.4 A
+
+PEM Efficiency : 0.35967964633962074
+Power : 23.22955027919807 W
+Power-Stack : 534.2796564215556 W
+Power-Thermal : 636.9263435784443 W
+VStack : 12.905305710665594 V
+Vcell : 0.5611002482898084 V
+###########
+I :41.5 A
+
+PEM Efficiency : 0.3594171566882629
+Power : 23.26866672399814 W
+Power-Stack : 535.1793346519572 W
+Power-Thermal : 638.8556653480427 W
+VStack : 12.895887581974874 V
+Vcell : 0.5606907644336901 V
+###########
+I :41.6 A
+
+PEM Efficiency : 0.3591547855125941
+Power : 23.30770896062531 W
+Power-Stack : 536.0773060943822 W
+Power-Thermal : 640.7866939056179 W
+VStack : 12.886473704191877 V
+Vcell : 0.5602814653996468 V
+###########
+I :41.7 A
+
+PEM Efficiency : 0.35889253144482597
+Power : 23.346676955548823 W
+Power-Stack : 536.9735699776229 W
+Power-Thermal : 642.7194300223772 W
+VStack : 12.877064028240357 V
+Vcell : 0.5598723490539286 V
+###########
+I :41.8 A
+
+PEM Efficiency : 0.3586303931228085
+Power : 23.385570674752092 W
+Power-Stack : 537.8681255192981 W
+Power-Thermal : 644.6538744807017 W
+VStack : 12.867658505246368 V
+Vcell : 0.5594634132715812 V
+###########
+I :41.9 A
+
+PEM Efficiency : 0.3583683691899465
+Power : 23.424390083731666 W
+Power-Stack : 538.7609719258284 W
+Power-Thermal : 646.5900280741716 W
+VStack : 12.858257086535282 V
+Vcell : 0.5590546559363166 V
+###########
+I :42.0 A
+
+PEM Efficiency : 0.3581064582951194
+Power : 23.463135147496224 W
+Power-Stack : 539.6521083924132 W
+Power-Thermal : 648.5278916075868 W
+VStack : 12.848859723628886 V
+Vcell : 0.5586460749403863 V
+###########
+I :42.1 A
+
+PEM Efficiency : 0.35784465909260005
+Power : 23.5018058305656 W
+Power-Stack : 540.5415341030089 W
+Power-Thermal : 650.4674658969911 W
+VStack : 12.83946636824249 V
+Vcell : 0.5582376681844561 V
+###########
+I :42.2 A
+
+PEM Efficiency : 0.35758297024197444
+Power : 23.540402096969665 W
+Power-Stack : 541.4292482303023 W
+Power-Thermal : 652.4087517696978 W
+VStack : 12.830076972282043 V
+Vcell : 0.5578294335774802 V
+###########
+I :42.3 A
+
+PEM Efficiency : 0.3573213904080637
+Power : 23.578923910247305 W
+Power-Stack : 542.315249935688 W
+Power-Thermal : 654.3517500643119 W
+VStack : 12.820691487841325 V
+Vcell : 0.5574213690365794 V
+###########
+I :42.4 A
+
+PEM Efficiency : 0.35705991826084377
+Power : 23.617371233445247 W
+Power-Stack : 543.1995383692407 W
+Power-Thermal : 656.2964616307593 W
+VStack : 12.811309867199073 V
+Vcell : 0.5570134724869162 V
+###########
+I :42.5 A
+
+PEM Efficiency : 0.3567985524753689
+Power : 23.65574402911696 W
+Power-Stack : 544.0821126696901 W
+Power-Thermal : 658.2428873303099 W
+VStack : 12.801932062816237 V
+Vcell : 0.5566057418615755 V
+###########
+I :42.6 A
+
+PEM Efficiency : 0.35653729173169385
+Power : 23.69404225932145 W
+Power-Stack : 544.9629719643933 W
+Power-Thermal : 660.1910280356067 W
+VStack : 12.792558027333175 V
+Vcell : 0.5561981751014424 V
+###########
+I :42.7 A
+
+PEM Efficiency : 0.3562761347147971
+Power : 23.732265885622066 W
+Power-Stack : 545.8421153693075 W
+Power-Thermal : 662.1408846306924 W
+VStack : 12.783187713566921 V
+Vcell : 0.5557907701550835 V
+###########
+I :42.8 A
+
+PEM Efficiency : 0.3560150801145051
+Power : 23.770414869085275 W
+Power-Stack : 546.7195419889613 W
+Power-Thermal : 664.0924580110385 W
+VStack : 12.773821074508444 V
+Vcell : 0.555383524978628 V
+###########
+I :42.9 A
+
+PEM Efficiency : 0.355754126625417
+Power : 23.808489170279405 W
+Power-Stack : 547.5952509164263 W
+Power-Thermal : 666.0457490835736 W
+VStack : 12.764458063319962 V
+Vcell : 0.5549764375356505 V
+###########
+I :43.0 A
+
+PEM Efficiency : 0.35549327294682953
+Power : 23.846488749273327 W
+Power-Stack : 548.4692412332865 W
+Power-Thermal : 668.0007587667135 W
+VStack : 12.755098633332244 V
+Vcell : 0.5545695057970541 V
+###########
+I :43.1 A
+
+PEM Efficiency : 0.35523251778266285
+Power : 23.88441356563512 W
+Power-Stack : 549.3415120096078 W
+Power-Thermal : 669.9574879903922 W
+VStack : 12.745742738041944 V
+Vcell : 0.5541627277409541 V
+###########
+I :43.2 A
+
+PEM Efficiency : 0.35497185984138757
+Power : 23.92226357843079 W
+Power-Stack : 550.2120623039082 W
+Power-Thermal : 671.9159376960919 W
+VStack : 12.736390331108986 V
+Vcell : 0.5537561013525646 V
+###########
+I :43.3 A
+
+PEM Efficiency : 0.3547112978359507
+Power : 23.960038746222796 W
+Power-Stack : 551.0808911631243 W
+Power-Thermal : 673.8761088368756 W
+VStack : 12.72704136635391 V
+Vcell : 0.5533496246240831 V
+###########
+I :43.4 A
+
+PEM Efficiency : 0.3544508304837044
+Power : 23.99773902706872 W
+Power-Stack : 551.9479976225806 W
+Power-Thermal : 675.8380023774192 W
+VStack : 12.717695797755315 V
+Vcell : 0.5529432955545789 V
+###########
+I :43.5 A
+
+PEM Efficiency : 0.354190456506333
+Power : 24.03536437851976 W
+Power-Stack : 552.8133807059545 W
+Power-Thermal : 677.8016192940454 W
+VStack : 12.70835357944723 V
+Vcell : 0.5525371121498796 V
+###########
+I :43.6 A
+
+PEM Efficiency : 0.3539301746297821
+Power : 24.072914757619266 W
+Power-Stack : 553.6770394252432 W
+Power-Thermal : 679.7669605747569 W
+VStack : 12.699014665716584 V
+Vcell : 0.5521310724224602 V
+###########
+I :43.7 A
+
+PEM Efficiency : 0.3536699835841879
+Power : 24.110390120901258 W
+Power-Stack : 554.538972780729 W
+Power-Thermal : 681.7340272192712 W
+VStack : 12.68967901100066 V
+Vcell : 0.5517251743913331 V
+###########
+I :43.8 A
+
+PEM Efficiency : 0.3534098821038064
+Power : 24.147790424388884 W
+Power-Stack : 555.3991797609443 W
+Power-Thermal : 683.7028202390555 W
+VStack : 12.680346569884575 V
+Vcell : 0.551319416081938 V
+###########
+I :43.9 A
+
+PEM Efficiency : 0.35314986892694417
+Power : 24.185115623592843 W
+Power-Stack : 556.2576593426354 W
+Power-Thermal : 685.6733406573645 W
+VStack : 12.671017297098757 V
+Vcell : 0.5509137955260329 V
+###########
+I :44.0 A
+
+PEM Efficiency : 0.35288994279588887
+Power : 24.22236567350981 W
+Power-Stack : 557.1144104907256 W
+Power-Thermal : 687.6455895092744 W
+VStack : 12.66169114751649 V
+Vcell : 0.5505083107615866 V
+###########
+I :44.1 A
+
+PEM Efficiency : 0.3526301024568398
+Power : 24.259540528620754 W
+Power-Stack : 557.9694321582773 W
+Power-Thermal : 689.6195678417228 W
+VStack : 12.652368076151411 V
+Vcell : 0.5501029598326701 V
+###########
+I :44.2 A
+
+PEM Efficiency : 0.3523703466598406
+Power : 24.296640142889334 W
+Power-Stack : 558.8227232864547 W
+Power-Thermal : 691.5952767135453 W
+VStack : 12.643048038155083 V
+Vcell : 0.5496977407893514 V
+###########
+I :44.3 A
+
+PEM Efficiency : 0.35211067415871106
+Power : 24.3336644697602 W
+Power-Stack : 559.6742828044846 W
+Power-Thermal : 693.5727171955152 W
+VStack : 12.633730988814552 V
+Vcell : 0.5492926516875892 V
+###########
+I :44.4 A
+
+PEM Efficiency : 0.35185108371097856
+Power : 24.370613462157223 W
+Power-Stack : 560.5241096296161 W
+Power-Thermal : 695.5518903703837 W
+VStack : 12.624416883549914 V
+Vcell : 0.5488876905891267 V
+###########
+I :44.5 A
+
+PEM Efficiency : 0.35159157407781344
+Power : 24.40748707248181 W
+Power-Stack : 561.3722026670816 W
+Power-Thermal : 697.5327973329183 W
+VStack : 12.615105677911947 V
+Vcell : 0.548482855561389 V
+###########
+I :44.6 A
+
+PEM Efficiency : 0.35133214402396007
+Power : 24.444285252611046 W
+Power-Stack : 562.2185608100541 W
+Power-Thermal : 699.5154391899459 W
+VStack : 12.605797327579687 V
+Vcell : 0.5480781446773777 V
+###########
+I :44.7 A
+
+PEM Efficiency : 0.3510727923176726
+Power : 24.481007953895947 W
+Power-Stack : 563.0631829396068 W
+Power-Thermal : 701.4998170603933 W
+VStack : 12.596491788358092 V
+Vcell : 0.5476735560155692 V
+###########
+I :44.8 A
+
+PEM Efficiency : 0.3508135177306483
+Power : 24.517655127159546 W
+Power-Stack : 563.9060679246695 W
+Power-Thermal : 703.4859320753303 W
+VStack : 12.58718901617566 V
+Vcell : 0.5472690876598113 V
+###########
+I :44.9 A
+
+PEM Efficiency : 0.3505543190379624
+Power : 24.55422672269504 W
+Power-Stack : 564.7472146219859 W
+Power-Thermal : 705.473785378014 W
+VStack : 12.577888967082092 V
+Vcell : 0.5468647376992214 V
+###########
+I :45.0 A
+
+PEM Efficiency : 0.350295195018004
+Power : 24.590722690263885 W
+Power-Stack : 565.5866218760693 W
+Power-Thermal : 707.4633781239306 W
+VStack : 12.568591597245986 V
+Vcell : 0.5464605042280863 V
+###########
+I :45.1 A
+
+PEM Efficiency : 0.350036144452411
+Power : 24.62714297909383 W
+Power-Stack : 566.424288519158 W
+Power-Thermal : 709.4547114808419 W
+VStack : 12.559296862952507 V
+Vcell : 0.5460563853457612 V
+###########
+I :45.2 A
+
+PEM Efficiency : 0.3497771661260055
+Power : 24.663487537876904 W
+Power-Stack : 567.2602133711688 W
+Power-Thermal : 711.4477866288313 W
+VStack : 12.550004720601079 V
+Vcell : 0.5456523791565686 V
+###########
+I :45.3 A
+
+PEM Efficiency : 0.3495182588267318
+Power : 24.699756314767484 W
+Power-Stack : 568.0943952396522 W
+Power-Thermal : 713.4426047603478 W
+VStack : 12.54071512670314 V
+Vcell : 0.5452484837697017 V
+###########
+I :45.4 A
+
+PEM Efficiency : 0.34925942134559174
+Power : 24.735949257380188 W
+Power-Stack : 568.9268329197444 W
+Power-Thermal : 715.4391670802556 W
+VStack : 12.53142803787983 V
+Vcell : 0.5448446972991231 V
+###########
+I :45.5 A
+
+PEM Efficiency : 0.34900065247658174
+Power : 24.772066312787775 W
+Power-Stack : 569.7575251941188 W
+Power-Thermal : 717.4374748058812 W
+VStack : 12.522143410859753 V
+Vcell : 0.5444410178634675 V
+###########
+I :45.6 A
+
+PEM Efficiency : 0.34874195101663163
+Power : 24.808107427519108 W
+Power-Stack : 570.5864708329394 W
+Power-Thermal : 719.4375291670606 W
+VStack : 12.512861202476742 V
+Vcell : 0.5440374435859453 V
+###########
+I :45.7 A
+
+PEM Efficiency : 0.3484833157655403
+Power : 24.844072547556905 W
+Power-Stack : 571.4136685938088 W
+Power-Thermal : 721.4393314061913 W
+VStack : 12.503581369667588 V
+Vcell : 0.543633972594243 V
+###########
+I :45.8 A
+
+PEM Efficiency : 0.3482247455259161
+Power : 24.879961618335653 W
+Power-Stack : 572.23911722172 W
+Power-Thermal : 723.4428827782798 W
+VStack : 12.49430386946987 V
+Vcell : 0.5432306030204291 V
+###########
+I :45.9 A
+
+PEM Efficiency : 0.3479662391031134
+Power : 24.91577458473933 W
+Power-Stack : 573.0628154490046 W
+Power-Thermal : 725.4481845509953 W
+VStack : 12.48502865901971 V
+Vcell : 0.542827333000857 V
+###########
+I :46.0 A
+
+PEM Efficiency : 0.3477077953051724
+Power : 24.95151139109917 W
+Power-Stack : 573.8847619952809 W
+Power-Thermal : 727.455238004719 W
+VStack : 12.475755695549585 V
+Vcell : 0.5424241606760689 V
+###########
+I :46.1 A
+
+PEM Efficiency : 0.3474494129427579
+Power : 24.987171981191377 W
+Power-Stack : 574.7049555674017 W
+Power-Thermal : 729.4640444325984 W
+VStack : 12.466484936386152 V
+Vcell : 0.5420210841907023 V
+###########
+I :46.2 A
+
+PEM Efficiency : 0.34719109082909844
+Power : 25.02275629823479 W
+Power-Stack : 575.5233948594001 W
+Power-Thermal : 731.4746051405999 W
+VStack : 12.457216338948054 V
+Vcell : 0.5416181016933936 V
+###########
+I :46.3 A
+
+PEM Efficiency : 0.34693282777992684
+Power : 25.05826428488856 W
+Power-Stack : 576.3400785524368 W
+Power-Thermal : 733.4869214475631 W
+VStack : 12.447949860743776 V
+Vcell : 0.5412152113366859 V
+###########
+I :46.4 A
+
+PEM Efficiency : 0.34667462261341925
+Power : 25.093695883249737 W
+Power-Stack : 577.1550053147439 W
+Power-Thermal : 735.5009946852559 W
+VStack : 12.438685459369482 V
+Vcell : 0.540812411276934 V
+###########
+I :46.5 A
+
+PEM Efficiency : 0.34641647415013543
+Power : 25.129051034850825 W
+Power-Stack : 577.9681738015689 W
+Power-Thermal : 737.516826198431 W
+VStack : 12.429423092506859 V
+Vcell : 0.5404096996742113 V
+###########
+I :46.6 A
+
+PEM Efficiency : 0.34615838121296005
+Power : 25.16432968065735 W
+Power-Stack : 578.779582655119 W
+Power-Thermal : 739.5344173448809 W
+VStack : 12.42016271792101 V
+Vcell : 0.5400070746922178 V
+###########
+I :46.7 A
+
+PEM Efficiency : 0.34590034262704317
+Power : 25.19953176106535 W
+Power-Stack : 579.5892305045031 W
+Power-Thermal : 741.553769495497 W
+VStack : 12.410904293458309 V
+Vcell : 0.5396045344981873 V
+###########
+I :46.8 A
+
+PEM Efficiency : 0.34564235721974046
+Power : 25.23465721589881 W
+Power-Stack : 580.3971159656726 W
+Power-Thermal : 743.5748840343273 W
+VStack : 12.401647777044287 V
+Vcell : 0.5392020772627951 V
+###########
+I :46.9 A
+
+PEM Efficiency : 0.3453844238205559
+Power : 25.269705984407153 W
+Power-Stack : 581.2032376413645 W
+Power-Thermal : 745.5977623586354 W
+VStack : 12.392393126681547 V
+Vcell : 0.5387997011600673 V
+###########
+I :47.0 A
+
+PEM Efficiency : 0.3451265412610823
+Power : 25.304678005262552 W
+Power-Stack : 582.0075941210387 W
+Power-Thermal : 747.6224058789612 W
+VStack : 12.383140300447632 V
+Vcell : 0.5383974043672883 V
+###########
+I :47.1 A
+
+PEM Efficiency : 0.3448687083749435
+Power : 25.339573216557348 W
+Power-Stack : 582.810183980819 W
+Power-Thermal : 749.6488160191809 W
+VStack : 12.373889256492973 V
+Vcell : 0.5379951850649118 V
+###########
+I :47.2 A
+
+PEM Efficiency : 0.3446109239977364
+Power : 25.374391555801328 W
+Power-Stack : 583.6110057834305 W
+Power-Thermal : 751.6769942165695 W
+VStack : 12.364639953038782 V
+Vcell : 0.5375930414364688 V
+###########
+I :47.3 A
+
+PEM Efficiency : 0.3443531869669731
+Power : 25.409132959919006 W
+Power-Stack : 584.4100580781371 W
+Power-Thermal : 753.7069419218627 W
+VStack : 12.355392348374993 V
+Vcell : 0.537190971668478 V
+###########
+I :47.4 A
+
+PEM Efficiency : 0.34409549612202334
+Power : 25.443797365246894 W
+Power-Stack : 585.2073394006786 W
+Power-Thermal : 755.7386605993214 W
+VStack : 12.346146400858197 V
+Vcell : 0.5367889739503564 V
+###########
+I :47.5 A
+
+PEM Efficiency : 0.3438378503040572
+Power : 25.478384707530637 W
+Power-Stack : 586.0028482732047 W
+Power-Thermal : 757.7721517267953 W
+VStack : 12.336902068909572 V
+Vcell : 0.5363870464743292 V
+###########
+I :47.6 A
+
+PEM Efficiency : 0.3435802483559883
+Power : 25.512894921922268 W
+Power-Stack : 586.7965832042122 W
+Power-Thermal : 759.8074167957878 W
+VStack : 12.32765931101286 V
+Vcell : 0.5359851874353417 V
+###########
+I :47.7 A
+
+PEM Efficiency : 0.3433226891224159
+Power : 25.547327942977216 W
+Power-Stack : 587.588542688476 W
+Power-Thermal : 761.8444573115241 W
+VStack : 12.318418085712283 V
+Vcell : 0.5355833950309689 V
+###########
+I :47.8 A
+
+PEM Efficiency : 0.3430651714495696
+Power : 25.581683704651503 W
+Power-Stack : 588.3787252069845 W
+Power-Thermal : 763.8832747930153 W
+VStack : 12.309178351610557 V
+Vcell : 0.5351816674613286 V
+###########
+I :47.9 A
+
+PEM Efficiency : 0.3428076941852514
+Power : 25.615962140298727 W
+Power-Stack : 589.1671292268708 W
+Power-Thermal : 765.9238707731292 W
+VStack : 12.29994006736682 V
+Vcell : 0.5347800029289922 V
+###########
+I :48.0 A
+
+PEM Efficiency : 0.3425502561787801
+Power : 25.650163182667058 W
+Power-Stack : 589.9537532013424 W
+Power-Thermal : 767.9662467986577 W
+VStack : 12.29070319169463 V
+Vcell : 0.534378399638897 V
+###########
+I :48.1 A
+
+PEM Efficiency : 0.34229285628093475
+Power : 25.684286763896225 W
+Power-Stack : 590.7385955696132 W
+Power-Thermal : 770.0104044303868 W
+VStack : 12.28146768335994 V
+Vcell : 0.5339768557982583 V
+###########
+I :48.2 A
+
+PEM Efficiency : 0.342035493343899
+Power : 25.718332815514454 W
+Power-Stack : 591.5216547568325 W
+Power-Thermal : 772.0563452431677 W
+VStack : 12.272233501179096 V
+Vcell : 0.5335753696164824 V
+###########
+I :48.3 A
+
+PEM Efficiency : 0.3417781662212043
+Power : 25.7523012684353 W
+Power-Stack : 592.3029291740119 W
+Power-Thermal : 774.104070825988 W
+VStack : 12.26300060401681 V
+Vcell : 0.5331739393050787 V
+###########
+I :48.4 A
+
+PEM Efficiency : 0.341520873767675
+Power : 25.78619205295453 W
+Power-Stack : 593.0824172179542 W
+Power-Thermal : 776.1535827820458 W
+VStack : 12.253768950784178 V
+Vcell : 0.5327725630775729 V
+###########
+I :48.5 A
+
+PEM Efficiency : 0.34126361483937245
+Power : 25.82000509874692 W
+Power-Stack : 593.8601172711791 W
+Power-Thermal : 778.2048827288208 W
+VStack : 12.244538500436683 V
+Vcell : 0.532371239149421 V
+###########
+I :48.6 A
+
+PEM Efficiency : 0.34100638829353913
+Power : 25.853740334862966 W
+Power-Stack : 594.6360277018482 W
+Power-Thermal : 780.2579722981517 W
+VStack : 12.235309211972185 V
+Vcell : 0.5319699657379211 V
+###########
+I :48.7 A
+
+PEM Efficiency : 0.3407491929885442
+Power : 25.887397689725685 W
+Power-Stack : 595.4101468636908 W
+Power-Thermal : 782.3128531363094 W
+VStack : 12.226081044428968 V
+Vcell : 0.531568741062129 V
+###########
+I :48.8 A
+
+PEM Efficiency : 0.34049202778382703
+Power : 25.920977091127188 W
+Power-Stack : 596.1824730959253 W
+Power-Thermal : 784.3695269040745 W
+VStack : 12.216853956883716 V
+Vcell : 0.5311675633427703 V
+###########
+I :48.9 A
+
+PEM Efficiency : 0.34023489153984277
+Power : 25.954478466225364 W
+Power-Stack : 596.9530047231834 W
+Power-Thermal : 786.4279952768164 W
+VStack : 12.207627908449558 V
+Vcell : 0.5307664308021547 V
+###########
+I :49.0 A
+
+PEM Efficiency : 0.33997778311800725
+Power : 25.987901741540476 W
+Power-Stack : 597.7217400554309 W
+Power-Thermal : 788.488259944569 W
+VStack : 12.1984028582741 V
+Vcell : 0.5303653416640913 V
+###########
+I :49.1 A
+
+PEM Efficiency : 0.3397207013806419
+Power : 26.02124684295165 W
+Power-Stack : 598.488677387888 W
+Power-Thermal : 790.5503226121119 W
+VStack : 12.189178765537433 V
+Vcell : 0.5299642941538014 V
+###########
+I :49.2 A
+
+PEM Efficiency : 0.33946364519091926
+Power : 26.054513695693434 W
+Power-Stack : 599.253815000949 W
+Power-Thermal : 792.6141849990511 W
+VStack : 12.179955589450183 V
+Vcell : 0.529563286497834 V
+###########
+I :49.3 A
+
+PEM Efficiency : 0.3392066134128074
+Power : 26.08770222435219 W
+Power-Stack : 600.0171511601003 W
+Power-Thermal : 794.6798488398995 W
+VStack : 12.17073328925153 V
+Vcell : 0.5291623169239795 V
+###########
+I :49.4 A
+
+PEM Efficiency : 0.3389496049110159
+Power : 26.120812352862526 W
+Power-Stack : 600.7786841158381 W
+Power-Thermal : 796.7473158841618 W
+VStack : 12.161511824207249 V
+Vcell : 0.5287613836611847 V
+###########
+I :49.5 A
+
+PEM Efficiency : 0.3386926185509412
+Power : 26.153844004503682 W
+Power-Stack : 601.5384121035847 W
+Power-Thermal : 798.8165878964153 W
+VStack : 12.15229115360777 V
+Vcell : 0.5283604849394683 V
+###########
+I :49.6 A
+
+PEM Efficiency : 0.338435653198612
+Power : 26.186797101895806 W
+Power-Stack : 602.2963333436036 W
+Power-Thermal : 800.8876666563964 W
+VStack : 12.1430712367662 V
+Vcell : 0.5279596189898348 V
+###########
+I :49.7 A
+
+PEM Efficiency : 0.3381787077206344
+Power : 26.219671566996233 W
+Power-Stack : 603.0524460409133 W
+Power-Thermal : 802.9605539590867 W
+VStack : 12.133852033016364 V
+Vcell : 0.5275587840441898 V
+###########
+I :49.8 A
+
+PEM Efficiency : 0.3379217809841379
+Power : 26.252467321095704 W
+Power-Stack : 603.8067483852012 W
+Power-Thermal : 805.0352516147987 W
+VStack : 12.124633501710868 V
+Vcell : 0.5271579783352551 V
+###########
+I :49.9 A
+
+PEM Efficiency : 0.33766487185672067
+Power : 26.28518428481456 W
+Power-Stack : 604.5592385507349 W
+Power-Thermal : 807.111761449265 W
+VStack : 12.115415602219137 V
+Vcell : 0.5267572000964842 V
+###########
+I :50.0 A
+
+PEM Efficiency : 0.33740797920639554
+Power : 26.317822378098853 W
+Power-Stack : 605.3099146962736 W
+Power-Thermal : 809.1900853037263 W
+VStack : 12.106198293925473 V
+Vcell : 0.5263564475619771 V
+###########
+I :50.1 A
+
+PEM Efficiency : 0.33715110190153535
+Power : 26.3503815202164 W
+Power-Stack : 606.0587749649771 W
+Power-Thermal : 811.2702250350227 W
+VStack : 12.096981536227089 V
+Vcell : 0.5259557189663951 V
+###########
+I :50.2 A
+
+PEM Efficiency : 0.3368942388108187
+Power : 26.38286162975284 W
+Power-Stack : 606.8058174843153 W
+Power-Thermal : 813.3521825156848 W
+VStack : 12.087765288532177 V
+Vcell : 0.5255550125448772 V
+###########
+I :50.3 A
+
+PEM Efficiency : 0.33663738880317623
+Power : 26.41526262460763 W
+Power-Stack : 607.5510403659755 W
+Power-Thermal : 815.4359596340242 W
+VStack : 12.078549510257963 V
+Vcell : 0.5251543265329549 V
+###########
+I :50.4 A
+
+PEM Efficiency : 0.33638055074773526
+Power : 26.447584421989937 W
+Power-Stack : 608.2944417057686 W
+Power-Thermal : 817.5215582942316 W
+VStack : 12.06933416082874 V
+Vcell : 0.524753659166467 V
+###########
+I :50.5 A
+
+PEM Efficiency : 0.3361237235137664
+Power : 26.47982693841452 W
+Power-Stack : 609.036019583534 W
+Power-Thermal : 819.6089804164661 W
+VStack : 12.060119199673938 V
+Vcell : 0.5243530086814756 V
+###########
+I :50.6 A
+
+PEM Efficiency : 0.3358669059706292
+Power : 26.511990089697587 W
+Power-Stack : 609.7757720630445 W
+Power-Thermal : 821.6982279369555 W
+VStack : 12.050904586226176 V
+Vcell : 0.5239523733141815 V
+###########
+I :50.7 A
+
+PEM Efficiency : 0.3356100969877174
+Power : 26.54407379095254 W
+Power-Stack : 610.5136971919085 W
+Power-Thermal : 823.7893028080914 W
+VStack : 12.0416902799193 V
+Vcell : 0.5235517513008391 V
+###########
+I :50.8 A
+
+PEM Efficiency : 0.3353532954344051
+Power : 26.576077956585735 W
+Power-Stack : 611.2497930014719 W
+Power-Thermal : 825.882206998528 W
+VStack : 12.032476240186456 V
+Vcell : 0.523151140877672 V
+###########
+I :50.9 A
+
+PEM Efficiency : 0.3350965001799926
+Power : 26.608002500292134 W
+Power-Stack : 611.9840575067191 W
+Power-Thermal : 827.9769424932808 W
+VStack : 12.023262426458135 V
+Vcell : 0.5227505402807885 V
+###########
+I :51.0 A
+
+PEM Efficiency : 0.33483971009365116
+Power : 26.63984733505089 W
+Power-Stack : 612.7164887061705 W
+Power-Thermal : 830.0735112938296 W
+VStack : 12.014048798160205 V
+Vcell : 0.5223499477460959 V
+###########
+I :51.1 A
+
+PEM Efficiency : 0.33458292404436996
+Power : 26.671612373120997 W
+Power-Stack : 613.447084581783 W
+Power-Thermal : 832.1719154182172 W
+VStack : 12.004835314711993 V
+Vcell : 0.5219493615092171 V
+###########
+I :51.2 A
+
+PEM Efficiency : 0.3343261409009005
+Power : 26.703297526036728 W
+Power-Stack : 614.1758430988448 W
+Power-Thermal : 834.2721569011552 W
+VStack : 11.99562193552431 V
+Vcell : 0.5215487798054048 V
+###########
+I :51.3 A
+
+PEM Efficiency : 0.3340693595317029
+Power : 26.73490270460312 W
+Power-Stack : 614.9027622058717 W
+Power-Thermal : 836.3742377941281 W
+VStack : 11.986408619997501 V
+Vcell : 0.5211482008694566 V
+###########
+I :51.4 A
+
+PEM Efficiency : 0.3338125788048912
+Power : 26.766427818891394 W
+Power-Stack : 615.6278398345021 W
+Power-Thermal : 838.4781601654978 W
+VStack : 11.977195327519496 V
+Vcell : 0.5207476229356303 V
+###########
+I :51.5 A
+
+PEM Efficiency : 0.3335557975881785
+Power : 26.797872778234265 W
+Power-Stack : 616.3510738993881 W
+Power-Thermal : 840.5839261006118 W
+VStack : 11.967982017463846 V
+Vcell : 0.5203470442375585 V
+###########
+I :51.6 A
+
+PEM Efficiency : 0.3332990147488232
+Power : 26.82923749122127 W
+Power-Stack : 617.0724622980892 W
+Power-Thermal : 842.6915377019108 W
+VStack : 11.958768649187776 V
+Vcell : 0.5199464630081642 V
+###########
+I :51.7 A
+
+PEM Efficiency : 0.33304222915357284
+Power : 26.860521865693958 W
+Power-Stack : 617.7920029109611 W
+Power-Thermal : 844.8009970890391 W
+VStack : 11.949555182030192 V
+Vcell : 0.5195458774795736 V
+###########
+I :51.8 A
+
+PEM Efficiency : 0.332785439668611
+Power : 26.891725808741118 W
+Power-Stack : 618.5096936010457 W
+Power-Thermal : 846.912306398954 W
+VStack : 11.940341575309764 V
+Vcell : 0.5191452858830332 V
+###########
+I :51.9 A
+
+PEM Efficiency : 0.3325286451595015
+Power : 26.922849226693877 W
+Power-Stack : 619.2255322139591 W
+Power-Thermal : 849.0254677860408 W
+VStack : 11.931127788322913 V
+Vcell : 0.5187446864488223 V
+###########
+I :52.0 A
+
+PEM Efficiency : 0.3322718444911331
+Power : 26.953892025120716 W
+Power-Stack : 619.9395165777764 W
+Power-Thermal : 851.1404834222236 W
+VStack : 11.921913780341855 V
+Vcell : 0.5183440774061676 V
+###########
+I :52.1 A
+
+PEM Efficiency : 0.3320150365276655
+Power : 26.984854108822546 W
+Power-Stack : 620.6516445029185 W
+Power-Thermal : 853.2573554970814 W
+VStack : 11.91269951061264 V
+Vcell : 0.5179434569831582 V
+###########
+I :52.2 A
+
+PEM Efficiency : 0.3317582201324735
+Power : 27.015735381827586 W
+Power-Stack : 621.3619137820344 W
+Power-Thermal : 855.3760862179655 W
+VStack : 11.90348493835315 V
+Vcell : 0.5175428234066587 V
+###########
+I :52.3 A
+
+PEM Efficiency : 0.3315013941680917
+Power : 27.04653574738626 W
+Power-Stack : 622.070322189884 W
+Power-Thermal : 857.4966778101158 W
+VStack : 11.89427002275113 V
+Vcell : 0.517142174902223 V
+###########
+I :52.4 A
+
+PEM Efficiency : 0.33124455749615933
+Power : 27.07725510796605 W
+Power-Stack : 622.7768674832191 W
+Power-Thermal : 859.619132516781 W
+VStack : 11.885054722962197 V
+Vcell : 0.5167415096940086 V
+###########
+I :52.5 A
+
+PEM Efficiency : 0.3309877089773648
+Power : 27.107893365246177 W
+Power-Stack : 623.4815474006621 W
+Power-Thermal : 861.7434525993378 W
+VStack : 11.875838998107849 V
+Vcell : 0.5163408260046891 V
+###########
+I :52.6 A
+
+PEM Efficiency : 0.33073084747139
+Power : 27.138450420112374 W
+Power-Stack : 624.1843596625846 W
+Power-Thermal : 863.8696403374154 W
+VStack : 11.86662280727347 V
+Vcell : 0.5159401220553683 V
+###########
+I :52.7 A
+
+PEM Efficiency : 0.33047397183685423
+Power : 27.16892617265146 W
+Power-Stack : 624.8853019709836 W
+Power-Thermal : 865.9976980290165 W
+VStack : 11.85740610950633 V
+Vcell : 0.5155393960654926 V
+###########
+I :52.8 A
+
+PEM Efficiency : 0.33021708093125857
+Power : 27.199320522145907 W
+Power-Stack : 625.5843720093559 W
+Power-Thermal : 868.1276279906441 W
+VStack : 11.848188863813558 V
+Vcell : 0.5151386462527634 V
+###########
+I :52.9 A
+
+PEM Efficiency : 0.32996017361093005
+Power : 27.22963336706839 W
+Power-Stack : 626.281567442573 W
+Power-Thermal : 870.259432557427 W
+VStack : 11.83897102916017 V
+Vcell : 0.5147378708330509 V
+###########
+I :53.0 A
+
+PEM Efficiency : 0.32970324873096474
+Power : 27.259864605076164 W
+Power-Stack : 626.9768859167517 W
+Power-Thermal : 872.3931140832482 W
+VStack : 11.829752564467015 V
+Vcell : 0.514337068020305 V
+###########
+I :53.1 A
+
+PEM Efficiency : 0.3294463051451714
+Power : 27.29001413300542 W
+Power-Stack : 627.6703250591247 W
+Power-Thermal : 874.5286749408752 W
+VStack : 11.820533428608751 V
+Vcell : 0.5139362360264674 V
+###########
+I :53.2 A
+
+PEM Efficiency : 0.32918934170601605
+Power : 27.320081846865687 W
+Power-Stack : 628.3618824779109 W
+Power-Thermal : 876.6661175220893 W
+VStack : 11.811313580411857 V
+Vcell : 0.5135353730613851 V
+###########
+I :53.3 A
+
+PEM Efficiency : 0.32893235726456366
+Power : 27.350067641833938 W
+Power-Stack : 629.0515557621806 W
+Power-Thermal : 878.8054442378192 W
+VStack : 11.802092978652544 V
+Vcell : 0.5131344773327193 V
+###########
+I :53.4 A
+
+PEM Efficiency : 0.328675350670422
+Power : 27.379971412248832 W
+Power-Stack : 629.7393424817232 W
+Power-Thermal : 880.9466575182768 W
+VStack : 11.79287158205474 V
+Vcell : 0.5127335470458583 V
+###########
+I :53.5 A
+
+PEM Efficiency : 0.32841832077168426
+Power : 27.40979305160477 W
+Power-Stack : 630.4252401869097 W
+Power-Thermal : 883.0897598130902 W
+VStack : 11.783649349288032 V
+Vcell : 0.5123325804038275 V
+###########
+I :53.6 A
+
+PEM Efficiency : 0.3281612664148721
+Power : 27.439532452545947 W
+Power-Stack : 631.1092464085568 W
+Power-Thermal : 885.2347535914433 W
+VStack : 11.774426238965612 V
+Vcell : 0.5119315756072005 V
+###########
+I :53.7 A
+
+PEM Efficiency : 0.32790418644487757
+Power : 27.469189506860285 W
+Power-Stack : 631.7913586577865 W
+Power-Thermal : 887.3816413422135 W
+VStack : 11.765202209642208 V
+Vcell : 0.511530530854009 V
+###########
+I :53.8 A
+
+PEM Efficiency : 0.3276470797049056
+Power : 27.498764105473313 W
+Power-Stack : 632.4715744258862 W
+Power-Thermal : 889.5304255741138 W
+VStack : 11.755977219812012 V
+Vcell : 0.5111294443396527 V
+###########
+I :53.9 A
+
+PEM Efficiency : 0.3273899450364157
+Power : 27.52825613844198 W
+Power-Stack : 633.1498911841655 W
+Power-Thermal : 891.6811088158344 W
+VStack : 11.746751227906596 V
+Vcell : 0.5107283142568085 V
+###########
+I :54.0 A
+
+PEM Efficiency : 0.32713278127906437
+Power : 27.55766549494838 W
+Power-Stack : 633.8263063838127 W
+Power-Thermal : 893.833693616187 W
+VStack : 11.73752419229283 V
+Vcell : 0.5103271387953404 V
+###########
+I :54.1 A
+
+PEM Efficiency : 0.32687558727064575
+Power : 27.58699206329342 W
+Power-Stack : 634.5008174557487 W
+Power-Thermal : 895.9881825442513 W
+VStack : 11.72829607127077 V
+Vcell : 0.5099259161422074 V
+###########
+I :54.2 A
+
+PEM Efficiency : 0.32661836184703363
+Power : 27.616235730890388 W
+Power-Stack : 635.1734218104789 W
+Power-Thermal : 898.1445781895212 W
+VStack : 11.719066823071566 V
+Vcell : 0.5095246444813725 V
+###########
+I :54.3 A
+
+PEM Efficiency : 0.32636110384212225
+Power : 27.64539638425849 W
+Power-Stack : 635.8441168379453 W
+Power-Thermal : 900.3028831620546 W
+VStack : 11.709836405855345 V
+Vcell : 0.5091233219937107 V
+###########
+I :54.4 A
+
+PEM Efficiency : 0.3261038120877665
+Power : 27.674473909016214 W
+Power-Stack : 636.5128999073729 W
+Power-Thermal : 902.4631000926271 W
+VStack : 11.700604777709062 V
+Vcell : 0.5087219468569157 V
+###########
+I :54.5 A
+
+PEM Efficiency : 0.3258464854137234
+Power : 27.703468189874762 W
+Power-Stack : 637.1797683671196 W
+Power-Thermal : 904.6252316328803 W
+VStack : 11.691371896644396 V
+Vcell : 0.5083205172454085 V
+###########
+I :54.6 A
+
+PEM Efficiency : 0.3255891226475915
+Power : 27.732379110631253 W
+Power-Stack : 637.8447195445189 W
+Power-Thermal : 906.789280455481 W
+VStack : 11.682137720595582 V
+Vcell : 0.5079190313302427 V
+###########
+I :54.7 A
+
+PEM Efficiency : 0.3253317226147513
+Power : 27.76120655416196 W
+Power-Stack : 638.507750745725 W
+Power-Thermal : 908.9552492542749 W
+VStack : 11.672902207417277 V
+Vcell : 0.507517487279012 V
+###########
+I :54.8 A
+
+PEM Efficiency : 0.3250742841383046
+Power : 27.789950402415382 W
+Power-Stack : 639.1688592555538 W
+Power-Thermal : 911.1231407444461 W
+VStack : 11.663665314882369 V
+Vcell : 0.5071158832557552 V
+###########
+I :54.9 A
+
+PEM Efficiency : 0.32481680603901364
+Power : 27.818610536405284 W
+Power-Stack : 639.8280423373216 W
+Power-Thermal : 913.2929576626783 W
+VStack : 11.65442700067981 V
+Vcell : 0.5067142174208613 V
+###########
+I :55.0 A
+
+PEM Efficiency : 0.32455928713524074
+Power : 27.847186836203658 W
+Power-Stack : 640.4852972326842 W
+Power-Thermal : 915.4647027673159 W
+VStack : 11.645187222412439 V
+Vcell : 0.5063124879309756 V
+###########
+I :55.1 A
+
+PEM Efficiency : 0.32430172624288656
+Power : 27.875679180933556 W
+Power-Stack : 641.1406211614718 W
+Power-Thermal : 917.6383788385282 W
+VStack : 11.63594593759477 V
+Vcell : 0.505910692938903 V
+###########
+I :55.2 A
+
+PEM Efficiency : 0.324044122175328
+Power : 27.904087448761846 W
+Power-Stack : 641.7940113215225 W
+Power-Thermal : 919.8139886784776 W
+VStack : 11.626703103650769 V
+Vcell : 0.5055088305935117 V
+###########
+I :55.3 A
+
+PEM Efficiency : 0.3237864737433577
+Power : 27.93241151689198 W
+Power-Stack : 642.4454648885156 W
+Power-Thermal : 921.9915351114843 W
+VStack : 11.617458677911674 V
+Vcell : 0.505106899039638 V
+###########
+I :55.4 A
+
+PEM Efficiency : 0.3235287797551201
+Power : 27.960651261556503 W
+Power-Stack : 643.0949790157996 W
+Power-Thermal : 924.1710209842004 W
+VStack : 11.608212617613711 V
+Vcell : 0.5047048964179874 V
+###########
+I :55.5 A
+
+PEM Efficiency : 0.32327103901604953
+Power : 27.98880655800957 W
+Power-Stack : 643.7425508342201 W
+Power-Thermal : 926.3524491657797 W
+VStack : 11.598964879895858 V
+Vcell : 0.5043028208650373 V
+###########
+I :55.6 A
+
+PEM Efficiency : 0.32301325032880746
+Power : 28.016877280519445 W
+Power-Stack : 644.3881774519473 W
+Power-Thermal : 928.5358225480527 W
+VStack : 11.589715421797612 V
+Vcell : 0.5039006705129396 V
+###########
+I :55.7 A
+
+PEM Efficiency : 0.3227554124932185
+Power : 28.044863302360742 W
+Power-Stack : 645.031855954297 W
+Power-Thermal : 930.721144045703 W
+VStack : 11.58046420025668 V
+Vcell : 0.5034984434894209 V
+###########
+I :55.8 A
+
+PEM Efficiency : 0.32249752430620704
+Power : 28.072764495806712 W
+Power-Stack : 645.6735834035544 W
+Power-Thermal : 932.9084165964456 W
+VStack : 11.57121117210671 V
+Vcell : 0.503096137917683 V
+###########
+I :55.9 A
+
+PEM Efficiency : 0.3222395845617331
+Power : 28.100580732121372 W
+Power-Stack : 646.3133568387916 W
+Power-Thermal : 935.0976431612085 W
+VStack : 11.561956294074983 V
+Vcell : 0.5026937519163036 V
+###########
+I :56.0 A
+
+PEM Efficiency : 0.3219815920507272
+Power : 28.12831188155153 W
+Power-Stack : 646.9511732756852 W
+Power-Thermal : 937.2888267243148 W
+VStack : 11.552699522780092 V
+Vcell : 0.5022912835991344 V
+###########
+I :56.1 A
+
+PEM Efficiency : 0.32172354556102645
+Power : 28.155957813318793 W
+Power-Stack : 647.5870297063323 W
+Power-Thermal : 939.4819702936678 W
+VStack : 11.54344081472963 V
+Vcell : 0.5018887310752013 V
+###########
+I :56.2 A
+
+PEM Efficiency : 0.321465443877308
+Power : 28.18351839561135 W
+Power-Stack : 648.2209230990611 W
+Power-Thermal : 941.6770769009388 W
+VStack : 11.534180126317812 V
+Vcell : 0.5014860924486005 V
+###########
+I :56.3 A
+
+PEM Efficiency : 0.3212072857810246
+Power : 28.210993495575828 W
+Power-Stack : 648.8528503982441 W
+Power-Thermal : 943.8741496017559 W
+VStack : 11.524917413823163 V
+Vcell : 0.5010833658183984 V
+###########
+I :56.4 A
+
+PEM Efficiency : 0.3209490700503369
+Power : 28.23838297930884 W
+Power-Stack : 649.4828085241033 W
+Power-Thermal : 946.0731914758966 W
+VStack : 11.515652633406088 V
+Vcell : 0.5006805492785256 V
+###########
+I :56.5 A
+
+PEM Efficiency : 0.32069079546004764
+Power : 28.265686711848602 W
+Power-Stack : 650.1107943725178 W
+Power-Thermal : 948.2742056274822 W
+VStack : 11.50638574110651 V
+Vcell : 0.5002776409176743 V
+###########
+I :56.6 A
+
+PEM Efficiency : 0.3204324607815349
+Power : 28.292904557166413 W
+Power-Stack : 650.7368048148275 W
+Power-Thermal : 950.4771951851726 W
+VStack : 11.497116692841475 V
+Vcell : 0.49987463881919453 V
+###########
+I :56.7 A
+
+PEM Efficiency : 0.3201740647826836
+Power : 28.320036378157937 W
+Power-Stack : 651.3608366976325 W
+Power-Thermal : 952.6821633023676 W
+VStack : 11.487845444402689 V
+Vcell : 0.4994715410609865 V
+###########
+I :56.8 A
+
+PEM Efficiency : 0.3199156062278178
+Power : 28.34708203663448 W
+Power-Stack : 651.982886842593 W
+Power-Thermal : 954.889113157407 W
+VStack : 11.478571951454102 V
+Vcell : 0.49906834571539577 V
+###########
+I :56.9 A
+
+PEM Efficiency : 0.31965708387763264
+Power : 28.374041393314183 W
+Power-Stack : 652.6029520462262 W
+Power-Thermal : 957.0980479537736 W
+VStack : 11.46929616952946 V
+Vcell : 0.49866505084910695 V
+###########
+I :57.0 A
+
+PEM Efficiency : 0.31939849648912455
+Power : 28.400914307812958 W
+Power-Stack : 653.221029079698 W
+Power-Thermal : 959.308970920302 W
+VStack : 11.46001805402979 V
+Vcell : 0.49826165452303434 V
+###########
+I :57.1 A
+
+PEM Efficiency : 0.3191398428155224
+Power : 28.42770063863547 W
+Power-Stack : 653.8371146886159 W
+Power-Thermal : 961.5218853113842 W
+VStack : 11.450737560220944 V
+Vcell : 0.4978581547922149 V
+###########
+I :57.2 A
+
+PEM Efficiency : 0.31888112160621707
+Power : 28.454400243165967 W
+Power-Stack : 654.4512055928172 W
+Power-Thermal : 963.7367944071829 W
+VStack : 11.44145464323107 V
+Vcell : 0.4974545497056987 V
+###########
+I :57.3 A
+
+PEM Efficiency : 0.31862233160669107
+Power : 28.481012977658903 W
+Power-Stack : 655.0632984861547 W
+Power-Thermal : 965.9537015138451 W
+VStack : 11.432169258048077 V
+Vcell : 0.4970508373064381 V
+###########
+I :57.4 A
+
+PEM Efficiency : 0.3183634715584476
+Power : 28.50753869722963 W
+Power-Stack : 655.6733900362815 W
+Power-Thermal : 968.1726099637184 W
+VStack : 11.422881359517099 V
+Vcell : 0.49664701563117825 V
+###########
+I :57.5 A
+
+PEM Efficiency : 0.31810454019893825
+Power : 28.53397725584476 W
+Power-Stack : 656.2814768844295 W
+Power-Thermal : 970.3935231155704 W
+VStack : 11.413590902337905 V
+Vcell : 0.4962430827103437 V
+###########
+I :57.6 A
+
+PEM Efficiency : 0.31784553626149176
+Power : 28.560328506312604 W
+Power-Stack : 656.8875556451899 W
+Power-Thermal : 972.6164443548101 W
+VStack : 11.404297841062325 V
+Vcell : 0.49583903656792716 V
+###########
+I :57.7 A
+
+PEM Efficiency : 0.31758645847524064
+Power : 28.586592300273363 W
+Power-Stack : 657.4916229062874 W
+Power-Thermal : 974.8413770937127 W
+VStack : 11.395002130091635 V
+Vcell : 0.4954348752213754 V
+###########
+I :57.8 A
+
+PEM Efficiency : 0.31732730556504835
+Power : 28.61276848818928 W
+Power-Stack : 658.0936752283534 W
+Power-Thermal : 977.0683247716465 W
+VStack : 11.385703723673934 V
+Vcell : 0.4950305966814754 V
+###########
+I :57.9 A
+
+PEM Efficiency : 0.3170680762514345
+Power : 28.63885691933457 W
+Power-Stack : 658.6937091446952 W
+Power-Thermal : 979.2972908553046 W
+VStack : 11.376402575901471 V
+Vcell : 0.49462619895223786 V
+###########
+I :58.0 A
+
+PEM Efficiency : 0.31680876925050155
+Power : 28.664857441785383 W
+Power-Stack : 659.2917211610638 W
+Power-Thermal : 981.5282788389361 W
+VStack : 11.367098640707997 V
+Vcell : 0.4942216800307825 V
+###########
+I :58.1 A
+
+PEM Efficiency : 0.3165493832738588
+Power : 28.690769902409464 W
+Power-Stack : 659.8877077554176 W
+Power-Thermal : 983.7612922445821 W
+VStack : 11.357791871866054 V
+Vcell : 0.4938170379072197 V
+###########
+I :58.2 A
+
+PEM Efficiency : 0.3162899170285469
+Power : 28.716594146855833 W
+Power-Stack : 660.4816653776842 W
+Power-Thermal : 985.9963346223159 W
+VStack : 11.348482222984263 V
+Vcell : 0.4934122705645332 V
+###########
+I :58.3 A
+
+PEM Efficiency : 0.316030369216962
+Power : 28.74233001954426 W
+Power-Stack : 661.073590449518 W
+Power-Thermal : 988.2334095504818 W
+VStack : 11.339169647504598 V
+Vcell : 0.4930073759784607 V
+###########
+I :58.4 A
+
+PEM Efficiency : 0.3157707385367775
+Power : 28.767977363654577 W
+Power-Stack : 661.6634793640553 W
+Power-Thermal : 990.4725206359446 W
+VStack : 11.329854098699577 V
+Vcell : 0.4926023521173729 V
+###########
+I :58.5 A
+
+PEM Efficiency : 0.3155110236808679
+Power : 28.793536021116008 W
+Power-Stack : 662.2513284856682 W
+Power-Thermal : 992.7136715143317 W
+VStack : 11.320535529669542 V
+Vcell : 0.49219719694215397 V
+###########
+I :58.6 A
+
+PEM Efficiency : 0.3152512233372294
+Power : 28.81900583259616 W
+Power-Stack : 662.8371341497117 W
+Power-Thermal : 994.9568658502883 W
+VStack : 11.31121389333979 V
+Vcell : 0.49179190840607784 V
+###########
+I :58.7 A
+
+PEM Efficiency : 0.3149913361889012
+Power : 28.844386637490064 W
+Power-Stack : 663.4208926622715 W
+Power-Thermal : 997.2021073377286 W
+VStack : 11.301889142457776 V
+Vcell : 0.4913864844546859 V
+###########
+I :58.8 A
+
+PEM Efficiency : 0.31473136091388604
+Power : 28.869678273908935 W
+Power-Stack : 664.0026002999055 W
+Power-Thermal : 999.4493997000943 W
+VStack : 11.29256122959023 V
+Vcell : 0.4909809230256622 V
+###########
+I :58.9 A
+
+PEM Efficiency : 0.314471296185069
+Power : 28.894880578668886 W
+Power-Stack : 664.5822533093843 W
+Power-Thermal : 1001.6987466906155 W
+VStack : 11.283230107120279 V
+Vcell : 0.49057522204870774 V
+###########
+I :59.0 A
+
+PEM Efficiency : 0.3142111406701378
+Power : 28.919993387279483 W
+Power-Stack : 665.1598479074281 W
+Power-Thermal : 1003.9501520925719 W
+VStack : 11.273895727244543 V
+Vcell : 0.49016937944541494 V
+###########
+I :59.1 A
+
+PEM Efficiency : 0.31395089303149903
+Power : 28.945016533932087 W
+Power-Stack : 665.735380280438 W
+Power-Thermal : 1006.203619719562 W
+VStack : 11.264558041970187 V
+Vcell : 0.4897633931291385 V
+###########
+I :59.2 A
+
+PEM Efficiency : 0.3136905519261972
+Power : 28.96994985148817 W
+Power-Stack : 666.3088465842279 W
+Power-Thermal : 1008.459153415772 W
+VStack : 11.255217003111957 V
+Vcell : 0.4893572610048677 V
+###########
+I :59.3 A
+
+PEM Efficiency : 0.3134301160058306
+Power : 28.99479317146738 W
+Power-Stack : 666.8802429437497 W
+Power-Thermal : 1010.7167570562503 W
+VStack : 11.245872562289202 V
+Vcell : 0.4889509809690958 V
+###########
+I :59.4 A
+
+PEM Efficiency : 0.31316958391646676
+Power : 29.019546324035478 W
+Power-Stack : 667.4495654528159 W
+Power-Thermal : 1012.9764345471841 W
+VStack : 11.236524670922828 V
+Vcell : 0.4885445509096882 V
+###########
+I :59.5 A
+
+PEM Efficiency : 0.3129089542985585
+Power : 29.0442091379922 W
+Power-Stack : 668.0168101738207 W
+Power-Thermal : 1015.2381898261793 W
+VStack : 11.227173280232279 V
+Vcell : 0.48813796870575127 V
+###########
+I :59.6 A
+
+PEM Efficiency : 0.31264822578685736
+Power : 29.068781440758855 W
+Power-Stack : 668.5819731374537 W
+Power-Thermal : 1017.5020268625462 W
+VStack : 11.217818341232443 V
+Vcell : 0.48773123222749754 V
+###########
+I :59.7 A
+
+PEM Efficiency : 0.31238739701032725
+Power : 29.093263058365803 W
+Power-Stack : 669.1450503424135 W
+Power-Thermal : 1019.7679496575864 W
+VStack : 11.208459804730543 V
+Vcell : 0.4873243393361106 V
+###########
+I :59.8 A
+
+PEM Efficiency : 0.3121264665920575
+Power : 29.11765381543986 W
+Power-Stack : 669.7060377551168 W
+Power-Thermal : 1022.0359622448831 W
+VStack : 11.199097621323023 V
+Vcell : 0.4869172878836097 V
+###########
+I :59.9 A
+
+PEM Efficiency : 0.31186543314917364
+Power : 29.141953535191384 W
+Power-Stack : 670.2649313094018 W
+Power-Thermal : 1024.306068690598 W
+VStack : 11.189731741392352 V
+Vcell : 0.48651007571271093 V
+###########
+I :60.0 A
+
+PEM Efficiency : 0.3116042952927491
+Power : 29.16616203940131 W
+Power-Stack : 670.8217269062302 W
+Power-Thermal : 1026.5782730937697 W
+VStack : 11.180362115103836 V
+Vcell : 0.48610270065668854 V
+###########
+I :60.1 A
+
+PEM Efficiency : 0.3113430516277152
+Power : 29.190279148408063 W
+Power-Stack : 671.3764204133854 W
+Power-Thermal : 1028.8525795866144 W
+VStack : 11.170988692402421 V
+Vcell : 0.48569516053923567 V
+###########
+I :60.2 A
+
+PEM Efficiency : 0.3110817007527694
+Power : 29.214304681094088 W
+Power-Stack : 671.929007665164 W
+Power-Thermal : 1031.128992334836 W
+VStack : 11.161611423009369 V
+Vcell : 0.48528745317432037 V
+###########
+I :60.3 A
+
+PEM Efficiency : 0.31082024126028496
+Power : 29.238238454872487 W
+Power-Stack : 672.4794844620671 W
+Power-Thermal : 1033.4075155379328 W
+VStack : 11.152230256419024 V
+Vcell : 0.48487957636604456 V
+###########
+I :60.4 A
+
+PEM Efficiency : 0.31055867173621665
+Power : 29.262080285673278 W
+Power-Stack : 673.0278465704854 W
+Power-Thermal : 1035.6881534295144 W
+VStack : 11.142845141895455 V
+Vcell : 0.484471527908498 V
+###########
+I :60.5 A
+
+PEM Efficiency : 0.31029699076000816
+Power : 29.285829987929574 W
+Power-Stack : 673.5740897223802 W
+Power-Thermal : 1037.9709102776196 W
+VStack : 11.133456028469094 V
+Vcell : 0.4840633055856128 V
+###########
+I :60.6 A
+
+PEM Efficiency : 0.31003519690449705
+Power : 29.30948737456354 W
+Power-Stack : 674.1182096149614 W
+Power-Thermal : 1040.2557903850386 W
+VStack : 11.124062864933355 V
+Vcell : 0.48365490717101545 V
+###########
+I :60.7 A
+
+PEM Efficiency : 0.30977328873581916
+Power : 29.333052256972195 W
+Power-Stack : 674.6602019103605 W
+Power-Thermal : 1042.5427980896395 W
+VStack : 11.114665599841192 V
+Vcell : 0.48324633042787796 V
+###########
+I :60.8 A
+
+PEM Efficiency : 0.30951126481331204
+Power : 29.35652444501302 W
+Power-Stack : 675.2000622352995 W
+Power-Thermal : 1044.8319377647003 W
+VStack : 11.105264181501637 V
+Vcell : 0.4828375731087668 V
+###########
+I :60.9 A
+
+PEM Efficiency : 0.30924912368941737
+Power : 29.37990374698941 W
+Power-Stack : 675.7377861807564 W
+Power-Thermal : 1047.1232138192436 W
+VStack : 11.095858557976296 V
+Vcell : 0.48242863295549115 V
+###########
+I :61.0 A
+
+PEM Efficiency : 0.3089868639095824
+Power : 29.40318996963586 W
+Power-Stack : 676.2733693016248 W
+Power-Thermal : 1049.4166306983752 W
+VStack : 11.086448677075817 V
+Vcell : 0.4820195076989485 V
+###########
+I :61.1 A
+
+PEM Efficiency : 0.3087244840121599
+Power : 29.426382918103034 W
+Power-Stack : 676.8068071163698 W
+Power-Thermal : 1051.7121928836302 W
+VStack : 11.077034486356297 V
+Vcell : 0.48161019505896946 V
+###########
+I :61.2 A
+
+PEM Efficiency : 0.3084619825283078
+Power : 29.449482395942606 W
+Power-Stack : 677.3380951066799 W
+Power-Thermal : 1054.0099048933203 W
+VStack : 11.067615933115684 V
+Vcell : 0.4812006927441602 V
+###########
+I :61.3 A
+
+PEM Efficiency : 0.3081993579818873
+Power : 29.47248820509192 W
+Power-Stack : 677.8672287171141 W
+Power-Thermal : 1056.3097712828858 W
+VStack : 11.058192964390116 V
+Vcell : 0.4807909984517442 V
+###########
+I :61.4 A
+
+PEM Efficiency : 0.3079366088893597
+Power : 29.49540014585843 W
+Power-Stack : 678.3942033547439 W
+Power-Thermal : 1058.611796645256 W
+VStack : 11.048765526950225 V
+Vcell : 0.4803811098674011 V
+###########
+I :61.5 A
+
+PEM Efficiency : 0.3076737337596824
+Power : 29.518218016903926 W
+Power-Stack : 678.9190143887903 W
+Power-Thermal : 1060.9159856112096 W
+VStack : 11.039333567297403 V
+Vcell : 0.4799710246651045 V
+###########
+I :61.6 A
+
+PEM Efficiency : 0.3074107310942037
+Power : 29.5409416152286 W
+Power-Stack : 679.4416571502578 W
+Power-Thermal : 1063.2223428497423 W
+VStack : 11.02989703166003 V
+Vcell : 0.4795607405069578 V
+###########
+I :61.7 A
+
+PEM Efficiency : 0.3071475993865566
+Power : 29.56357073615485 W
+Power-Stack : 679.9621269315616 W
+Power-Thermal : 1065.5308730684383 W
+VStack : 11.020455865989653 V
+Vcell : 0.4791502550430284 V
+###########
+I :61.8 A
+
+PEM Efficiency : 0.30688433712255103
+Power : 29.586105173310898 W
+Power-Stack : 680.4804189861507 W
+Power-Thermal : 1067.841581013849 W
+VStack : 11.011010015957131 V
+Vcell : 0.4787395659111796 V
+###########
+I :61.9 A
+
+PEM Efficiency : 0.30662094278006496
+Power : 29.608544718614194 W
+Power-Stack : 680.9965285281264 W
+Power-Thermal : 1070.1544714718734 W
+VStack : 11.001559426948733 V
+Vcell : 0.4783286707369014 V
+###########
+I :62.0 A
+
+PEM Efficiency : 0.3063574148289348
+Power : 29.63088916225458 W
+Power-Stack : 681.5104507318554 W
+Power-Thermal : 1072.4695492681446 W
+VStack : 10.992104044062183 V
+Vcell : 0.4779175671331384 V
+###########
+I :62.1 A
+
+PEM Efficiency : 0.30609375173084374
+Power : 29.653138292677223 W
+Power-Stack : 682.0221807315761 W
+Power-Thermal : 1074.7868192684239 W
+VStack : 10.982643812102676 V
+Vcell : 0.4775062527001163 V
+###########
+I :62.2 A
+
+PEM Efficiency : 0.3058299519392097
+Power : 29.6752918965654 W
+Power-Stack : 682.5317136210042 W
+Power-Thermal : 1077.106286378996 W
+VStack : 10.973178675578845 V
+Vcell : 0.4770947250251672 V
+###########
+I :62.3 A
+
+PEM Efficiency : 0.305566013899071
+Power : 29.697349758822913 W
+Power-Stack : 683.039044452927 W
+Power-Thermal : 1079.4279555470728 W
+VStack : 10.963708578698668 V
+Vcell : 0.4766829816825508 V
+###########
+I :62.4 A
+
+PEM Efficiency : 0.3053019360469712
+Power : 29.719311662556365 W
+Power-Stack : 683.5441682387964 W
+Power-Thermal : 1081.7518317612034 W
+VStack : 10.954233465365327 V
+Vcell : 0.4762710202332751 V
+###########
+I :62.5 A
+
+PEM Efficiency : 0.30503771681084374
+Power : 29.741177389057267 W
+Power-Stack : 684.0470799483171 W
+Power-Thermal : 1084.077920051683 W
+VStack : 10.944753279173074 V
+Vcell : 0.47585883822491626 V
+###########
+I :62.6 A
+
+PEM Efficiency : 0.30477335460989247
+Power : 29.762946717783663 W
+Power-Stack : 684.5477745090243 W
+Power-Thermal : 1086.4062254909757 W
+VStack : 10.935267963402943 V
+Vcell : 0.4754464331914323 V
+###########
+I :62.7 A
+
+PEM Efficiency : 0.30450884785447385
+Power : 29.7846194263418 W
+Power-Stack : 685.0462468058614 W
+Power-Thermal : 1088.7367531941386 W
+VStack : 10.925777461018523 V
+Vcell : 0.47503380265297923 V
+###########
+I :62.8 A
+
+PEM Efficiency : 0.3042441949459755
+Power : 29.806195290467326 W
+Power-Stack : 685.5424916807485 W
+Power-Thermal : 1091.0695083192513 W
+VStack : 10.9162817146616 V
+Vcell : 0.47462094411572175 V
+###########
+I :62.9 A
+
+PEM Efficiency : 0.30397939427669424
+Power : 29.827674084006343 W
+Power-Stack : 686.0365039321459 W
+Power-Thermal : 1093.4044960678539 W
+VStack : 10.906780666647789 V
+Vcell : 0.474207855071643 V
+###########
+I :63.0 A
+
+PEM Efficiency : 0.3037144442297132
+Power : 29.84905557889622 W
+Power-Stack : 686.5282783146131 W
+Power-Thermal : 1095.741721685387 W
+VStack : 10.897274258962112 V
+Vcell : 0.47379453299835267 V
+###########
+I :63.1 A
+
+PEM Efficiency : 0.3034493431787759
+Power : 29.870339545145992 W
+Power-Stack : 687.0178095383578 W
+Power-Thermal : 1098.0811904616423 W
+VStack : 10.887762433254482 V
+Vcell : 0.4733809753588905 V
+###########
+I :63.2 A
+
+PEM Efficiency : 0.3031840894881606
+Power : 29.891525750816736 W
+Power-Stack : 687.5050922687849 W
+Power-Thermal : 1100.4229077312152 W
+VStack : 10.878245130835204 V
+Vcell : 0.4729671796015306 V
+###########
+I :63.3 A
+
+PEM Efficiency : 0.30291868151255175
+Power : 29.912613962001455 W
+Power-Stack : 687.9901211260335 W
+Power-Thermal : 1102.7668788739663 W
+VStack : 10.868722292670356 V
+Vcell : 0.4725531431595807 V
+###########
+I :63.4 A
+
+PEM Efficiency : 0.30265311759691005
+Power : 29.933603942804794 W
+Power-Stack : 688.4728906845103 W
+Power-Thermal : 1105.1131093154895 W
+VStack : 10.859193859377134 V
+Vcell : 0.4721388634511797 V
+###########
+I :63.5 A
+
+PEM Efficiency : 0.3023873960763426
+Power : 29.954495455322494 W
+Power-Stack : 688.9533954724174 W
+Power-Thermal : 1107.4616045275825 W
+VStack : 10.849659771219171 V
+Vcell : 0.4717243378790944 V
+###########
+I :63.6 A
+
+PEM Efficiency : 0.30212151527596803
+Power : 29.975288259620445 W
+Power-Stack : 689.4316299712702 W
+Power-Thermal : 1109.81237002873 W
+VStack : 10.840119968101734 V
+Vcell : 0.47130956383051015 V
+###########
+I :63.7 A
+
+PEM Efficiency : 0.3018554735107843
+Power : 29.995982113713655 W
+Power-Stack : 689.907588615414 W
+Power-Thermal : 1112.165411384586 W
+VStack : 10.830574389566939 V
+Vcell : 0.47089453867682346 V
+###########
+I :63.8 A
+
+PEM Efficiency : 0.3015892690855304
+Power : 30.01657677354467 W
+Power-Stack : 690.3812657915274 W
+Power-Thermal : 1114.5207342084725 W
+VStack : 10.821022974788832 V
+Vcell : 0.47047925977342747 V
+###########
+I :63.9 A
+
+PEM Efficiency : 0.3013229002945501
+Power : 30.037071992961934 W
+Power-Stack : 690.8526558381245 W
+Power-Thermal : 1116.8783441618755 W
+VStack : 10.811465662568459 V
+Vcell : 0.4700637244594982 V
+###########
+I :64.0 A
+
+PEM Efficiency : 0.3010563654216514
+Power : 30.057467523697674 W
+Power-Stack : 691.3217530450465 W
+Power-Thermal : 1119.2382469549534 W
+VStack : 10.801902391328852 V
+Vcell : 0.46964793005777616 V
+###########
+I :64.1 A
+
+PEM Efficiency : 0.30078966273996566
+Power : 30.077763115345604 W
+Power-Stack : 691.7885516529489 W
+Power-Thermal : 1121.6004483470508 W
+VStack : 10.792333099109968 V
+Vcell : 0.46923187387434645 V
+###########
+I :64.2 A
+
+PEM Efficiency : 0.3005227905118039
+Power : 30.09795851533819 W
+Power-Stack : 692.2530458527783 W
+Power-Thermal : 1123.9649541472218 W
+VStack : 10.782757723563524 V
+Vcell : 0.4688155531984141 V
+###########
+I :64.3 A
+
+PEM Efficiency : 0.3002557469885127
+Power : 30.118053468923733 W
+Power-Stack : 692.7152297852458 W
+Power-Thermal : 1126.331770214754 W
+VStack : 10.773176201947837 V
+Vcell : 0.46839896530207986 V
+###########
+I :64.4 A
+
+PEM Efficiency : 0.2999885304103261
+Power : 30.138047719143003 W
+Power-Stack : 693.175097540289 W
+Power-Thermal : 1128.700902459711 W
+VStack : 10.7635884711225 V
+Vcell : 0.4679821074401087 V
+###########
+I :64.5 A
+
+PEM Efficiency : 0.29972113900621783
+Power : 30.15794100680564 W
+Power-Stack : 693.6326431565298 W
+Power-Thermal : 1131.0723568434703 W
+VStack : 10.753994467543096 V
+Vcell : 0.46756497684969983 V
+###########
+I :64.6 A
+
+PEM Efficiency : 0.29945357099375003
+Power : 30.177733070466154 W
+Power-Stack : 694.0878606207216 W
+Power-Thermal : 1133.4461393792783 W
+VStack : 10.744394127255752 V
+Vcell : 0.4671475707502501 V
+###########
+I :64.7 A
+
+PEM Efficiency : 0.29918582457892073
+Power : 30.197423646399628 W
+Power-Stack : 694.5407438671914 W
+Power-Thermal : 1135.8222561328084 W
+VStack : 10.734787385891677 V
+Vcell : 0.46672988634311635 V
+###########
+I :64.8 A
+
+PEM Efficiency : 0.2989178979560095
+Power : 30.217012468577085 W
+Power-Stack : 694.991286777273 W
+Power-Thermal : 1138.200713222727 W
+VStack : 10.72517417866162 V
+Vcell : 0.4663119208113748 V
+###########
+I :64.9 A
+
+PEM Efficiency : 0.2986497893074197
+Power : 30.2364992686404 W
+Power-Stack : 695.4394831787292 W
+Power-Thermal : 1140.581516821271 W
+VStack : 10.715554440350218 V
+Vcell : 0.4658936713195747 V
+###########
+I :65.0 A
+
+PEM Efficiency : 0.2983814968035211
+Power : 30.255883775877038 W
+Power-Stack : 695.8853268451719 W
+Power-Thermal : 1142.9646731548282 W
+VStack : 10.705928105310337 V
+Vcell : 0.4654751350134929 V
+###########
+I :65.1 A
+
+PEM Efficiency : 0.2981130186024879
+Power : 30.27516571719426 W
+Power-Stack : 696.3288114954679 W
+Power-Thermal : 1145.3501885045318 W
+VStack : 10.696295107457267 V
+Vcell : 0.46505630901988115 V
+###########
+I :65.2 A
+
+PEM Efficiency : 0.2978443528501357
+Power : 30.29434481709301 W
+Power-Stack : 696.7699307931392 W
+Power-Thermal : 1147.738069206861 W
+VStack : 10.68665538026287 V
+Vcell : 0.46463719044621177 V
+###########
+I :65.3 A
+
+PEM Efficiency : 0.2975754976797569
+Power : 30.313420797641477 W
+Power-Stack : 697.2086783457539 W
+Power-Thermal : 1150.1283216542458 W
+VStack : 10.677008856749678 V
+Vcell : 0.4642177763804208 V
+###########
+I :65.4 A
+
+PEM Efficiency : 0.29730645121195265
+Power : 30.332393378448266 W
+Power-Stack : 697.6450477043102 W
+Power-Thermal : 1152.5209522956902 W
+VStack : 10.667355469484862 V
+Vcell : 0.4637980638906462 V
+###########
+I :65.5 A
+
+PEM Efficiency : 0.2970372115544633
+Power : 30.351262276635055 W
+Power-Stack : 698.0790323626063 W
+Power-Thermal : 1154.9159676373936 W
+VStack : 10.657695150574142 V
+Vcell : 0.4633780500249627 V
+###########
+I :65.6 A
+
+PEM Efficiency : 0.2967677768019959
+Power : 30.37002720680905 W
+Power-Stack : 698.5106257566081 W
+Power-Thermal : 1157.3133742433918 W
+VStack : 10.648027831655613 V
+Vcell : 0.4629577318111136 V
+###########
+I :65.7 A
+
+PEM Efficiency : 0.2964981450360504
+Power : 30.388687881034876 W
+Power-Stack : 698.9398212638022 W
+Power-Thermal : 1159.713178736198 W
+VStack : 10.638353443893488 V
+Vcell : 0.46253710625623856 V
+###########
+I :65.8 A
+
+PEM Efficiency : 0.29622831432474245
+Power : 30.407244008806163 W
+Power-Stack : 699.3666122025418 W
+Power-Thermal : 1162.1153877974582 W
+VStack : 10.62867191797176 V
+Vcell : 0.46211617034659824 V
+###########
+I :65.9 A
+
+PEM Efficiency : 0.29595828272262403
+Power : 30.425695297016645 W
+Power-Stack : 699.7909918313828 W
+Power-Thermal : 1164.520008168617 W
+VStack : 10.618983184087751 V
+Vcell : 0.46169492104729354 V
+###########
+I :66.0 A
+
+PEM Efficiency : 0.2956880482705018
+Power : 30.44404144993087 W
+Power-Stack : 700.21295334841 W
+Power-Thermal : 1166.92704665159 W
+VStack : 10.609287171945606 V
+Vcell : 0.4612733553019829 V
+###########
+I :66.1 A
+
+PEM Efficiency : 0.2954176089952531
+Power : 30.462282169154516 W
+Power-Stack : 700.6324898905539 W
+Power-Thermal : 1169.336510109446 W
+VStack : 10.599583810749682 V
+Vcell : 0.46085147003259486 V
+###########
+I :66.2 A
+
+PEM Efficiency : 0.29514696290963816
+Power : 30.48041715360415 W
+Power-Stack : 701.0495945328955 W
+Power-Thermal : 1171.7484054671045 W
+VStack : 10.589873029197816 V
+Vcell : 0.4604292621390355 V
+###########
+I :66.3 A
+
+PEM Efficiency : 0.2948761080121116
+Power : 30.49844609947668 W
+Power-Stack : 701.4642602879636 W
+Power-Thermal : 1174.1627397120362 W
+VStack : 10.580154755474565 V
+Vcell : 0.4600067284988941 V
+###########
+I :66.4 A
+
+PEM Efficiency : 0.29460504228662976
+Power : 30.51636870021826 W
+Power-Stack : 701.8764801050199 W
+Power-Thermal : 1176.5795198949802 W
+VStack : 10.570428917244275 V
+Vcell : 0.4595838659671424 V
+###########
+I :66.5 A
+
+PEM Efficiency : 0.29433376370245573
+Power : 30.534184646492758 W
+Power-Stack : 702.2862468693335 W
+Power-Thermal : 1178.9987531306663 W
+VStack : 10.560695441644112 V
+Vcell : 0.45916067137583094 V
+###########
+I :66.6 A
+
+PEM Efficiency : 0.29406227021396164
+Power : 30.55189362614976 W
+Power-Stack : 702.6935534014444 W
+Power-Thermal : 1181.4204465985554 W
+VStack : 10.550954255276945 V
+Vcell : 0.4587371415337802 V
+###########
+I :66.7 A
+
+PEM Efficiency : 0.29379055976042845
+Power : 30.569495324192104 W
+Power-Stack : 703.0983924564184 W
+Power-Thermal : 1183.8446075435816 W
+VStack : 10.541205284204173 V
+Vcell : 0.4583132732262684 V
+###########
+I :66.8 A
+
+PEM Efficiency : 0.29351863026584213
+Power : 30.58698942274287 W
+Power-Stack : 703.500756723086 W
+Power-Thermal : 1186.2712432769138 W
+VStack : 10.531448453938415 V
+Vcell : 0.4578890632147137 V
+###########
+I :66.9 A
+
+PEM Efficiency : 0.29324647963868766
+Power : 30.604375601012006 W
+Power-Stack : 703.9006388232762 W
+Power-Thermal : 1188.7003611767238 W
+VStack : 10.521683689436115 V
+Vcell : 0.4574645082363528 V
+###########
+I :67.0 A
+
+PEM Efficiency : 0.29297410577173943
+Power : 30.621653535262208 W
+Power-Stack : 704.2980313110307 W
+Power-Thermal : 1191.131968688969 W
+VStack : 10.511910915090011 V
+Vcell : 0.45703960500391355 V
+###########
+I :67.1 A
+
+PEM Efficiency : 0.2927015065418492
+Power : 30.638822898774603 W
+Power-Stack : 704.6929266718158 W
+Power-Thermal : 1193.566073328184 W
+VStack : 10.50213005472155 V
+Vcell : 0.45661435020528474 V
+###########
+I :67.2 A
+
+PEM Efficiency : 0.29242867980972986
+Power : 30.655883361813608 W
+Power-Stack : 705.085317321713 W
+Power-Thermal : 1196.002682678287 W
+VStack : 10.492341031573108 V
+Vcell : 0.45618874050317865 V
+###########
+I :67.3 A
+
+PEM Efficiency : 0.292155623419738
+Power : 30.67283459159145 W
+Power-Stack : 705.4751956066034 W
+Power-Thermal : 1198.4418043933968 W
+VStack : 10.482543768300198 V
+Vcell : 0.45576277253479125 V
+###########
+I :67.4 A
+
+PEM Efficiency : 0.2918823351996508
+Power : 30.689676252232086 W
+Power-Stack : 705.862553801338 W
+Power-Thermal : 1200.8834461986623 W
+VStack : 10.47273818696347 V
+Vcell : 0.45533644291145525 V
+###########
+I :67.5 A
+
+PEM Efficiency : 0.2916088129604416
+Power : 30.706408004734502 W
+Power-Stack : 706.2473841088936 W
+Power-Thermal : 1203.3276158911065 W
+VStack : 10.462924209020645 V
+Vcell : 0.45490974821828895 V
+###########
+I :67.6 A
+
+PEM Efficiency : 0.29133505449605135
+Power : 30.72302950693559 W
+Power-Stack : 706.6296786595185 W
+Power-Thermal : 1205.7743213404813 W
+VStack : 10.453101755318322 V
+Vcell : 0.4544826850138401 V
+###########
+I :67.7 A
+
+PEM Efficiency : 0.2910610575831565
+Power : 30.739540413472323 W
+Power-Stack : 707.0094295098635 W
+Power-Thermal : 1208.2235704901366 W
+VStack : 10.443270746083655 V
+Vcell : 0.4540552498297241 V
+###########
+I :67.8 A
+
+PEM Efficiency : 0.2907868199809334
+Power : 30.755940375743368 W
+Power-Stack : 707.3866286420974 W
+Power-Thermal : 1210.6753713579026 W
+VStack : 10.433431100915891 V
+Vcell : 0.45362743917025616 V
+###########
+I :67.9 A
+
+PEM Efficiency : 0.29051233943082
+Power : 30.772229041870183 W
+Power-Stack : 707.7612679630142 W
+Power-Thermal : 1213.1297320369858 W
+VStack : 10.423582738777823 V
+Vcell : 0.45319924951207924 V
+###########
+I :68.0 A
+
+PEM Efficiency : 0.29023761365627304
+Power : 30.788406056657443 W
+Power-Stack : 708.1333393031211 W
+Power-Thermal : 1215.5866606968787 W
+VStack : 10.413725577987076 V
+Vcell : 0.45277067730378595 V
+###########
+I :68.1 A
+
+PEM Efficiency : 0.2899626403625214
+Power : 30.804471061552817 W
+Power-Stack : 708.5028344157148 W
+Power-Thermal : 1218.046165584285 W
+VStack : 10.403859536207266 V
+Vcell : 0.4523417189655333 V
+###########
+I :68.2 A
+
+PEM Efficiency : 0.2896874172363166
+Power : 30.820423694606195 W
+Power-Stack : 708.8697449759425 W
+Power-Thermal : 1220.5082550240575 W
+VStack : 10.39398453043904 V
+Vcell : 0.4519123708886539 V
+###########
+I :68.3 A
+
+PEM Efficiency : 0.2894119419456791
+Power : 30.836263590428217 W
+Power-Stack : 709.234062579849 W
+Power-Thermal : 1222.9729374201509 W
+VStack : 10.384100477010966 V
+Vcell : 0.4514826294352594 V
+###########
+I :68.4 A
+
+PEM Efficiency : 0.2891362121396401
+Power : 30.851990380148155 W
+Power-Stack : 709.5957787434075 W
+Power-Thermal : 1225.4402212565924 W
+VStack : 10.374207291570286 V
+Vcell : 0.4510524909378385 V
+###########
+I :68.5 A
+
+PEM Efficiency : 0.2888602254479805
+Power : 30.867603691371198 W
+Power-Stack : 709.9548849015375 W
+Power-Thermal : 1227.9101150984625 W
+VStack : 10.36430488907354 V
+Vcell : 0.4506219516988496 V
+###########
+I :68.6 A
+
+PEM Efficiency : 0.28858397948096465
+Power : 30.88310314813491 W
+Power-Stack : 710.3113724071029 W
+Power-Thermal : 1230.3826275928968 W
+VStack : 10.354393183777011 V
+Vcell : 0.45019100799030487 V
+###########
+I :68.7 A
+
+PEM Efficiency : 0.2883074718290706
+Power : 30.898488370865156 W
+Power-Stack : 710.6652325298986 W
+Power-Thermal : 1232.8577674701014 W
+VStack : 10.344472089227054 V
+Vcell : 0.44975965605335017 V
+###########
+I :68.8 A
+
+PEM Efficiency : 0.2880307000627167
+Power : 30.913758976331255 W
+Power-Stack : 711.0164564556188 W
+Power-Thermal : 1235.335543544381 W
+VStack : 10.334541518250274 V
+Vcell : 0.449327892097838 V
+###########
+I :68.9 A
+
+PEM Efficiency : 0.287753661731982
+Power : 30.92891457760036 W
+Power-Stack : 711.3650352848083 W
+Power-Thermal : 1237.815964715192 W
+VStack : 10.324601382943515 V
+Vcell : 0.44889571230189196 V
+###########
+I :69.0 A
+
+PEM Efficiency : 0.2874763543663249
+Power : 30.943954783991213 W
+Power-Stack : 711.7109600317979 W
+Power-Thermal : 1240.2990399682021 W
+VStack : 10.314651594663736 V
+Vcell : 0.44846311281146684 V
+###########
+I :69.1 A
+
+PEM Efficiency : 0.2871987754742949
+Power : 30.95887920102709 W
+Power-Stack : 712.0542216236231 W
+Power-Thermal : 1242.7847783763768 W
+VStack : 10.3046920640177 V
+Vcell : 0.44803008973990005 V
+###########
+I :69.2 A
+
+PEM Efficiency : 0.2869209225432412
+Power : 30.973687430387976 W
+Power-Stack : 712.3948108989234 W
+Power-Thermal : 1245.2731891010767 W
+VStack : 10.294722700851494 V
+Vcell : 0.4475966391674563 V
+###########
+I :69.3 A
+
+PEM Efficiency : 0.28664279303901685
+Power : 30.98837906986203 W
+Power-Stack : 712.7327186068267 W
+Power-Thermal : 1247.764281393173 W
+VStack : 10.284743414239925 V
+Vcell : 0.4471627571408663 V
+###########
+I :69.4 A
+
+PEM Efficiency : 0.2863643844056763
+Power : 31.00295371329614 W
+Power-Stack : 713.0679354058112 W
+Power-Thermal : 1250.258064594189 W
+VStack : 10.274754112475666 V
+Vcell : 0.446728439672855 V
+###########
+I :69.5 A
+
+PEM Efficiency : 0.28608569406517104
+Power : 31.017410950545848 W
+Power-Stack : 713.4004518625545 W
+Power-Thermal : 1252.7545481374455 W
+VStack : 10.264754703058339 V
+Vcell : 0.44629368274166686 V
+###########
+I :69.6 A
+
+PEM Efficiency : 0.28580671941703756
+Power : 31.031750367424266 W
+Power-Stack : 713.7302584507581 W
+Power-Thermal : 1255.2537415492416 W
+VStack : 10.254745092683306 V
+Vcell : 0.44585848229057856 V
+###########
+I :69.7 A
+
+PEM Efficiency : 0.28552745783808153
+Power : 31.045971545650286 W
+Power-Stack : 714.0573455499566 W
+Power-Thermal : 1257.7556544500435 W
+VStack : 10.244725187230367 V
+Vcell : 0.44542283422740725 V
+###########
+I :69.8 A
+
+PEM Efficiency : 0.28524790668205763
+Power : 31.06007406279589 W
+Power-Stack : 714.3817034443055 W
+Power-Thermal : 1260.2602965556944 W
+VStack : 10.234694891752229 V
+Vcell : 0.44498673442400993 V
+###########
+I :69.9 A
+
+PEM Efficiency : 0.28496806327934204
+Power : 31.074057492232576 W
+Power-Stack : 714.7033223213492 W
+Power-Thermal : 1262.7676776786507 W
+VStack : 10.224654110462792 V
+Vcell : 0.44455017871577357 V
+###########
+I :70.0 A
+
+PEM Efficiency : 0.2846879249366016
+Power : 31.087921403076898 W
+Power-Stack : 715.0221922707686 W
+Power-Thermal : 1265.2778077292314 W
+VStack : 10.214602746725266 V
+Vcell : 0.44411316290109853 V
+###########
+I :70.1 A
+
+PEM Efficiency : 0.2844074889364565
+Power : 31.10166536013514 W
+Power-Stack : 715.3383032831082 W
+Power-Thermal : 1267.7906967168917 W
+VStack : 10.204540703040061 V
+Vcell : 0.4436756827408722 V
+###########
+I :70.2 A
+
+PEM Efficiency : 0.28412675253713776
+Power : 31.115288923847032 W
+Power-Stack : 715.6516452484817 W
+Power-Thermal : 1270.3063547515185 W
+VStack : 10.194467881032503 V
+Vcell : 0.4432377339579349 V
+###########
+I :70.3 A
+
+PEM Efficiency : 0.28384571297213845
+Power : 31.12879165022848 W
+Power-Stack : 715.962207955255 W
+Power-Thermal : 1272.8247920447448 W
+VStack : 10.184384181440329 V
+Vcell : 0.442799312236536 V
+###########
+I :70.4 A
+
+PEM Efficiency : 0.28356436744986036
+Power : 31.142173090813472 W
+Power-Stack : 716.2699810887099 W
+Power-Thermal : 1275.3460189112902 W
+VStack : 10.17428950410099 V
+Vcell : 0.4423604132217822 V
+###########
+I :70.5 A
+
+PEM Efficiency : 0.2832827131532533
+Power : 31.1554327925948 W
+Power-Stack : 716.5749542296804 W
+Power-Thermal : 1277.8700457703196 W
+VStack : 10.16418374793873 V
+Vcell : 0.4419210325190752 V
+###########
+I :70.6 A
+
+PEM Efficiency : 0.28300074723944935
+Power : 31.16857029796399 W
+Power-Stack : 716.8771168531717 W
+Power-Thermal : 1280.396883146828 W
+VStack : 10.154066810951441 V
+Vcell : 0.44148116569354096 V
+###########
+I :70.7 A
+
+PEM Efficiency : 0.28271846683939017
+Power : 31.181585144650025 W
+Power-Stack : 717.1764583269506 W
+Power-Thermal : 1282.9265416730493 W
+VStack : 10.14393859019732 V
+Vcell : 0.4410408082694487 V
+###########
+I :70.8 A
+
+PEM Efficiency : 0.28243586905744955
+Power : 31.194476865657187 W
+Power-Stack : 717.4729679101152 W
+Power-Thermal : 1285.4590320898847 W
+VStack : 10.13379898178129 V
+Vcell : 0.4405999557296213 V
+###########
+I :70.9 A
+
+PEM Efficiency : 0.28215295097104726
+Power : 31.207244989201712 W
+Power-Stack : 717.7666347516393 W
+Power-Thermal : 1287.9943652483607 W
+VStack : 10.123647880841176 V
+Vcell : 0.4401586035148337 V
+###########
+I :71.0 A
+
+PEM Efficiency : 0.2818697096302583
+Power : 31.21988903864741 W
+Power-Stack : 718.0574478888905 W
+Power-Thermal : 1290.5325521111095 W
+VStack : 10.113485181533669 V
+Vcell : 0.43971674702320296 V
+###########
+I :71.1 A
+
+PEM Efficiency : 0.2815861420574146
+Power : 31.232408532440196 W
+Power-Stack : 718.3453962461246 W
+Power-Thermal : 1293.0736037538754 W
+VStack : 10.103310777020036 V
+Vcell : 0.4392743816095668 V
+###########
+I :71.2 A
+
+PEM Efficiency : 0.2813022452466996
+Power : 31.244802984041424 W
+Power-Stack : 718.6304686329528 W
+Power-Thermal : 1295.6175313670474 W
+VStack : 10.093124559451583 V
+Vcell : 0.43883150258485143 V
+###########
+I :71.3 A
+
+PEM Efficiency : 0.28101801616373706
+Power : 31.257071901860144 W
+Power-Stack : 718.9126537427833 W
+Power-Thermal : 1298.1643462572165 W
+VStack : 10.082926419954886 V
+Vcell : 0.4383881052154298 V
+###########
+I :71.4 A
+
+PEM Efficiency : 0.28073345174517095
+Power : 31.269214789184126 W
+Power-Stack : 719.1919401512349 W
+Power-Thermal : 1300.7140598487651 W
+VStack : 10.072716248616734 V
+Vcell : 0.4379441847224667 V
+###########
+I :71.5 A
+
+PEM Efficiency : 0.28044854889823995
+Power : 31.28123114410969 W
+Power-Stack : 719.4683163145229 W
+Power-Thermal : 1303.2666836854771 W
+VStack : 10.06249393446885 V
+Vcell : 0.4374997362812544 V
+###########
+I :71.6 A
+
+PEM Efficiency : 0.28016330450034294
+Power : 31.293120459470302 W
+Power-Stack : 719.741770567817 W
+Power-Thermal : 1305.822229432183 W
+VStack : 10.052259365472304 V
+Vcell : 0.437054755020535 V
+###########
+I :71.7 A
+
+PEM Efficiency : 0.27987771539859796
+Power : 31.304882222763982 W
+Power-Stack : 720.0122911235716 W
+Power-Thermal : 1308.3807088764283 W
+VStack : 10.042012428501696 V
+Vcell : 0.43660923602181284 V
+###########
+I :71.8 A
+
+PEM Efficiency : 0.279591778409393
+Power : 31.31651591607929 W
+Power-Stack : 720.2798660698237 W
+Power-Thermal : 1310.942133930176 W
+VStack : 10.031753009329021 V
+Vcell : 0.4361631743186531 V
+###########
+I :71.9 A
+
+PEM Efficiency : 0.27930549031792845
+Power : 31.328021016020134 W
+Power-Stack : 720.544483368463 W
+Power-Thermal : 1313.5065166315371 W
+VStack : 10.021480992607273 V
+Vcell : 0.43571656489596844 V
+###########
+I :72.0 A
+
+PEM Efficiency : 0.27901884787775266
+Power : 31.339396993629183 W
+Power-Stack : 720.8061308534712 W
+Power-Thermal : 1316.0738691465285 W
+VStack : 10.011196261853767 V
+Vcell : 0.4352694026892942 V
+###########
+I :72.1 A
+
+PEM Efficiency : 0.2787318478102876
+Power : 31.350643314309902 W
+Power-Stack : 721.0647962291278 W
+Power-Thermal : 1318.6442037708719 W
+VStack : 10.000898699433119 V
+Vcell : 0.43482168258404863 V
+###########
+I :72.2 A
+
+PEM Efficiency : 0.2784444868043474
+Power : 31.36175943774726 W
+Power-Stack : 721.320467068187 W
+Power-Thermal : 1321.217532931813 W
+VStack : 9.990588186539986 V
+Vcell : 0.434373399414782 V
+###########
+I :72.3 A
+
+PEM Efficiency : 0.2781567615156479
+Power : 31.372744817826888 W
+Power-Stack : 721.5731308100184 W
+Power-Thermal : 1323.7938691899813 W
+VStack : 9.980264603181444 V
+Vcell : 0.43392454796441066 V
+###########
+I :72.4 A
+
+PEM Efficiency : 0.27786866856630665
+Power : 31.383598902552944 W
+Power-Stack : 721.8227747587177 W
+Power-Thermal : 1326.3732252412822 W
+VStack : 9.969927828159085 V
+Vcell : 0.43347512296343843 V
+###########
+I :72.5 A
+
+PEM Efficiency : 0.27758020454433513
+Power : 31.394321133964308 W
+Power-Stack : 722.0693860811791 W
+Power-Thermal : 1328.955613918821 W
+VStack : 9.959577739050745 V
+Vcell : 0.43302511908916286 V
+###########
+I :72.6 A
+
+PEM Efficiency : 0.27729136600312043
+Power : 31.40491094804941 W
+Power-Stack : 722.3129518051364 W
+Power-Thermal : 1331.5410481948634 W
+VStack : 9.949214212191961 V
+Vcell : 0.4325745309648679 V
+###########
+I :72.7 A
+
+PEM Efficiency : 0.2770021494608989
+Power : 31.41536777465947 W
+Power-Stack : 722.5534588171678 W
+Power-Thermal : 1334.1295411828323 W
+VStack : 9.938837122657052 V
+Vcell : 0.4321233531590023 V
+###########
+I :72.8 A
+
+PEM Efficiency : 0.2767125514002185
+Power : 31.42569103742002 W
+Power-Stack : 722.7908938606605 W
+Power-Thermal : 1336.7211061393396 W
+VStack : 9.928446344239841 V
+Vcell : 0.43167158018434093 V
+###########
+I :72.9 A
+
+PEM Efficiency : 0.2764225682673932
+Power : 31.43588015364103 W
+Power-Stack : 723.0252435337437 W
+Power-Thermal : 1339.3157564662565 W
+VStack : 9.91804174943407 V
+Vcell : 0.4312192064971334 V
+###########
+I :73.0 A
+
+PEM Efficiency : 0.2761321964719454
+Power : 31.445934534225145 W
+Power-Stack : 723.2564942871784 W
+Power-Thermal : 1341.9135057128217 W
+VStack : 9.907623209413401 V
+Vcell : 0.43076622649623486 V
+###########
+I :73.1 A
+
+PEM Efficiency : 0.2758414323860395
+Power : 31.455853583574395 W
+Power-Stack : 723.4846324222111 W
+Power-Thermal : 1344.5143675777888 W
+VStack : 9.897190594011096 V
+Vcell : 0.43031263452222157 V
+###########
+I :73.2 A
+
+PEM Efficiency : 0.27555027234390395
+Power : 31.465636699495082 W
+Power-Stack : 723.7096440883869 W
+Power-Thermal : 1347.1183559116132 W
+VStack : 9.886743771699274 V
+Vcell : 0.4298584248564902 V
+###########
+I :73.3 A
+
+PEM Efficiency : 0.27525871264124374
+Power : 31.47528327310094 W
+Power-Stack : 723.9315152813216 W
+Power-Thermal : 1349.7254847186784 W
+VStack : 9.876282609567825 V
+Vcell : 0.42940359172034026 V
+###########
+I :73.4 A
+
+PEM Efficiency : 0.2749667495346401
+Power : 31.484792688714435 W
+Power-Stack : 724.1502318404321 W
+Power-Thermal : 1352.335768159568 W
+VStack : 9.865806973302888 V
+Vcell : 0.4289481292740386 V
+###########
+I :73.5 A
+
+PEM Efficiency : 0.27467437924094057
+Power : 31.494164323766245 W
+Power-Stack : 724.3657794466236 W
+Power-Thermal : 1354.9492205533763 W
+VStack : 9.855316727164947 V
+Vcell : 0.4284920316158673 V
+###########
+I :73.6 A
+
+PEM Efficiency : 0.27438159793663647
+Power : 31.503397548692853 W
+Power-Stack : 724.5781436199356 W
+Power-Thermal : 1357.5658563800644 W
+VStack : 9.844811733966518 V
+Vcell : 0.42803529278115293 V
+###########
+I :73.7 A
+
+PEM Efficiency : 0.2740884017572292
+Power : 31.51249172683216 W
+Power-Stack : 724.7873097171397 W
+Power-Thermal : 1360.1856902828602 W
+VStack : 9.834291855049385 V
+Vcell : 0.4275779067412776 V
+###########
+I :73.8 A
+
+PEM Efficiency : 0.2737947867965844
+Power : 31.521446214317173 W
+Power-Stack : 724.9932629292949 W
+Power-Thermal : 1362.808737070705 W
+VStack : 9.82375695026145 V
+Vcell : 0.4271198674026717 V
+###########
+I :73.9 A
+
+PEM Efficiency : 0.2735007491062728
+Power : 31.53026035996756 W
+Power-Stack : 725.1959882792539 W
+Power-Thermal : 1365.4350117207462 W
+VStack : 9.81320687793307 V
+Vcell : 0.4266611686057856 V
+###########
+I :74.0 A
+
+PEM Efficiency : 0.27320628469490044
+Power : 31.538933505179305 W
+Power-Stack : 725.395470619124 W
+Power-Thermal : 1368.064529380876 W
+VStack : 9.802641494853027 V
+Vcell : 0.4262018041240447 V
+###########
+I :74.1 A
+
+PEM Efficiency : 0.2729113895274235
+Power : 31.547464983812045 W
+Power-Stack : 725.591694627677 W
+Power-Thermal : 1370.6973053723227 W
+VStack : 9.792060656243954 V
+Vcell : 0.42574176766278066 V
+###########
+I :74.2 A
+
+PEM Efficiency : 0.27261605952445184
+Power : 31.55585412207435 W
+Power-Stack : 725.78464480771 W
+Power-Thermal : 1373.3333551922901 W
+VStack : 9.781464215737332 V
+Vcell : 0.4252810528581449 V
+###########
+I :74.3 A
+
+PEM Efficiency : 0.27232029056153834
+Power : 31.564100238406787 W
+Power-Stack : 725.9743054833561 W
+Power-Thermal : 1375.9726945166435 W
+VStack : 9.770852025347997 V
+Vcell : 0.42481965327599985 V
+###########
+I :74.4 A
+
+PEM Efficiency : 0.2720240784684537
+Power : 31.572202643362612 W
+Power-Stack : 726.16066079734 W
+Power-Thermal : 1378.6153392026602 W
+VStack : 9.760223935448119 V
+Vcell : 0.42435756241078776 V
+###########
+I :74.5 A
+
+PEM Efficiency : 0.2717274190284481
+Power : 31.580160639486234 W
+Power-Stack : 726.3436947081834 W
+Power-Thermal : 1381.2613052918164 W
+VStack : 9.749579794740717 V
+Vcell : 0.423894773684379 V
+###########
+I :74.6 A
+
+PEM Efficiency : 0.27143030797749745
+Power : 31.587973521189245 W
+Power-Stack : 726.5233909873526 W
+Power-Thermal : 1383.9106090126472 W
+VStack : 9.73891945023261 V
+Vcell : 0.4234312804448961 V
+###########
+I :74.7 A
+
+PEM Efficiency : 0.2711327410035359
+Power : 31.595640574624053 W
+Power-Stack : 726.6997332163533 W
+Power-Thermal : 1386.5632667836467 W
+VStack : 9.72824274720687 V
+Vcell : 0.4229670759655161 V
+###########
+I :74.8 A
+
+PEM Efficiency : 0.27083471374567136
+Power : 31.6031610775549 W
+Power-Stack : 726.8727047837627 W
+Power-Thermal : 1389.219295216237 W
+VStack : 9.71754952919469 V
+Vcell : 0.4225021534432474 V
+###########
+I :74.9 A
+
+PEM Efficiency : 0.27053622179338693
+Power : 31.610534299226504 W
+Power-Stack : 727.0422888822096 W
+Power-Thermal : 1391.8787111177905 W
+VStack : 9.706839637946723 V
+Vcell : 0.4220365059976836 V
+###########
+I :75.0 A
+
+PEM Efficiency : 0.2702372606857258
+Power : 31.617759500229916 W
+Power-Stack : 727.208468505288 W
+Power-Thermal : 1394.5415314947118 W
+VStack : 9.69611291340384 V
+Vcell : 0.4215701266697322 V
+###########
+I :75.1 A
+
+PEM Efficiency : 0.2699378259104595
+Power : 31.62483593236579 W
+Power-Stack : 727.3712264444132 W
+Power-Thermal : 1397.2077735555865 W
+VStack : 9.685369193667288 V
+Vcell : 0.42110300842031684 V
+###########
+I :75.2 A
+
+PEM Efficiency : 0.2696379129032398
+Power : 31.63176283850487 W
+Power-Stack : 727.530545285612 W
+Power-Thermal : 1399.8774547143878 W
+VStack : 9.674608314968244 V
+Vcell : 0.4206351441290541 V
+###########
+I :75.3 A
+
+PEM Efficiency : 0.26933751704673337
+Power : 31.638539452445674 W
+Power-Stack : 727.6864074062505 W
+Power-Thermal : 1402.5505925937496 W
+VStack : 9.663830111636793 V
+Vcell : 0.42016652659290404 V
+###########
+I :75.4 A
+
+PEM Efficiency : 0.2690366336697382
+Power : 31.64516499876929 W
+Power-Stack : 727.8387949716937 W
+Power-Thermal : 1405.2272050283066 W
+VStack : 9.653034416070208 V
+Vcell : 0.4196971485247916 V
+###########
+I :75.5 A
+
+PEM Efficiency : 0.2687352580462829
+Power : 31.651638692691197 W
+Power-Stack : 727.9876899318975 W
+Power-Thermal : 1407.9073100681026 W
+VStack : 9.64222105870063 V
+Vcell : 0.4192270025522013 V
+###########
+I :75.6 A
+
+PEM Efficiency : 0.2684333853947068
+Power : 31.657959739910137 W
+Power-Stack : 728.1330740179332 W
+Power-Thermal : 1410.5909259820667 W
+VStack : 9.63138986796208 V
+Vcell : 0.4187560812157426 V
+###########
+I :75.7 A
+
+PEM Efficiency : 0.2681310108767213
+Power : 31.664127336453777 W
+Power-Stack : 728.2749287384369 W
+Power-Thermal : 1413.2780712615631 W
+VStack : 9.620540670256762 V
+Vcell : 0.4182843769676853 V
+###########
+I :75.8 A
+
+PEM Efficiency : 0.2678281295964524
+Power : 31.670140668521306 W
+Power-Stack : 728.41323537599 W
+Power-Thermal : 1415.9687646240097 W
+VStack : 9.609673289920712 V
+Vcell : 0.4178118821704658 V
+###########
+I :75.9 A
+
+PEM Efficiency : 0.26752473659946163
+Power : 31.675998912322658 W
+Power-Stack : 728.5479749834211 W
+Power-Thermal : 1418.6630250165788 W
+VStack : 9.598787549188684 V
+Vcell : 0.41733858909516014 V
+###########
+I :76.0 A
+
+PEM Efficiency : 0.26722082687174853
+Power : 31.68170123391451 W
+Power-Stack : 728.6791283800337 W
+Power-Thermal : 1421.3608716199665 W
+VStack : 9.587883268158338 V
+Vcell : 0.41686448991992775 V
+###########
+I :76.1 A
+
+PEM Efficiency : 0.26691639533873074
+Power : 31.687246789032763 W
+Power-Stack : 728.8066761477536 W
+Power-Thermal : 1424.0623238522464 W
+VStack : 9.57696026475366 V
+Vcell : 0.41638957672842003 V
+###########
+I :76.2 A
+
+PEM Efficiency : 0.2666114368642039
+Power : 31.69263472292165 W
+Power-Stack : 728.9305986271979 W
+Power-Thermal : 1426.7674013728022 W
+VStack : 9.566018354687637 V
+Vcell : 0.41591384150815813 V
+###########
+I :76.3 A
+
+PEM Efficiency : 0.26630594624927756
+Power : 31.697864170159008 W
+Power-Stack : 729.0508759136571 W
+Power-Thermal : 1429.4761240863427 W
+VStack : 9.555057351424079 V
+Vcell : 0.415437276148873 V
+###########
+I :76.4 A
+
+PEM Efficiency : 0.26599991823129077
+Power : 31.702934254478162 W
+Power-Stack : 729.1674878529977 W
+Power-Thermal : 1432.1885121470025 W
+VStack : 9.544077066138714 V
+Vcell : 0.4149598724408136 V
+###########
+I :76.5 A
+
+PEM Efficiency : 0.26569334748270307
+Power : 31.707844088585787 W
+Power-Stack : 729.2804140374731 W
+Power-Thermal : 1434.904585962527 W
+VStack : 9.533077307679386 V
+Vcell : 0.4144816220730168 V
+###########
+I :76.6 A
+
+PEM Efficiency : 0.2653862286099622
+Power : 31.712592773976045 W
+Power-Stack : 729.389633801449 W
+Power-Thermal : 1437.6243661985507 W
+VStack : 9.522057882525445 V
+Vcell : 0.4140025166315411 V
+###########
+I :76.7 A
+
+PEM Efficiency : 0.26507855615234677
+Power : 31.717179400740598 W
+Power-Stack : 729.4951262170338 W
+Power-Thermal : 1440.3478737829662 W
+VStack : 9.511018594746202 V
+Vcell : 0.413522547597661 V
+###########
+I :76.8 A
+
+PEM Efficiency : 0.2647703245807851
+Power : 31.721603047374696 W
+Power-Stack : 729.596870089618 W
+Power-Thermal : 1443.075129910382 W
+VStack : 9.499959245958568 V
+Vcell : 0.4130417063460247 V
+###########
+I :76.9 A
+
+PEM Efficiency : 0.264461528296647
+Power : 31.725862780578964 W
+Power-Stack : 729.6948439533162 W
+Power-Thermal : 1445.806156046684 W
+VStack : 9.488879635283695 V
+Vcell : 0.41255998414276934 V
+###########
+I :77.0 A
+
+PEM Efficiency : 0.26415216163051086
+Power : 31.729957655056968 W
+Power-Stack : 729.7890260663103 W
+Power-Thermal : 1448.5409739336897 W
+VStack : 9.47777955930273 V
+Vcell : 0.41207737214359696 V
+###########
+I :77.1 A
+
+PEM Efficiency : 0.2638422188409014
+Power : 31.73388671330826 W
+Power-Stack : 729.87939440609 W
+Power-Thermal : 1451.2796055939098 W
+VStack : 9.466658812011543 V
+Vcell : 0.41159386139180626 V
+###########
+I :77.2 A
+
+PEM Efficiency : 0.2635316941130021
+Power : 31.737648985417067 W
+Power-Stack : 729.9659266645925 W
+Power-Thermal : 1454.0220733354074 W
+VStack : 9.455517184774514 V
+Vcell : 0.41110944281628325 V
+###########
+I :77.3 A
+
+PEM Efficiency : 0.2632205815573372
+Power : 31.741243488836172 W
+Power-Stack : 730.0486002432319 W
+Power-Thermal : 1456.7683997567678 W
+VStack : 9.444354466277257 V
+Vcell : 0.410624107229446 V
+###########
+I :77.4 A
+
+PEM Efficiency : 0.26290887520842543
+Power : 31.74466922816612 W
+Power-Stack : 730.1273922478208 W
+Power-Thermal : 1459.5186077521794 W
+VStack : 9.433170442478303 V
+Vcell : 0.41013784532514364 V
+###########
+I :77.5 A
+
+PEM Efficiency : 0.26259656902340345
+Power : 31.747925194929476 W
+Power-Stack : 730.202279483378 W
+Power-Thermal : 1462.272720516622 W
+VStack : 9.421964896559716 V
+Vcell : 0.4096506476765094 V
+###########
+I :77.6 A
+
+PEM Efficiency : 0.2622836568806183
+Power : 31.75101036734013 W
+Power-Stack : 730.273238448823 W
+Power-Thermal : 1465.0307615511767 W
+VStack : 9.410737608876586 V
+Vcell : 0.4091625047337646 V
+###########
+I :77.7 A
+
+PEM Efficiency : 0.26197013257818813
+Power : 31.753923710067347 W
+Power-Stack : 730.340245331549 W
+Power-Thermal : 1467.792754668451 W
+VStack : 9.399488356905392 V
+Vcell : 0.40867340682197356 V
+###########
+I :77.8 A
+
+PEM Efficiency : 0.26165598983253063
+Power : 31.756664173994576 W
+Power-Stack : 730.4032760018753 W
+Power-Thermal : 1470.5587239981244 W
+VStack : 9.3882169151912 V
+Vcell : 0.4081833441387478 V
+###########
+I :77.9 A
+
+PEM Efficiency : 0.26134122227685724
+Power : 31.759230695972803 W
+Power-Stack : 730.4623060073745 W
+Power-Thermal : 1473.3286939926256 W
+VStack : 9.376923055293638 V
+Vcell : 0.4076923067518973 V
+###########
+I :78.0 A
+
+PEM Efficiency : 0.26102582345963415
+Power : 31.76162219856828 W
+Power-Stack : 730.5173105670705 W
+Power-Thermal : 1476.1026894329295 W
+VStack : 9.365606545731673 V
+Vcell : 0.4072002845970292 V
+###########
+I :78.1 A
+
+PEM Efficiency : 0.2607097868430066
+Power : 31.76383758980455 W
+Power-Stack : 730.5682645655046 W
+Power-Thermal : 1478.8807354344951 W
+VStack : 9.354267151927077 V
+Vcell : 0.4067072674750903 V
+###########
+I :78.2 A
+
+PEM Efficiency : 0.26039310580118796
+Power : 31.765875762898524 W
+Power-Stack : 730.6151425466661 W
+Power-Thermal : 1481.662857453334 W
+VStack : 9.342904636146624 V
+Vcell : 0.40621324504985323 V
+###########
+I :78.3 A
+
+PEM Efficiency : 0.26007577361881107
+Power : 31.767735595990537 W
+Power-Stack : 730.6579187077823 W
+Power-Thermal : 1484.4490812922174 W
+VStack : 9.331518757442943 V
+Vcell : 0.4057182068453453 V
+###########
+I :78.4 A
+
+PEM Efficiency : 0.2597577834892405
+Power : 31.769415951868073 W
+Power-Stack : 730.6965668929656 W
+Power-Thermal : 1487.2394331070343 W
+VStack : 9.32010927159395 V
+Vcell : 0.4052221422432152 V
+###########
+I :78.5 A
+
+PEM Efficiency : 0.25943912851284706
+Power : 31.770915677683252 W
+Power-Stack : 730.7310605867148 W
+Power-Thermal : 1490.0339394132852 W
+VStack : 9.308675931040954 V
+Vcell : 0.40472504048004143 V
+###########
+I :78.6 A
+
+PEM Efficiency : 0.25911980169523935
+Power : 31.772233604663466 W
+Power-Stack : 730.7613729072597 W
+Power-Thermal : 1492.83262709274 W
+VStack : 9.297218484825189 V
+Vcell : 0.4042268906445734 V
+###########
+I :78.7 A
+
+PEM Efficiency : 0.25879979594545555
+Power : 31.773368547815473 W
+Power-Stack : 730.7874765997559 W
+Power-Thermal : 1495.6355234002442 W
+VStack : 9.285736678522946 V
+Vcell : 0.4037276816749107 V
+###########
+I :78.8 A
+
+PEM Efficiency : 0.2584791040741119
+Power : 31.77431930562243 W
+Power-Stack : 730.8093440293159 W
+Power-Thermal : 1498.4426559706837 W
+VStack : 9.274230254179136 V
+Vcell : 0.4032274023556146 V
+###########
+I :78.9 A
+
+PEM Efficiency : 0.25815771879150573
+Power : 31.775084659733697 W
+Power-Stack : 730.826947173875 W
+Power-Thermal : 1501.2540528261252 W
+VStack : 9.262698950239226 V
+Vcell : 0.402726041314749 V
+###########
+I :79.0 A
+
+PEM Efficiency : 0.2578356327056747
+Power : 31.77566337464736 W
+Power-Stack : 730.8402576168893 W
+Power-Thermal : 1504.0697423831105 W
+VStack : 9.251142501479611 V
+Vcell : 0.40222358702085265 V
+###########
+I :79.1 A
+
+PEM Efficiency : 0.25751283832040844
+Power : 31.77605419738512 W
+Power-Stack : 730.8492465398577 W
+Power-Thermal : 1506.8897534601422 W
+VStack : 9.239560638936254 V
+Vcell : 0.4017200277798372 V
+###########
+I :79.2 A
+
+PEM Efficiency : 0.25718932803321176
+Power : 31.77625585715938 W
+Power-Stack : 730.8538847146658 W
+Power-Thermal : 1509.7141152853344 W
+VStack : 9.227953089831638 V
+Vcell : 0.40121535173181033 V
+###########
+I :79.3 A
+
+PEM Efficiency : 0.25686509413321934
+Power : 31.7762670650323 W
+Power-Stack : 730.854142495743 W
+Power-Thermal : 1512.542857504257 W
+VStack : 9.216319577499911 V
+Vcell : 0.40070954684782223 V
+###########
+I :79.4 A
+
+PEM Efficiency : 0.2565401287990584
+Power : 31.776086513566575 W
+Power-Stack : 730.8499898120313 W
+Power-Thermal : 1515.3760101879689 W
+VStack : 9.204659821310216 V
+Vcell : 0.40020260092653115 V
+###########
+I :79.5 A
+
+PEM Efficiency : 0.2562144240966598
+Power : 31.775712876467743 W
+Power-Stack : 730.8413961587581 W
+Power-Thermal : 1518.2136038412418 W
+VStack : 9.192973536588152 V
+Vcell : 0.39969450159078923 V
+###########
+I :79.6 A
+
+PEM Efficiency : 0.25588797197701396
+Power : 31.775144808217682 W
+Power-Stack : 730.8283305890067 W
+Power-Thermal : 1521.055669410993 W
+VStack : 9.181260434535261 V
+Vcell : 0.39918523628414176 V
+###########
+I :79.7 A
+
+PEM Efficiency : 0.25556076427387225
+Power : 31.774380943699082 W
+Power-Stack : 730.8107617050789 W
+Power-Thermal : 1523.9022382949208 W
+VStack : 9.169520222146536 V
+Vcell : 0.3986747922672407 V
+###########
+I :79.8 A
+
+PEM Efficiency : 0.2552327927013906
+Power : 31.77341989781071 W
+Power-Stack : 730.7886576496463 W
+Power-Thermal : 1526.7533423503535 W
+VStack : 9.157752602125894 V
+Vcell : 0.39816315661416934 V
+###########
+I :79.9 A
+
+PEM Efficiency : 0.2549040488517138
+Power : 31.772260265073015 W
+Power-Stack : 730.7619860966794 W
+Power-Thermal : 1529.6090139033206 W
+VStack : 9.14595727279949 V
+Vcell : 0.3976503162086735 V
+###########
+I :80.0 A
+
+PEM Efficiency : 0.2545745241924991
+Power : 31.770900619223887 W
+Power-Stack : 730.7307142421494 W
+Power-Thermal : 1532.4692857578502 W
+VStack : 9.134133928026868 V
+Vcell : 0.3971362577402986 V
+###########
+I :80.1 A
+
+PEM Efficiency : 0.2542442100643775
+Power : 31.769339512804354 W
+Power-Stack : 730.6948087945001 W
+Power-Thermal : 1535.3341912054996 W
+VStack : 9.122282257109866 V
+Vcell : 0.39662096770042893 V
+###########
+I :80.2 A
+
+PEM Efficiency : 0.25391309767834974
+Power : 31.767575476733697 W
+Power-Stack : 730.654235964875 W
+Power-Thermal : 1538.2037640351248 W
+VStack : 9.11040194469919 V
+Vcell : 0.3961044323782256 V
+###########
+I :80.3 A
+
+PEM Efficiency : 0.25358117811311637
+Power : 31.765607019873865 W
+Power-Stack : 730.6089614570989 W
+Power-Thermal : 1541.0780385429007 W
+VStack : 9.098492670698617 V
+Vcell : 0.3955866378564616 V
+###########
+I :80.4 A
+
+PEM Efficiency : 0.2532484423123387
+Power : 31.763432628582766 W
+Power-Stack : 730.5589504574036 W
+Power-Thermal : 1543.9570495425967 W
+VStack : 9.08655411016671 V
+Vcell : 0.3950675700072483 V
+###########
+I :80.5 A
+
+PEM Efficiency : 0.2529148810818287
+Power : 31.761050766256044 W
+Power-Stack : 730.504167623889 W
+Power-Thermal : 1546.840832376111 W
+VStack : 9.074585933216014 V
+Vcell : 0.39454721448765273 V
+###########
+I :80.6 A
+
+PEM Efficiency : 0.2525804850866669
+Power : 31.758459872857156 W
+Power-Stack : 730.4445770757146 W
+Power-Thermal : 1549.729422924285 W
+VStack : 9.06258780490961 V
+Vcell : 0.39402555673520046 V
+###########
+I :80.7 A
+
+PEM Efficiency : 0.25224524484824445
+Power : 31.755658364435195 W
+Power-Stack : 730.3801423820095 W
+Power-Thermal : 1552.6228576179906 W
+VStack : 9.050559385155012 V
+Vcell : 0.3935025819632614 V
+###########
+I :80.8 A
+
+PEM Efficiency : 0.25190915074122616
+Power : 31.75264463263008 W
+Power-Stack : 730.3108265504918 W
+Power-Thermal : 1555.5211734495078 W
+VStack : 9.038500328595196 V
+Vcell : 0.3929782751563129 V
+###########
+I :80.9 A
+
+PEM Efficiency : 0.25157219299043654
+Power : 31.74941704416506 W
+Power-Stack : 730.2365920157964 W
+Power-Thermal : 1558.424407984204 W
+VStack : 9.026410284496864 V
+Vcell : 0.39245262106508105 V
+###########
+I :81.0 A
+
+PEM Efficiency : 0.2512343616676595
+Power : 31.74597394032546 W
+Power-Stack : 730.1574006274856 W
+Power-Thermal : 1561.3325993725146 W
+VStack : 9.014288896635623 V
+Vcell : 0.39192560420154887 V
+###########
+I :81.1 A
+
+PEM Efficiency : 0.25089564668835557
+Power : 31.74231363642399 W
+Power-Stack : 730.0732136377518 W
+Power-Thermal : 1564.2457863622478 W
+VStack : 9.002135803178197 V
+Vcell : 0.39139720883383466 V
+###########
+I :81.2 A
+
+PEM Efficiency : 0.25055603780828956
+Power : 31.738434421251657 W
+Power-Stack : 729.9839916887881 W
+Power-Thermal : 1567.1640083112118 W
+VStack : 8.98995063656143 V
+Vcell : 0.39086741898093175 V
+###########
+I :81.3 A
+
+PEM Efficiency : 0.2502155246200674
+Power : 31.734334556513907 W
+Power-Stack : 729.8896947998198 W
+Power-Thermal : 1570.08730520018 W
+VStack : 8.977733023368017 V
+Vcell : 0.39033621840730515 V
+###########
+I :81.4 A
+
+PEM Efficiency : 0.24987409654958
+Power : 31.73001227625187 W
+Power-Stack : 729.790282353793 W
+Power-Thermal : 1573.0157176462071 W
+VStack : 8.96548258419893 V
+Vcell : 0.3898035906173448 V
+###########
+I :81.5 A
+
+PEM Efficiency : 0.24953174285234841
+Power : 31.72546578624758 W
+Power-Stack : 729.6857130836943 W
+Power-Thermal : 1575.9492869163057 W
+VStack : 8.95319893354226 V
+Vcell : 0.38926951884966354 V
+###########
+I :81.6 A
+
+PEM Efficiency : 0.2491884526097706
+Power : 31.72069326341336 W
+Power-Stack : 729.5759450585073 W
+Power-Thermal : 1578.8880549414923 W
+VStack : 8.94088167963857 V
+Vcell : 0.38873398607124215 V
+###########
+I :81.7 A
+
+PEM Efficiency : 0.24884421472526352
+Power : 31.715692855164292 W
+Power-Stack : 729.4609356687787 W
+Power-Thermal : 1581.8320643312213 W
+VStack : 8.928530424342457 V
+Vcell : 0.38819697497141115 V
+###########
+I :81.8 A
+
+PEM Efficiency : 0.24849901792029863
+Power : 31.710462678773467 W
+Power-Stack : 729.3406416117898 W
+Power-Thermal : 1584.78135838821 W
+VStack : 8.916144762980315 V
+Vcell : 0.3876584679556659 V
+###########
+I :81.9 A
+
+PEM Efficiency : 0.24815285073032722
+Power : 31.705000820709532 W
+Power-Stack : 729.2150188763193 W
+Power-Thermal : 1587.7359811236809 W
+VStack : 8.903724284204142 V
+Vcell : 0.3871184471393105 V
+###########
+I :82.0 A
+
+PEM Efficiency : 0.2478057015005905
+Power : 31.699305335955543 W
+Power-Stack : 729.0840227269775 W
+Power-Thermal : 1590.6959772730224 W
+VStack : 8.891268569841188 V
+Vcell : 0.38657689434092124 V
+###########
+I :82.1 A
+
+PEM Efficiency : 0.24745755838181285
+Power : 31.693374247309062 W
+Power-Stack : 728.9476076881084 W
+Power-Thermal : 1593.6613923118914 W
+VStack : 8.878777194739445 V
+Vcell : 0.3860337910756281 V
+###########
+I :82.2 A
+
+PEM Efficiency : 0.24710840932577166
+Power : 31.687205544662355 W
+Power-Stack : 728.8057275272341 W
+Power-Thermal : 1596.632272472766 W
+VStack : 8.866249726608688 V
+Vcell : 0.38548911854820384 V
+###########
+I :82.3 A
+
+PEM Efficiency : 0.24675824208074204
+Power : 31.68079718426231 W
+Power-Stack : 728.6583352380331 W
+Power-Thermal : 1599.6086647619666 W
+VStack : 8.853685725857025 V
+Vcell : 0.3849428576459576 V
+###########
+I :82.4 A
+
+PEM Efficiency : 0.24640704418680956
+Power : 31.67414708794925 W
+Power-Stack : 728.5053830228328 W
+Power-Thermal : 1602.5906169771674 W
+VStack : 8.841084745422727 V
+Vcell : 0.38439498893142293 V
+###########
+I :82.5 A
+
+PEM Efficiency : 0.2460548029710493
+Power : 31.66725314237405 W
+Power-Stack : 728.3468222746031 W
+Power-Thermal : 1605.5781777253967 W
+VStack : 8.82844633060125 V
+Vcell : 0.38384549263483697 V
+###########
+I :82.6 A
+
+PEM Efficiency : 0.24570150554256331
+Power : 31.660113198192537 W
+Power-Stack : 728.1826035584284 W
+Power-Thermal : 1608.5713964415716 W
+VStack : 8.815770018867171 V
+Vcell : 0.3832943486463988 V
+###########
+I :82.7 A
+
+PEM Efficiency : 0.24534713878737455
+Power : 31.652725069236766 W
+Power-Stack : 728.0126765924456 W
+Power-Thermal : 1611.5703234075543 W
+VStack : 8.803055339690998 V
+Vcell : 0.3827415365083043 V
+###########
+I :82.8 A
+
+PEM Efficiency : 0.2449916893631703
+Power : 31.64508653166198 W
+Power-Stack : 727.8369902282255 W
+Power-Thermal : 1614.5750097717744 W
+VStack : 8.790301814350551 V
+Vcell : 0.3821870354065457 V
+###########
+I :82.9 A
+
+PEM Efficiency : 0.24463514369389042
+Power : 31.637195323068685 W
+Power-Stack : 727.6554924305798 W
+Power-Thermal : 1617.5855075694205 W
+VStack : 8.777508955736787 V
+Vcell : 0.381630824162469 V
+###########
+I :83.0 A
+
+PEM Efficiency : 0.2442774879641548
+Power : 31.629049141598767 W
+Power-Stack : 727.4681302567716 W
+Power-Thermal : 1620.6018697432285 W
+VStack : 8.764676268153874 V
+Vcell : 0.3810728812240815 V
+###########
+I :83.1 A
+
+PEM Efficiency : 0.24391870811352429
+Power : 31.620645645004835 W
+Power-Stack : 727.2748498351112 W
+Power-Thermal : 1623.6241501648885 W
+VStack : 8.751803247113253 V
+Vcell : 0.38051318465709794 V
+###########
+I :83.2 A
+
+PEM Efficiency : 0.24355878983058898
+Power : 31.61198244969181 W
+Power-Stack : 727.0755963429116 W
+Power-Thermal : 1626.6524036570886 W
+VStack : 8.738889379121533 V
+Vcell : 0.3799517121357188 V
+###########
+I :83.3 A
+
+PEM Efficiency : 0.24319771854687802
+Power : 31.603057129729706 W
+Power-Stack : 726.8703139837833 W
+Power-Thermal : 1629.6866860162165 W
+VStack : 8.725934141461984 V
+Vcell : 0.37938844093312973 V
+###########
+I :83.4 A
+
+PEM Efficiency : 0.24283547943058306
+Power : 31.593867215836582 W
+Power-Stack : 726.6589459642414 W
+Power-Thermal : 1632.7270540357586 W
+VStack : 8.71293700196932 V
+Vcell : 0.3788233479117096 V
+###########
+I :83.5 A
+
+PEM Efficiency : 0.24247205738009062
+Power : 31.584410194330605 W
+Power-Stack : 726.4414344696039 W
+Power-Thermal : 1635.7735655303961 W
+VStack : 8.69989741879765 V
+Vcell : 0.37825640951294137 V
+###########
+I :83.6 A
+
+PEM Efficiency : 0.2421074370173151
+Power : 31.574683506050167 W
+Power-Stack : 726.2177206391539 W
+Power-Thermal : 1638.826279360846 W
+VStack : 8.686814840181267 V
+Vcell : 0.3776876017470116 V
+###########
+I :83.7 A
+
+PEM Efficiency : 0.24174160268082348
+Power : 31.564684545240485 W
+Power-Stack : 725.9877445405311 W
+Power-Thermal : 1641.885255459469 W
+VStack : 8.673688704187947 V
+Vcell : 0.37711690018208466 V
+###########
+I :83.8 A
+
+PEM Efficiency : 0.24137453841874815
+Power : 31.55441065840611 W
+Power-Stack : 725.7514451433406 W
+Power-Thermal : 1644.9505548566592 W
+VStack : 8.660518438464685 V
+Vcell : 0.37654427993324713 V
+###########
+I :83.9 A
+
+PEM Efficiency : 0.24100622798147436
+Power : 31.543859143127293 W
+Power-Stack : 725.5087602919277 W
+Power-Thermal : 1648.0222397080724 W
+VStack : 8.6473034599753 V
+Vcell : 0.3759697156511 V
+###########
+I :84.0 A
+
+PEM Efficiency : 0.24063665481409902
+Power : 31.533027246839538 W
+Power-Stack : 725.2596266773094 W
+Power-Thermal : 1651.1003733226903 W
+VStack : 8.634043174729873 V
+Vcell : 0.3753931815099945 V
+###########
+I :84.1 A
+
+PEM Efficiency : 0.2402658020486489
+Power : 31.52191216557454 W
+Power-Stack : 725.0039798082145 W
+Power-Thermal : 1654.1850201917853 W
+VStack : 8.620736977505523 V
+Vcell : 0.3748146511958923 V
+###########
+I :84.2 A
+
+PEM Efficiency : 0.23989365249604835
+Power : 31.510511042660944 W
+Power-Stack : 724.7417539812017 W
+Power-Thermal : 1657.2762460187982 W
+VStack : 8.607384251558216 V
+Vcell : 0.37423409789383544 V
+###########
+I :84.3 A
+
+PEM Efficiency : 0.23952018863783126
+Power : 31.49882096738391 W
+Power-Stack : 724.4728822498299 W
+Power-Thermal : 1660.3741177501697 W
+VStack : 8.593984368325385 V
+Vcell : 0.37365149427501676 V
+###########
+I :84.4 A
+
+PEM Efficiency : 0.23914539261758172
+Power : 31.486838973601284 W
+Power-Stack : 724.1972963928296 W
+Power-Thermal : 1663.4787036071707 W
+VStack : 8.580536687118832 V
+Vcell : 0.3730668124834275 V
+###########
+I :84.5 A
+
+PEM Efficiency : 0.2387692462320967
+Power : 31.47456203831499 W
+Power-Stack : 723.9149268812447 W
+Power-Thermal : 1666.5900731187553 W
+VStack : 8.56704055480763 V
+Vcell : 0.3724800241220709 V
+###########
+I :84.6 A
+
+PEM Efficiency : 0.23839173092225796
+Power : 31.461987080195915 W
+Power-Stack : 723.625702844506 W
+Power-Thermal : 1669.708297155494 W
+VStack : 8.553495305490616 V
+Vcell : 0.3718911002387224 V
+###########
+I :84.7 A
+
+PEM Efficiency : 0.23801282776360294
+Power : 31.449110958060384 W
+Power-Stack : 723.3295520353888 W
+Power-Thermal : 1672.8334479646112 W
+VStack : 8.539900260158074 V
+Vcell : 0.3713000113112206 V
+###########
+I :84.8 A
+
+PEM Efficiency : 0.23763251745658084
+Power : 31.435930469296164 W
+Power-Stack : 723.0264007938117 W
+Power-Thermal : 1675.965599206188 W
+VStack : 8.52625472634212 V
+Vcell : 0.3707067272322661 V
+###########
+I :84.9 A
+
+PEM Efficiency : 0.2372507803164828
+Power : 31.422442348236252 W
+Power-Stack : 722.7161740094338 W
+Power-Thermal : 1679.1048259905663 W
+VStack : 8.512557997755405 V
+Vcell : 0.3701112172937132 V
+###########
+I :85.0 A
+
+PEM Efficiency : 0.23686759626303253
+Power : 31.408643264478115 W
+Power-Stack : 722.3987950829967 W
+Power-Thermal : 1682.2512049170032 W
+VStack : 8.498809353917608 V
+Vcell : 0.36951345017033077 V
+###########
+I :85.1 A
+
+PEM Efficiency : 0.2364829448096231
+Power : 31.39452982114632 W
+Power-Stack : 722.0741858863654 W
+Power-Thermal : 1685.4048141136343 W
+VStack : 8.485008059769276 V
+Vcell : 0.36891339390301203 V
+###########
+I :85.2 A
+
+PEM Efficiency : 0.23609680505218555
+Power : 31.380098553096087 W
+Power-Stack : 721.74226672121 W
+Power-Thermal : 1688.56573327879 W
+VStack : 8.471153365272418 V
+Vcell : 0.36831101588140946 V
+###########
+I :85.3 A
+
+PEM Efficiency : 0.23570915565767506
+Power : 31.365345925055507 W
+Power-Stack : 721.4029562762767 W
+Power-Thermal : 1691.734043723723 W
+VStack : 8.457244504997382 V
+Vcell : 0.3677062828259731 V
+###########
+I :85.4 A
+
+PEM Efficiency : 0.2353199748521574
+Power : 31.35026832970382 W
+Power-Stack : 721.0561715831878 W
+Power-Thermal : 1694.9098284168124 W
+VStack : 8.443280697695407 V
+Vcell : 0.36709916076936555 V
+###########
+I :85.5 A
+
+PEM Efficiency : 0.2349292404084787
+Power : 31.33486208568289 W
+Power-Stack : 720.7018279707064 W
+Power-Thermal : 1698.0931720292933 W
+VStack : 8.429261145856216 V
+Vcell : 0.36648961503722677 V
+###########
+I :85.6 A
+
+PEM Efficiency : 0.2345369296335039
+Power : 31.319123435539577 W
+Power-Stack : 720.3398390174103 W
+Power-Thermal : 1701.2841609825896 W
+VStack : 8.41518503525012 V
+Vcell : 0.3658776102282661 V
+###########
+I :85.7 A
+
+PEM Efficiency : 0.2341430193549007
+Power : 31.303048543595388 W
+Power-Stack : 719.9701165026939 W
+Power-Thermal : 1704.4828834973064 W
+VStack : 8.401051534453837 V
+Vcell : 0.3652631101936451 V
+###########
+I :85.8 A
+
+PEM Efficiency : 0.23374748590745456
+Power : 31.286633493740975 W
+Power-Stack : 719.5925703560424 W
+Power-Thermal : 1707.6894296439573 W
+VStack : 8.38685979435947 V
+Vcell : 0.3646460780156291 V
+###########
+I :85.9 A
+
+PEM Efficiency : 0.23335030511889082
+Power : 31.269874287151847 W
+Power-Stack : 719.2071086044925 W
+Power-Thermal : 1710.9038913955076 W
+VStack : 8.372608947665803 V
+Vcell : 0.36402647598546967 V
+###########
+I :86.0 A
+
+PEM Efficiency : 0.23295145229518416
+Power : 31.25276683992191 W
+Power-Stack : 718.813637318204 W
+Power-Thermal : 1714.126362681796 W
+VStack : 8.358298108351208 V
+Vcell : 0.36340426558048733 V
+###########
+I :86.1 A
+
+PEM Efficiency : 0.23255090220533356
+Power : 31.23530698061158 W
+Power-Stack : 718.4120605540663 W
+Power-Thermal : 1717.3569394459334 W
+VStack : 8.343926371127367 V
+Vcell : 0.36277940744032033 V
+###########
+I :86.2 A
+
+PEM Efficiency : 0.23214862906557707
+Power : 31.21749044770628 W
+Power-Stack : 718.0022802972444 W
+Power-Thermal : 1720.5957197027553 W
+VStack : 8.329492810872905 V
+Vcell : 0.3621518613423002 V
+###########
+I :86.3 A
+
+PEM Efficiency : 0.23174460652302414
+Power : 31.199312886981694 W
+Power-Stack : 717.584196400579 W
+Power-Thermal : 1723.842803599421 W
+VStack : 8.314996482046107 V
+Vcell : 0.3615215861759177 V
+###########
+I :86.4 A
+
+PEM Efficiency : 0.23133880763867729
+Power : 31.180769848771483 W
+Power-Stack : 717.1577065217441 W
+Power-Thermal : 1727.098293478256 W
+VStack : 8.30043641807574 V
+Vcell : 0.36088853991633657 V
+###########
+I :86.5 A
+
+PEM Efficiency : 0.2309312048698173
+Power : 31.161856785133146 W
+Power-Stack : 716.7227060580624 W
+Power-Thermal : 1730.3622939419377 W
+VStack : 8.285811630729045 V
+Vcell : 0.360252679596915 V
+###########
+I :86.6 A
+
+PEM Efficiency : 0.2305217700517212
+Power : 31.14256904690733 W
+Power-Stack : 716.2790880788685 W
+Power-Thermal : 1733.6349119211313 W
+VStack : 8.271121109455757 V
+Vcell : 0.3596139612806851 V
+###########
+I :86.7 A
+
+PEM Efficiency : 0.23011047437868495
+Power : 31.122901880665896 W
+Power-Stack : 715.8267432553156 W
+Power-Thermal : 1736.9162567446845 W
+VStack : 8.256363820707216 V
+Vcell : 0.3589723400307485 V
+###########
+I :86.8 A
+
+PEM Efficiency : 0.22969728838431608
+Power : 31.102850425543476 W
+Power-Stack : 715.3655597874999 W
+Power-Thermal : 1740.2064402125002 W
+VStack : 8.241538707229262 V
+Vcell : 0.35832776987953313 V
+###########
+I :86.9 A
+
+PEM Efficiency : 0.22928218192106445
+Power : 31.082409709947186 W
+Power-Stack : 714.8954233287852 W
+Power-Thermal : 1743.505576671215 W
+VStack : 8.226644687327793 V
+Vcell : 0.35768020379686055 V
+###########
+I :87.0 A
+
+PEM Efficiency : 0.228865124138955
+Power : 31.061574648138972 W
+Power-Stack : 714.4162169071964 W
+Power-Thermal : 1746.8137830928035 W
+VStack : 8.211680654105706 V
+Vcell : 0.3570295936567698 V
+###########
+I :87.1 A
+
+PEM Efficiency : 0.22844608346348344
+Power : 31.040340036684274 W
+Power-Stack : 713.9278208437383 W
+Power-Thermal : 1750.1311791562614 W
+VStack : 8.196645474669786 V
+Vcell : 0.3563758902030342 V
+###########
+I :87.2 A
+
+PEM Efficiency : 0.22802502757263768
+Power : 31.018700550761054 W
+Power-Stack : 713.4301126675042 W
+Power-Thermal : 1753.4578873324956 W
+VStack : 8.181537989306241 V
+Vcell : 0.3557190430133148 V
+###########
+I :87.3 A
+
+PEM Efficiency : 0.22760192337300078
+Power : 30.996650740322227 W
+Power-Stack : 712.9229670274112 W
+Power-Thermal : 1756.7940329725889 W
+VStack : 8.166357010623267 V
+Vcell : 0.3550590004618812 V
+###########
+I :87.4 A
+
+PEM Efficiency : 0.2271767369748914
+Power : 30.974185026104593 W
+Power-Stack : 712.4062556004056 W
+Power-Thermal : 1760.1397443995945 W
+VStack : 8.151101322659104 V
+Vcell : 0.35439570968083056 V
+###########
+I :87.5 A
+
+PEM Efficiency : 0.226749433666497
+Power : 30.95129769547684 W
+Power-Stack : 711.8798469959673 W
+Power-Thermal : 1763.4951530040328 W
+VStack : 8.135769679953912 V
+Vcell : 0.3537291165197353 V
+###########
+I :87.6 A
+
+PEM Efficiency : 0.22631997788694724
+Power : 30.92798289811866 W
+Power-Stack : 711.3436066567292 W
+Power-Thermal : 1766.8603933432705 W
+VStack : 8.120360806583667 V
+Vcell : 0.3530591655036377 V
+###########
+I :87.7 A
+
+PEM Efficiency : 0.2258883331982771
+Power : 30.904234641522688 W
+Power-Stack : 710.7973967550219 W
+Power-Thermal : 1770.2356032449782 W
+VStack : 8.104873395154183 V
+Vcell : 0.3523857997893123 V
+###########
+I :87.8 A
+
+PEM Efficiency : 0.22545446225622395
+Power : 30.880046786310483 W
+Power-Stack : 710.2410760851411 W
+Power-Thermal : 1773.6209239148586 W
+VStack : 8.089306105753316 V
+Vcell : 0.3517089611197094 V
+###########
+I :87.9 A
+
+PEM Efficiency : 0.22501832677979938
+Power : 30.855413041353213 W
+Power-Stack : 709.674499951124 W
+Power-Thermal : 1777.016500048876 W
+VStack : 8.073657564859202 V
+Vcell : 0.35102858977648704 V
+###########
+I :88.0 A
+
+PEM Efficiency : 0.22457988751957442
+Power : 30.830326958687177 W
+Power-Stack : 709.0975200498051 W
+Power-Thermal : 1780.4224799501949 W
+VStack : 8.05792636420233 V
+Vcell : 0.3503446245305361 V
+###########
+I :88.1 A
+
+PEM Efficiency : 0.22413910422461097
+Power : 30.804781928213632 W
+Power-Stack : 708.5099843489136 W
+Power-Thermal : 1783.8390156510861 W
+VStack : 8.042111059579042 V
+Vcell : 0.3496570025903931 V
+###########
+I :88.2 A
+
+PEM Efficiency : 0.22369593560797094
+Power : 30.77877117217194 W
+Power-Stack : 707.9117369599546 W
+Power-Thermal : 1787.2662630400455 W
+VStack : 8.026210169613998 V
+Vcell : 0.34896565954843467 V
+###########
+I :88.3 A
+
+PEM Efficiency : 0.22325033931072896
+Power : 30.752287739374296 W
+Power-Stack : 707.3026180056088 W
+Power-Thermal : 1790.704381994391 W
+VStack : 8.010222174468957 V
+Vcell : 0.34827052932473723 V
+###########
+I :88.4 A
+
+PEM Efficiency : 0.22280227186440774
+Power : 30.725324499189288 W
+Power-Stack : 706.6824634813536 W
+Power-Thermal : 1794.1535365186464 W
+VStack : 7.994145514494949 V
+Vcell : 0.34757154410847607 V
+###########
+I :88.5 A
+
+PEM Efficiency : 0.22235168865175603
+Power : 30.69787413526144 W
+Power-Stack : 706.0511051110132 W
+Power-Thermal : 1797.6138948889868 W
+VStack : 7.977978588825007 V
+Vcell : 0.3468686342967394 V
+###########
+I :88.6 A
+
+PEM Efficiency : 0.22189854386577798
+Power : 30.66992913895237 W
+Power-Stack : 705.4083701959045 W
+Power-Thermal : 1801.0856298040953 W
+VStack : 7.961719753904114 V
+Vcell : 0.34616172843061366 V
+###########
+I :88.7 A
+
+PEM Efficiency : 0.22144279046691986
+Power : 30.641481802488638 W
+Power-Stack : 704.7540814572387 W
+Power-Thermal : 1804.5689185427614 W
+VStack : 7.945367321953086 V
+Vcell : 0.345450753128395 V
+###########
+I :88.8 A
+
+PEM Efficiency : 0.2209843801383155
+Power : 30.612524211800572 W
+Power-Stack : 704.0880568714132 W
+Power-Thermal : 1808.0639431285867 W
+VStack : 7.928919559362761 V
+Vcell : 0.3447356330157722 V
+###########
+I :88.9 A
+
+PEM Efficiency : 0.22052326323898122
+Power : 30.583048239034873 W
+Power-Stack : 703.4101094978021 W
+Power-Thermal : 1811.570890502198 W
+VStack : 7.912374685014646 V
+Vcell : 0.3440162906528107 V
+###########
+I :89.0 A
+
+PEM Efficiency : 0.2200593887548485
+Power : 30.553045534723168 W
+Power-Stack : 702.7200472986328 W
+Power-Thermal : 1815.0899527013669 W
+VStack : 7.895730868523965 V
+Vcell : 0.3432926464575637 V
+###########
+I :89.1 A
+
+PEM Efficiency : 0.21959270424751282
+Power : 30.52250751958729 W
+Power-Stack : 702.0176729505076 W
+Power-Thermal : 1818.6213270494923 W
+VStack : 7.878986228400759 V
+Vcell : 0.34256461862612 V
+###########
+I :89.2 A
+
+PEM Efficiency : 0.2191231558005691
+Power : 30.491425375960794 W
+Power-Stack : 701.3027836470983 W
+Power-Thermal : 1822.1652163529018 W
+VStack : 7.86213883012442 V
+Vcell : 0.3418321230488878 V
+###########
+I :89.3 A
+
+PEM Efficiency : 0.21865068796339696
+Power : 30.4597900388049 W
+Power-Stack : 700.5751708925127 W
+Power-Thermal : 1825.7218291074873 W
+VStack : 7.845186684126682 V
+Vcell : 0.3410950732228992 V
+###########
+I :89.4 A
+
+PEM Efficiency : 0.21817524369224797
+Power : 30.427592186295673 W
+Power-Stack : 699.8346202848005 W
+Power-Thermal : 1829.2913797151996 W
+VStack : 7.828127743677857 V
+Vcell : 0.34035338015990685 V
+###########
+I :89.5 A
+
+PEM Efficiency : 0.21769676428847948
+Power : 30.3948222299575 W
+Power-Stack : 699.0809112890225 W
+Power-Thermal : 1832.8740887109775 W
+VStack : 7.8109599026706436 V
+Vcell : 0.33960695229002796 V
+###########
+I :89.6 A
+
+PEM Efficiency : 0.21721518933376507
+Power : 30.361470304316345 W
+Power-Stack : 698.3138169992759 W
+Power-Thermal : 1836.470183000724 W
+VStack : 7.7936809932954905 V
+Vcell : 0.3388556953606735 V
+###########
+I :89.7 A
+
+PEM Efficiency : 0.21673045662210574
+Power : 30.327526256044504 W
+Power-Stack : 697.5331038890236 W
+Power-Thermal : 1840.0798961109765 W
+VStack : 7.776288783601154 V
+Vcell : 0.33809951233048496 V
+###########
+I :89.8 A
+
+PEM Efficiency : 0.21624250208844664
+Power : 30.29297963256631 W
+Power-Stack : 696.7385315490252 W
+Power-Thermal : 1843.7034684509747 W
+VStack : 7.758780974933465 V
+Vcell : 0.33733830325797676 V
+###########
+I :89.9 A
+
+PEM Efficiency : 0.21575125973369685
+Power : 30.257819670092584 W
+Power-Stack : 695.9298524121294 W
+Power-Thermal : 1847.3411475878706 W
+VStack : 7.741155199245044 V
+Vcell : 0.3365719651845671 V
+###########
+I :90.0 A
+
+PEM Efficiency : 0.21525666154593084
+Power : 30.22203528104869 W
+Power-Stack : 695.1068114641199 W
+Power-Thermal : 1850.9931885358799 W
+VStack : 7.723409016267999 V
+Vcell : 0.3358003920116521 V
+###########
+I :90.1 A
+
+PEM Efficiency : 0.2147586374175364
+Power : 30.185615040859247 W
+Power-Stack : 694.2691459397627 W
+Power-Thermal : 1854.6598540602372 W
+VStack : 7.705539910541207 V
+Vcell : 0.3350234743713568 V
+###########
+I :90.2 A
+
+PEM Efficiency : 0.214257115058057
+Power : 30.14854717404932 W
+Power-Stack : 693.4165850031344 W
+Power-Thermal : 1858.3414149968655 W
+VStack : 7.687545288283086 V
+Vcell : 0.33424109949056896 V
+###########
+I :90.3 A
+
+PEM Efficiency : 0.21375201990245463
+Power : 30.11081953961898 W
+Power-Stack : 692.5488494112366 W
+Power-Thermal : 1862.0381505887633 W
+VStack : 7.669422474100073 V
+Vcell : 0.33345315104782924 V
+###########
+I :90.4 A
+
+PEM Efficiency : 0.2132432750145052
+Power : 30.072419615645586 W
+Power-Stack : 691.6656511598485 W
+Power-Thermal : 1865.7503488401517 W
+VStack : 7.651168707520447 V
+Vcell : 0.33265950902262814 V
+###########
+I :90.5 A
+
+PEM Efficiency : 0.21273080098500954
+Power : 30.033334483063648 W
+Power-Stack : 690.7666931104638 W
+Power-Thermal : 1869.478306889536 W
+VStack : 7.632781139342143 V
+Vcell : 0.3318600495366149 V
+###########
+I :90.6 A
+
+PEM Efficiency : 0.21221451582448506
+Power : 29.99355080856942 W
+Power-Stack : 689.8516685970967 W
+Power-Thermal : 1873.222331402903 W
+VStack : 7.614256827782524 V
+Vcell : 0.3310546446861967 V
+###########
+I :90.7 A
+
+PEM Efficiency : 0.21169433484997358
+Power : 29.953054826592464 W
+Power-Stack : 688.9202610116266 W
+Power-Thermal : 1876.9827389883733 W
+VStack : 7.595592734417052 V
+Vcell : 0.3302431623659588 V
+###########
+I :90.8 A
+
+PEM Efficiency : 0.21117017056557477
+Power : 29.911832320272538 W
+Power-Stack : 687.9721433662684 W
+Power-Thermal : 1880.7598566337313 W
+VStack : 7.576785719892824 V
+Vcell : 0.32942546608229667 V
+###########
+I :90.9 A
+
+PEM Efficiency : 0.21064193253628197
+Power : 29.86986860137493 W
+Power-Stack : 687.0069778316233 W
+Power-Thermal : 1884.5540221683766 W
+VStack : 7.557832539401797 V
+Vcell : 0.3286014147565999 V
+###########
+I :91.0 A
+
+PEM Efficiency : 0.2101095272546666
+Power : 29.827148489072474 W
+Power-Stack : 686.0244152486669 W
+Power-Thermal : 1888.365584751333 W
+VStack : 7.538729837897439 V
+Vcell : 0.32777086251727994 V
+###########
+I :91.1 A
+
+PEM Efficiency : 0.2095728579999166
+Power : 29.783656287516145 W
+Power-Stack : 685.0240946128713 W
+Power-Thermal : 1892.1949053871283 W
+VStack : 7.519474145037007 V
+Vcell : 0.3269336584798699 V
+###########
+I :91.2 A
+
+PEM Efficiency : 0.20903182468869913
+Power : 29.739375762110605 W
+Power-Stack : 684.005642528544 W
+Power-Thermal : 1896.0423574714562 W
+VStack : 7.5000618698305255 V
+Vcell : 0.32608964651437067 V
+###########
+I :91.3 A
+
+PEM Efficiency : 0.20848632371727052
+Power : 29.694290114403408 W
+Power-Stack : 682.9686726312784 W
+Power-Thermal : 1899.9083273687213 W
+VStack : 7.480489294975667 V
+Vcell : 0.32523866499894205 V
+###########
+I :91.4 A
+
+PEM Efficiency : 0.20793624779420838
+Power : 29.648381955489413 W
+Power-Stack : 681.9127849762565 W
+Power-Thermal : 1903.7932150237436 W
+VStack : 7.460752570856197 V
+Vcell : 0.3243805465589651 V
+###########
+I :91.5 A
+
+PEM Efficiency : 0.2073814857630932
+Power : 29.601633277823925 W
+Power-Stack : 680.8375653899503 W
+Power-Thermal : 1907.6974346100496 W
+VStack : 7.440847709179785 V
+Vcell : 0.3235151177904254 V
+###########
+I :91.6 A
+
+PEM Efficiency : 0.20682192241440114
+Power : 29.554025425328263 W
+Power-Stack : 679.74258478255 W
+Power-Thermal : 1911.6214152174498 W
+VStack : 7.420770576228713 V
+Vcell : 0.3226421989664658 V
+###########
+I :91.7 A
+
+PEM Efficiency : 0.20625743828581486
+Power : 29.50553906166239 W
+Power-Stack : 678.627398418235 W
+Power-Thermal : 1915.5656015817651 W
+VStack : 7.400516885695038 V
+Vcell : 0.3217616037258712 V
+###########
+I :91.8 A
+
+PEM Efficiency : 0.20568790945008375
+Power : 29.45615413652759 W
+Power-Stack : 677.4915451401346 W
+Power-Thermal : 1919.5304548598654 W
+VStack : 7.380082191069005 V
+Vcell : 0.32087313874213064 V
+###########
+I :91.9 A
+
+PEM Efficiency : 0.2051132072894889
+Power : 29.40584984985029 W
+Power-Stack : 676.3345465465567 W
+Power-Thermal : 1923.5164534534433 W
+VStack : 7.359461877546862 V
+Vcell : 0.3199766033716027 V
+###########
+I :92.0 A
+
+PEM Efficiency : 0.20453319825588978
+Power : 29.3546046136853 W
+Power-Stack : 675.1559061147619 W
+Power-Thermal : 1927.524093885238 W
+VStack : 7.338651153421325 V
+Vcell : 0.31907178927918806 V
+###########
+I :92.1 A
+
+PEM Efficiency : 0.2039477436152252
+Power : 29.302396011661095 W
+Power-Stack : 673.9551082682052 W
+Power-Thermal : 1931.5538917317947 W
+VStack : 7.317645040914281 V
+Vcell : 0.31815848003975133 V
+###########
+I :92.2 A
+
+PEM Efficiency : 0.20335669917525062
+Power : 29.249200755774652 W
+Power-Stack : 672.731617382817 W
+Power-Thermal : 1935.606382617183 W
+VStack : 7.296438366407993 V
+Vcell : 0.317236450713391 V
+###########
+I :92.3 A
+
+PEM Efficiency : 0.20275991499517051
+Power : 29.194994640324612 W
+Power-Stack : 671.484876727466 W
+Power-Thermal : 1939.6821232725338 W
+VStack : 7.275025750026718 V
+Vcell : 0.316305467392466 V
+###########
+I :92.4 A
+
+PEM Efficiency : 0.20215723507570169
+Power : 29.139752492751942 W
+Power-Stack : 670.2143073332946 W
+Power-Thermal : 1943.7816926667053 W
+VStack : 7.253401594516176 V
+Vcell : 0.3153652867180946 V
+###########
+I :92.5 A
+
+PEM Efficiency : 0.20154849702796607
+Power : 29.0834481211355 W
+Power-Stack : 668.9193067861165 W
+Power-Thermal : 1947.9056932138833 W
+VStack : 7.231560073363422 V
+Vcell : 0.31441565536362703 V
+###########
+I :92.6 A
+
+PEM Efficiency : 0.2009335317194498
+Power : 29.02605425806484 W
+Power-Stack : 667.5992479354913 W
+Power-Thermal : 1952.0547520645084 W
+VStack : 7.20949511809386 V
+Vcell : 0.3134563094823417 V
+###########
+I :92.7 A
+
+PEM Efficiency : 0.20031216289509896
+Power : 28.967542500586053 W
+Power-Stack : 666.2534775134792 W
+Power-Thermal : 1956.2295224865209 W
+VStack : 7.187200404676151 V
+Vcell : 0.3124869741163544 V
+###########
+I :92.8 A
+
+PEM Efficiency : 0.19968420677142443
+Power : 28.90788324588557 W
+Power-Stack : 664.8813146553681 W
+Power-Thermal : 1960.4306853446317 W
+VStack : 7.164669338958708 V
+Vcell : 0.3115073625634221 V
+###########
+I :92.9 A
+
+PEM Efficiency : 0.19904947160127653
+Power : 28.847045622343405 W
+Power-Stack : 663.4820493138983 W
+Power-Thermal : 1964.6589506861017 W
+VStack : 7.141895041053803 V
+Vcell : 0.3105171756979914 V
+###########
+I :93.0 A
+
+PEM Efficiency : 0.19840775720670903
+Power : 28.784997415549345 W
+Power-Stack : 662.054940557635 W
+Power-Thermal : 1968.915059442365 W
+VStack : 7.11887032857672 V
+Vcell : 0.3095161012424661 V
+###########
+I :93.1 A
+
+PEM Efficiency : 0.1977588544770806
+Power : 28.72170498883328 W
+Power-Stack : 660.5992147431655 W
+Power-Thermal : 1973.1997852568345 W
+VStack : 7.095587698637653 V
+Vcell : 0.3085038129842458 V
+###########
+I :93.2 A
+
+PEM Efficiency : 0.19710254482924688
+Power : 28.657133197813863 W
+Power-Stack : 659.1140635497188 W
+Power-Thermal : 1977.513936450281 W
+VStack : 7.072039308473379 V
+Vcell : 0.30747996993362514 V
+###########
+I :93.3 A
+
+PEM Efficiency : 0.19643859962634982
+Power : 28.591245298415966 W
+Power-Stack : 657.5986418635672 W
+Power-Thermal : 1981.8583581364326 W
+VStack : 7.048216954593433 V
+Vcell : 0.30644421541710576 V
+###########
+I :93.4 A
+
+PEM Efficiency : 0.19576677955133678
+Power : 28.52400284774798 W
+Power-Stack : 656.0520654982035 W
+Power-Thermal : 1986.2339345017965 W
+VStack : 7.024112050301964 V
+Vcell : 0.3053961761000854 V
+###########
+I :93.5 A
+
+PEM Efficiency : 0.1950868339309106
+Power : 28.455365597162626 W
+Power-Stack : 654.4734087347404 W
+Power-Thermal : 1990.6415912652594 W
+VStack : 6.999715601441073 V
+Vcell : 0.3043354609322206 V
+###########
+I :93.6 A
+
+PEM Efficiency : 0.1943985000051282
+Power : 28.3852913767488 W
+Power-Stack : 652.8617016652224 W
+Power-Thermal : 1995.0822983347773 W
+VStack : 6.9750181801840005 V
+Vcell : 0.30326166000800003 V
+###########
+I :93.7 A
+
+PEM Efficiency : 0.19370150213731754
+Power : 28.313735970415983 W
+Power-Stack : 651.2159273195676 W
+Power-Thermal : 1999.5570726804324 W
+VStack : 6.950009896686954 V
+Vcell : 0.3021743433342154 V
+###########
+I :93.8 A
+
+PEM Efficiency : 0.19299555095836568
+Power : 28.240652980635733 W
+Power-Stack : 649.5350185546218 W
+Power-Thermal : 2004.0669814453777 W
+VStack : 6.924680368386161 V
+Vcell : 0.3010730594950505 V
+###########
+I :93.9 A
+
+PEM Efficiency : 0.1922803424387231
+Power : 28.165993681793918 W
+Power-Stack : 647.8178546812601 W
+Power-Thermal : 2008.61314531874 W
+VStack : 6.899018686701385 V
+Vcell : 0.29995733420440807 V
+###########
+I :94.0 A
+
+PEM Efficiency : 0.19155555688067272
+Power : 28.08970686098185 W
+Power-Stack : 646.0632578025825 W
+Power-Thermal : 2013.1967421974175 W
+VStack : 6.873013380878537 V
+Vcell : 0.29882666873384944 V
+###########
+I :94.1 A
+
+PEM Efficiency : 0.19082085782249725
+Power : 28.011738644911304 W
+Power-Stack : 644.26998883296 W
+Power-Thermal : 2017.8190111670397 W
+VStack : 6.846652378671201 V
+Vcell : 0.2976805382030957 V
+###########
+I :94.2 A
+
+PEM Efficiency : 0.19007589084513832
+Power : 27.93203231147477 W
+Power-Stack : 642.4367431639197 W
+Power-Thermal : 2022.4812568360803 W
+VStack : 6.819922963523564 V
+Vcell : 0.2965183897184158 V
+###########
+I :94.3 A
+
+PEM Efficiency : 0.18932028227074602
+Power : 27.850528084284903 W
+Power-Stack : 640.5621459385528 W
+Power-Thermal : 2027.1848540614471 W
+VStack : 6.7928117278743665 V
+Vcell : 0.29533964034236376 V
+###########
+I :94.4 A
+
+PEM Efficiency : 0.18855363774114886
+Power : 27.76716290831255 W
+Power-Stack : 638.6447468911887 W
+Power-Thermal : 2031.9312531088112 W
+VStack : 6.765304522152422 V
+Vcell : 0.29414367487619225 V
+###########
+I :94.5 A
+
+PEM Efficiency : 0.18777554066269989
+Power : 27.68187020449522 W
+Power-Stack : 636.6830147033901 W
+Power-Thermal : 2036.7219852966098 W
+VStack : 6.737386398977672 V
+Vcell : 0.29292984343381184 V
+###########
+I :94.6 A
+
+PEM Efficiency : 0.18698555050213356
+Power : 27.59457960090286 W
+Power-Stack : 634.6753308207658 W
+Power-Thermal : 2041.5586691792341 W
+VStack : 6.7090415520165525 V
+Vcell : 0.29169745878332837 V
+###########
+I :94.7 A
+
+PEM Efficiency : 0.1861832009159743
+Power : 27.505216637718718 W
+Power-Stack : 632.6199826675305 W
+Power-Thermal : 2046.4430173324697 W
+VStack : 6.680253248865158 V
+Vcell : 0.2904457934289199 V
+###########
+I :94.8 A
+
+PEM Efficiency : 0.18536799769359535
+Power : 27.41370244291043 W
+Power-Stack : 630.5151561869399 W
+Power-Thermal : 2051.37684381306 W
+VStack : 6.651003757246201 V
+Vcell : 0.28917407640200876 V
+###########
+I :94.9 A
+
+PEM Efficiency : 0.18453941649119746
+Power : 27.319953375022838 W
+Power-Stack : 628.3589276255252 W
+Power-Thermal : 2056.362072374475 W
+VStack : 6.621274263704165 V
+Vcell : 0.28788148972626804 V
+###########
+I :95.0 A
+
+PEM Efficiency : 0.18369690033067568
+Power : 27.223880629006135 W
+Power-Stack : 626.1492544671411 W
+Power-Thermal : 2061.4007455328588 W
+VStack : 6.5910447838646435 V
+Vcell : 0.28656716451585407 V
+###########
+I :95.1 A
+
+PEM Efficiency : 0.18283985683347834
+Power : 27.12538980038751 W
+Power-Stack : 623.8839654089127 W
+Power-Thermal : 2066.495034591087 W
+VStack : 6.560294063185203 V
+Vcell : 0.2852301766602262 V
+###########
+I :95.2 A
+
+PEM Efficiency : 0.18196765515503524
+Power : 27.02438040238459 W
+Power-Stack : 621.5607492548456 W
+Power-Thermal : 2071.6472507451545 W
+VStack : 6.528999466962664 V
+Vcell : 0.28386954204185494 V
+###########
+I :95.3 A
+
+PEM Efficiency : 0.18107962257999316
+Power : 26.920745329722422 W
+Power-Stack : 619.1771425836157 W
+Power-Thermal : 2076.8598574163843 W
+VStack : 6.497136858170155 V
+Vcell : 0.28248421122478934 V
+###########
+I :95.4 A
+
+PEM Efficiency : 0.1801750407322058
+Power : 26.814370261929795 W
+Power-Stack : 616.7305160243853 W
+Power-Thermal : 2082.1354839756145 W
+VStack : 6.464680461471544 V
+Vcell : 0.28107306354224104 V
+###########
+I :95.5 A
+
+PEM Efficiency : 0.17925314134595274
+Power : 26.705132997720042 W
+Power-Stack : 614.218058947561 W
+Power-Thermal : 2087.4769410524386 W
+VStack : 6.431602711492785 V
+Vcell : 0.2796349004996863 V
+###########
+I :95.6 A
+
+PEM Efficiency : 0.17831310153598506
+Power : 26.592902710670668 W
+Power-Stack : 611.6367623454254 W
+Power-Thermal : 2092.887237654574 W
+VStack : 6.3978740831111445 V
+Vcell : 0.2781684383961367 V
+###########
+I :95.7 A
+
+PEM Efficiency : 0.17735403849338843
+Power : 26.477539114754947 W
+Power-Stack : 608.9833996393638 W
+Power-Thermal : 2098.369600360636 W
+VStack : 6.3634629011427775 V
+Vcell : 0.27667230004968596 V
+###########
+I :95.8 A
+
+PEM Efficiency : 0.1763750035215359
+Power : 26.358891526286502 W
+Power-Stack : 606.2545051045895 W
+Power-Thermal : 2103.9274948954103 W
+VStack : 6.328335126352709 V
+Vcell : 0.27514500549359605 V
+###########
+I :95.9 A
+
+PEM Efficiency : 0.17537497531108567
+Power : 26.236797806439665 W
+Power-Stack : 603.4463495481123 W
+Power-Thermal : 2109.5646504518877 W
+VStack : 6.292454114161754 V
+Vcell : 0.27358496148529365 V
+###########
+I :96.0 A
+
+PEM Efficiency : 0.1743528523344607
+Power : 26.11108316560884 W
+Power-Stack : 600.5549128090033 W
+Power-Thermal : 2115.285087190997 W
+VStack : 6.255780341760451 V
+Vcell : 0.2719904496417587 V
+###########
+I :96.1 A
+
+PEM Efficiency : 0.17330744421773475
+Power : 25.981558807345927 W
+Power-Stack : 597.5758525689563 W
+Power-Thermal : 2121.0931474310437 W
+VStack : 6.218271098532324 V
+Vcell : 0.27035961297966626 V
+###########
+I :96.2 A
+
+PEM Efficiency : 0.17223746192036224
+Power : 25.848020385312605 W
+Power-Stack : 594.5044688621899 W
+Power-Thermal : 2126.9935311378104 W
+VStack : 6.179880133702598 V
+Vcell : 0.26869044059576513 V
+###########
+I :96.3 A
+
+PEM Efficiency : 0.17114150651945909
+Power : 25.710246241405304 W
+Power-Stack : 591.335663552322 W
+Power-Thermal : 2132.991336447678 W
+VStack : 6.140557253918193 V
+Vcell : 0.2669807501703562 V
+###########
+I :96.4 A
+
+PEM Efficiency : 0.17001805635370187
+Power : 25.567995386695106 W
+Power-Stack : 588.0638938939875 W
+Power-Thermal : 2139.0921061060126 W
+VStack : 6.100247861970824 V
+Vcell : 0.26522816791177495 V
+###########
+I :96.5 A
+
+PEM Efficiency : 0.16886545223024985
+Power : 25.42100517874181 W
+Power-Stack : 584.6831191110616 W
+Power-Thermal : 2145.3018808889383 W
+VStack : 6.058892426021365 V
+Vcell : 0.26343010547918977 V
+###########
+I :96.6 A
+
+PEM Efficiency : 0.16768188033357434
+Power : 25.26898863874832 W
+Power-Stack : 581.1867386912113 W
+Power-Thermal : 2151.627261308788 W
+VStack : 6.016425866368648 V
+Vcell : 0.261583733320376 V
+###########
+I :96.7 A
+
+PEM Efficiency : 0.1664653523940124
+Power : 25.111631339341557 W
+Power-Stack : 577.5675208048558 W
+Power-Thermal : 2158.075479195144 W
+VStack : 5.972776843897164 V
+Vcell : 0.2596859497346593 V
+###########
+I :96.8 A
+
+PEM Efficiency : 0.16521368257130242
+Power : 24.948587777727237 W
+Power-Stack : 573.8175188877265 W
+Power-Thermal : 2164.654481112273 W
+VStack : 5.927866930658331 V
+Vcell : 0.2577333448112318 V
+###########
+I :96.9 A
+
+PEM Efficiency : 0.16392446037767486
+Power : 24.779477128530846 W
+Power-Stack : 569.9279739562095 W
+Power-Thermal : 2171.3730260437906 W
+VStack : 5.881609638350975 V
+Vcell : 0.2557221581891728 V
+###########
+I :97.0 A
+
+PEM Efficiency : 0.16259501879729218
+Power : 24.603878244406257 W
+Power-Stack : 565.8891996213439 W
+Power-Thermal : 2178.240800378656 W
+VStack : 5.833909274446844 V
+Vcell : 0.25364822932377584 V
+###########
+I :97.1 A
+
+PEM Efficiency : 0.1612223965416508
+Power : 24.421323738543094 W
+Power-Stack : 561.6904459864911 W
+Power-Thermal : 2185.2685540135085 W
+VStack : 5.7846595879144305 V
+Vcell : 0.25150693860497525 V
+###########
+I :97.2 A
+
+PEM Efficiency : 0.15980329309700805
+Power : 24.231292938885527 W
+Power-Stack : 557.3197375943671 W
+Power-Thermal : 2192.468262405633 W
+VStack : 5.733742156320649 V
+Vcell : 0.2492931372313326 V
+###########
+I :97.3 A
+
+PEM Efficiency : 0.15833401484623488
+Power : 24.0332034454803 W
+Power-Stack : 552.7636792460469 W
+Power-Thermal : 2199.853320753953 W
+VStack : 5.681024452682907 V
+Vcell : 0.2470010631601264 V
+###########
+I :97.4 A
+
+PEM Efficiency : 0.15681041005016444
+Power : 23.826400944662186 W
+Power-Stack : 548.0072217272303 W
+Power-Thermal : 2207.43877827277 W
+VStack : 5.6263575125999 V
+Vcell : 0.24462423967825653 V
+###########
+I :97.5 A
+
+PEM Efficiency : 0.15522778980449747
+Power : 23.610146829264067 W
+Power-Stack : 543.0333770730736 W
+Power-Thermal : 2215.2416229269265 W
+VStack : 5.569573098185369 V
+Vcell : 0.24215535209501607 V
+###########
+I :97.6 A
+
+PEM Efficiency : 0.1535808311778899
+Power : 23.3836030318208 W
+Power-Stack : 537.8228697318784 W
+Power-Thermal : 2223.281130268121 W
+VStack : 5.510480222662689 V
+Vcell : 0.23958609663750824 V
+###########
+I :97.7 A
+
+PEM Efficiency : 0.15186345748238853
+Power : 23.145813281805804 W
+Power-Stack : 532.3537054815334 W
+Power-Thermal : 2231.5792945184667 W
+VStack : 5.4488608544681005 V
+Vcell : 0.23690699367252613 V
+###########
+I :97.8 A
+
+PEM Efficiency : 0.1500686888753255
+Power : 22.895679724330666 W
+Power-Stack : 526.6006336596054 W
+Power-Thermal : 2240.1613663403946 W
+VStack : 5.38446455684668 V
+Vcell : 0.23410715464550783 V
+###########
+I :97.9 A
+
+PEM Efficiency : 0.14818845400844755
+Power : 22.631933449986143 W
+Power-Stack : 520.5344693496813 W
+Power-Thermal : 2249.056530650319 W
+VStack : 5.317001729823098 V
+Vcell : 0.23117398825317817 V
+###########
diff --git a/Documents/Larminie_Dicks.ipynb b/Documents/Larminie_Dicks.ipynb
index 75607907..5629b50e 100644
--- a/Documents/Larminie_Dicks.ipynb
+++ b/Documents/Larminie_Dicks.ipynb
@@ -11,7 +11,35 @@
"cell_type": "markdown",
"metadata": {},
"source": [
- "### Version 0.9"
+ "### Version 1.0"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "
+This model is an integration of Padulles-Hauer dynamic model with Amphlett static model. The advantage of this dynamic
+model is using Amphlett equation for simulating the polarization values. Amphlett model as the most complicated and
+preferable static model, but the most precise. Based on this model, the obtained polarization voltage is identical to
+the experimental results.
+
+
Inputs
+
+
+
+Input
+
+Description
+
+Value
+
+
+
+
+A
+
+
+Active area [cm^2]
+
+
+50.6
+
+
+
+B
+
+
+An empirical constant depending on the cell and its operation state (Tafel slope) [V]
+
+
+0.016
+
+
+
+CV
+
+
+Conversion factor
+
+
+2
+
+
+
+E0
+
+
+No load voltage [V], Default Value:1.229
+
+
+1.229
+
+
+
+JMax
+
+
+Maximum current density [A/(cm^2)]
+
+
+1.5
+
+
+
+KH2
+
+
+Hydrogen valve constant [kmol.s^(-1).atm^(-1)]
+
+
+4.22e-05
+
+
+
+KH2O
+
+
+Water valve constant [kmol.s^(-1).atm^(-1)]
+
+
+7.716e-06
+
+
+
+KO2
+
+
+Oxygen valve constant [kmol.s^(-1).atm^(-1)]
+
+
+2.11e-05
+
+
+
+N0
+
+
+Number of cells
+
+
+5
+
+
+
+R
+
+
+R-Electronic [ohm] (*Optional)
+
+
+0
+
+
+
+T
+
+
+Fuel cell temperature [K]
+
+
+343
+
+
+
+i-start
+
+
+Cell operating current start point [A]
+
+
+0.1
+
+
+
+i-step
+
+
+Cell operating current step
+
+
+0.1
+
+
+
+i-stop
+
+
+Cell operating current end point [A]
+
+
+75
+
+
+
+l
+
+
+Membrane thickness [cm]
+
+
+0.0178
+
+
+
+lambda
+
+
+An adjustable parameter with a min value of 14 and max value of 23
+
+
+23
+
+
+
+qMethanol
+
+
+Molar flow of methanol [kmol.s^(-1)]
+
+
+0.0002
+
+
+
+rho
+
+
+Hydrogen-Oxygen flow rate
+
+
+1.168
+
+
+
+t1
+
+
+Reformer time constant [s]
+
+
+2
+
+
+
+t2
+
+
+Reformer time constant [s]
+
+
+2
+
+
+
+tH2
+
+
+Hydrogen time constant [s]
+
+
+3.37
+
+
+
+tH2O
+
+
+Water time constant [s]
+
+
+18.418
+
+
+
+tO2
+
+
+Oxygen time constant [s]
+
+
+6.74
+
+
+
Overall Parameters
+
+
+
+Parameter
+
+Description
+
+Value
+
+
+
+
+Efficiency|Pmax
+
+
+Cell efficiency at maximum power
+
+
+0.26086641725522863
+
+
+
+Pmax
+
+
+Maximum power [W]
+
+
+131.03841871564646
+
+
+
+Ptotal(Elec)
+
+
+Total electrical power [W]
+
+
+207.12762088811104
+
+
+
+Ptotal(Thermal)
+
+
+Total thermal power [W]
+
+
+252.8923791118888
+
+
+
+VFC|Pmax
+
+
+Cell voltage at maximum power [V]
+
+
+2.0347580545907835
+
+
+
Graphs
+
+
+
+
+
+
+
+
+
+
+
+
+
+Parameter
+
+Description
+
+Value
+
+
+
+
+K
+
+
+Slope of the curve obtained by linear approximation [A^(-1)]
+
+
+-0.02948220388238217
+
+
+
+Pmax(L-Approx)
+
+
+Maximum power obtained by linear approximation [W]
+
+
+127.35934283349675
+
+
+
+V0
+
+
+Intercept of the curve obtained by linear approximation [V]
+
+
+3.8754788667948428
+
+
+
+VFC|Pmax(L-Approx)
+
+
+Cell voltage at maximum power obtained by linear approximation [V]
+
+
+
\ No newline at end of file
diff --git a/Documents/Padulles-Amphlett/Padulles_Amphlett_Test.opem b/Documents/Padulles-Amphlett/Padulles_Amphlett_Test.opem
new file mode 100644
index 00000000..8b7b92f3
--- /dev/null
+++ b/Documents/Padulles-Amphlett/Padulles_Amphlett_Test.opem
@@ -0,0 +1,11273 @@
+ ___
+ / _ \ _ __ ___ _ __ ___
+| | | || '_ \ / _ \| '_ ` _ \
+| |_| || |_) || __/| | | | | |
+ \___/ | .__/ \___||_| |_| |_|
+ |_|
+Simulation Date : 2019-02-22 18:16:13.540647
+**********
+Padulles-Amphlett Model
+
+**********
+Simulation Inputs :
+
+A : 50.6
+B : 0.016
+CV : 2
+E0 : 1.229
+JMax : 1.5
+KH2 : 4.22e-05
+KH2O : 7.716e-06
+KO2 : 2.11e-05
+N0 : 5
+Name : Padulles_Amphlett_Test
+R : 0
+T : 343
+i-start : 0.1
+i-step : 0.1
+i-stop : 75
+l : 0.0178
+lambda : 23
+qMethanol : 0.0002
+rho : 1.168
+t1 : 2
+t2 : 2
+tH2 : 3.37
+tH2O : 18.418
+tO2 : 6.74
+**********
+I :0.1 A
+
+E : 6.0684154992732005 V
+Eta Activation : 0.18557231242539243 V
+Eta Concentration : 2.109426805213159e-05 V
+Eta Ohmic : 0.00017548304819292376 V
+FC Efficiency : 0.6589193654570529
+FC Power : 0.5139571050565013 W
+FC Voltage : 5.139571050565013 V
+Loss : 0.1857688897416375 V
+PH2 : 0.19717074233280188 atm
+PH2O : 0.2426831613626925 atm
+PO2 : 0.1906263686382979 atm
+Power-Thermal : 0.10104289494349877 W
+###########
+I :0.2 A
+
+E : 6.068413961701556 V
+Eta Activation : 0.23146009851376736 V
+Eta Concentration : 4.221638333089875e-05 V
+Eta Ohmic : 0.0003510800160998837 V
+FC Efficiency : 0.629377818863534
+FC Power : 0.9818293974271133 W
+FC Voltage : 4.909146987135566 V
+Loss : 0.23185339491319815 V
+PH2 : 0.1971566919511875 atm
+PH2O : 0.24266586776736396 atm
+PO2 : 0.1906184358000996 atm
+Power-Thermal : 0.2481706025728869 W
+###########
+I :0.3 A
+
+E : 6.068412424065923 V
+Eta Activation : 0.2583036192079603 V
+Eta Concentration : 6.336641945755048e-05 V
+Eta Ohmic : 0.0005267910327125488 V
+FC Efficiency : 0.6120440436878553
+FC Power : 1.4321830622295815 W
+FC Voltage : 4.773943540765272 V
+Loss : 0.25889377666013036 V
+PH2 : 0.19714264156957312 atm
+PH2O : 0.24264857417203542 atm
+PO2 : 0.1906105029619013 atm
+Power-Thermal : 0.41281693777041856 W
+###########
+I :0.4 A
+
+E : 6.068410886366294 V
+Eta Activation : 0.27735002084480426 V
+Eta Concentration : 8.454445034568427e-05 V
+Eta Ohmic : 0.0007026162388380664 V
+FC Efficiency : 0.5997083306020967
+FC Power : 1.871089991478542 W
+FC Voltage : 4.677724978696355 V
+Loss : 0.278137181533988 V
+PH2 : 0.19712859118795872 atm
+PH2O : 0.24263128057670688 atm
+PO2 : 0.19060257012370302 atm
+Power-Thermal : 0.5889100085214584 W
+###########
+I :0.5 A
+
+E : 6.068409348602667 V
+Eta Activation : 0.2921240370409447 V
+Eta Concentration : 0.00010575055020278165 V
+Eta Ohmic : 0.0008785557847524419 V
+FC Efficiency : 0.5901112348363035
+FC Power : 2.3014338158615835 W
+FC Voltage : 4.602867631723167 V
+Loss : 0.2931083433758999 V
+PH2 : 0.19711454080634436 atm
+PH2O : 0.24261398698137834 atm
+PO2 : 0.1905946372855047 atm
+Power-Thermal : 0.7735661841384167 W
+###########
+I :0.6 A
+
+E : 6.0684078107750326 V
+Eta Activation : 0.3041956781419353 V
+Eta Concentration : 0.00012698479353178086 V
+Eta Ohmic : 0.0010546098289093816 V
+FC Efficiency : 0.582246339352968
+FC Power : 2.72491286817189 W
+FC Voltage : 4.54152144695315 V
+Loss : 0.3053772727643765 V
+PH2 : 0.19710049042472996 atm
+PH2O : 0.2425966933860498 atm
+PO2 : 0.1905867044473064 atm
+Power-Thermal : 0.9650871318281099 W
+###########
+I :0.7 A
+
+E : 6.068406272883388 V
+Eta Activation : 0.31440243547871893 V
+Eta Concentration : 0.000148247255132642 V
+Eta Ohmic : 0.0012307785370829418 V
+FC Efficiency : 0.5755767905806046
+FC Power : 3.142649276570101 W
+FC Voltage : 4.489498966528716 V
+Loss : 0.3157814612709345 V
+PH2 : 0.19708644004311557 atm
+PH2O : 0.24257939979072127 atm
+PO2 : 0.19057877160910808 atm
+Power-Thermal : 1.162350723429899 W
+###########
+I :0.8 A
+
+E : 6.068404734927729 V
+Eta Activation : 0.3232442167420945 V
+Eta Concentration : 0.00016953801010392253 V
+Eta Ohmic : 0.0014070620817435461 V
+FC Efficiency : 0.5697821347125663
+FC Power : 3.555440520606415 W
+FC Voltage : 4.444300650758018 V
+Loss : 0.32482081683394204 V
+PH2 : 0.19707238966150117 atm
+PH2O : 0.24256210619539273 atm
+PO2 : 0.1905708387709098 atm
+Power-Thermal : 1.3645594793935858 W
+###########
+I :0.9 A
+
+E : 6.068403196908046 V
+Eta Activation : 0.3310434726426763 V
+Eta Concentration : 0.00019085713384438152 V
+Eta Ohmic : 0.0015834606415773538 V
+FC Efficiency : 0.564655672412507
+FC Power : 3.9638828203358005 W
+FC Voltage : 4.404314244817556 V
+Loss : 0.332817790418098 V
+PH2 : 0.19705833927988675 atm
+PH2O : 0.24254481260006414 atm
+PO2 : 0.19056290593271147 atm
+Power-Thermal : 1.5711171796642 W
+###########
+I :1.0 A
+
+E : 6.068401658824337 V
+Eta Activation : 0.33802037026202836 V
+Eta Concentration : 0.00021220470205456714 V
+Eta Ohmic : 0.0017599744011013664 V
+FC Efficiency : 0.5600562707690275
+FC Power : 4.368438911998416 W
+FC Voltage : 4.368438911998416 V
+Loss : 0.3399925493651843 V
+PH2 : 0.19704428889827239 atm
+PH2O : 0.2425275190047356 atm
+PO2 : 0.1905549730945132 atm
+Power-Thermal : 1.7815610880015846 W
+###########
+I :1.1 A
+
+E : 6.068400120676597 V
+Eta Activation : 0.3443319458183834 V
+Eta Concentration : 0.0002335807907384422 V
+Eta Ohmic : 0.0019366035503462617 V
+FC Efficiency : 0.5558832653691355
+FC Power : 4.769478416867183 W
+FC Voltage : 4.335889469879257 V
+Loss : 0.34650213015946807 V
+PH2 : 0.197030238516658 atm
+PH2O : 0.24251022540940706 atm
+PO2 : 0.19054704025631486 atm
+Power-Thermal : 1.9955215831328177 W
+###########
+I :1.2 A
+
+E : 6.068398582464819 V
+Eta Activation : 0.35009414904739194 V
+Eta Concentration : 0.00025498547620500224 V
+Eta Ohmic : 0.002113348284589288 V
+FC Efficiency : 0.5520623292851136
+FC Power : 5.167303402108664 W
+FC Voltage : 4.306086168423887 V
+Loss : 0.35246248280818626 V
+PH2 : 0.1970161881350436 atm
+PH2O : 0.24249293181407852 atm
+PO2 : 0.19053910741811658 atm
+Power-Thermal : 2.212696597891336 W
+###########
+I :1.3 A
+
+E : 6.068397044188998 V
+Eta Activation : 0.35539503345654255 V
+Eta Concentration : 0.0002764188350699048 V
+Eta Ohmic : 0.0022902088041253615 V
+FC Efficiency : 0.548537017783373
+FC Power : 5.562165360323403 W
+FC Voltage : 4.27858873871031 V
+Loss : 0.3579616610957378 V
+PH2 : 0.19700213775342923 atm
+PH2O : 0.24247563821874998 atm
+PO2 : 0.19053117457991825 atm
+Power-Thermal : 2.4328346396765976 W
+###########
+I :1.4 A
+
+E : 6.06839550584913 V
+Eta Activation : 0.36030304442922906 V
+Eta Concentration : 0.00029788094425712723 V
+Eta Ohmic : 0.0024671853140681515 V
+FC Efficiency : 0.5452634554373536
+FC Power : 5.954276933375901 W
+FC Voltage : 4.253054952411358 V
+Loss : 0.36306811068755435 V
+PH2 : 0.19698808737181484 atm
+PH2O : 0.24245834462342142 atm
+PO2 : 0.19052324174171997 atm
+Power-Thermal : 2.6557230666240987 W
+###########
+I :1.5 A
+
+E : 6.068393967445208 V
+Eta Activation : 0.3648724409731032 V
+Eta Concentration : 0.00031937188100060893 V
+Eta Ohmic : 0.002644278024175193 V
+FC Efficiency : 0.5422068606479247
+FC Power : 6.343820269580719 W
+FC Voltage : 4.229213513053812 V
+Loss : 0.367836090878279 V
+PH2 : 0.19697403699020044 atm
+PH2O : 0.24244105102809288 atm
+PO2 : 0.19051530890352164 atm
+Power-Thermal : 2.881179730419282 W
+###########
+I :1.6 A
+
+E : 6.068392428977227 V
+Eta Activation : 0.36914696409844006 V
+Eta Concentration : 0.0003408917228459314 V
+Eta Ohmic : 0.0028214871486926026 V
+FC Efficiency : 0.539339194118889
+FC Power : 6.7309531426037355 W
+FC Voltage : 4.2068457141273345 V
+Loss : 0.3723093429699786 V
+PH2 : 0.19695998660858605 atm
+PH2O : 0.24242375743276434 atm
+PO2 : 0.19050737606532336 atm
+Power-Thermal : 3.1090468573962653 W
+###########
+I :1.7 A
+
+E : 6.068390890445182 V
+Eta Activation : 0.3731623911228729 V
+Eta Concentration : 0.00036244054765199196 V
+Eta Ohmic : 0.0029988129062160497 V
+FC Efficiency : 0.5366375214822406
+FC Power : 7.115813534854511 W
+FC Voltage : 4.185772667561477 V
+Loss : 0.376523644576741 V
+PH2 : 0.19694593622697168 atm
+PH2O : 0.2424064638374358 atm
+PO2 : 0.19049944322712503 atm
+Power-Thermal : 3.339186465145489 W
+###########
+I :1.8 A
+
+E : 6.068389351849069 V
+Eta Activation : 0.3769483587657406 V
+Eta Concentration : 0.00038401843359268825 V
+Eta Ohmic : 0.003176255519565377 V
+FC Efficiency : 0.5340828446480225
+FC Power : 7.4985231388582365 W
+FC Voltage : 4.165846188254576 V
+Loss : 0.3805086327188987 V
+PH2 : 0.19693188584535729 atm
+PH2O : 0.24238917024210727 atm
+PO2 : 0.19049151038892673 atm
+Power-Thermal : 3.5714768611417647 W
+###########
+I :1.9 A
+
+E : 6.068387813188879 V
+Eta Activation : 0.38052969267197334 V
+Eta Concentration : 0.00040562545915863245 V
+Eta Ohmic : 0.0033538152156708046 V
+FC Efficiency : 0.5316592495454955
+FC Power : 7.8791900782642434 W
+FC Voltage : 4.146942146454865 V
+Loss : 0.38428913334680276 V
+PH2 : 0.1969178354637429 atm
+PH2O : 0.24237187664677873 atm
+PO2 : 0.19048357755072845 atm
+Power-Thermal : 3.8058099217357566 W
+###########
+I :2.0 A
+
+E : 6.0683862744646095 V
+Eta Activation : 0.3839273955127959 V
+Eta Concentration : 0.0004272617031588504 V
+Eta Ohmic : 0.003531492225469087 V
+FC Efficiency : 0.5293532727253193
+FC Power : 8.257911054514981 W
+FC Voltage : 4.1289555272574905 V
+Loss : 0.3878861494414239 V
+PH2 : 0.19690378508212852 atm
+PH2O : 0.2423545830514502 atm
+PO2 : 0.19047564471253012 atm
+Power-Thermal : 4.04208894548502 W
+###########
+I :2.1 A
+
+E : 6.068384735676256 V
+Eta Activation : 0.38715939375662295 V
+Eta Concentration : 0.00044892724472251814 V
+Eta Ohmic : 0.0037092867838082735 V
+FC Efficiency : 0.5271534226603188
+FC Power : 8.634773063176024 W
+FC Voltage : 4.1117966967504875 V
+Loss : 0.39131760778515373 V
+PH2 : 0.19688973470051413 atm
+PH2O : 0.24233728945612165 atm
+PO2 : 0.19046771187433184 atm
+Power-Thermal : 4.280226936823977 W
+###########
+I :2.2 A
+
+E : 6.068383196823811 V
+Eta Activation : 0.39024111055794025 V
+Eta Concentration : 0.00047062216330069346 V
+Eta Ohmic : 0.0038871991293599716 V
+FC Efficiency : 0.5250498125090778
+FC Power : 9.009854782655777 W
+FC Voltage : 4.095388537570807 V
+Loss : 0.3945989318506009 V
+PH2 : 0.19687568431889974 atm
+PH2O : 0.2423199958607931 atm
+PO2 : 0.1904597790361335 atm
+Power-Thermal : 4.520145217344226 W
+###########
+I :2.3 A
+
+E : 6.068381657907269 V
+Eta Activation : 0.39318591119501267 V
+Eta Concentration : 0.0004923465386680586 V
+Eta Ohmic : 0.004065229504538212 V
+FC Efficiency : 0.5230338745789967
+FC Power : 9.383227709947201 W
+FC Voltage : 4.0796642217161745 V
+Loss : 0.3977434872382189 V
+PH2 : 0.19686163393728537 atm
+PH2O : 0.24230270226546458 atm
+PO2 : 0.19045184619793523 atm
+Power-Thermal : 4.761772290052799 W
+###########
+I :2.4 A
+
+E : 6.068380118926627 V
+Eta Activation : 0.3960054536369255 V
+Eta Concentration : 0.0005141004509246927 V
+Eta Ohmic : 0.004243378155424144 V
+FC Efficiency : 0.5210981356038789
+FC Power : 9.754957098504613 W
+FC Voltage : 4.0645654577102555 V
+Loss : 0.40076293224327436 V
+PH2 : 0.19684758355567097 atm
+PH2O : 0.242285408670136 atm
+PO2 : 0.1904439133597369 atm
+Power-Thermal : 5.005042901495387 W
+###########
+I :2.5 A
+
+E : 6.068378579881878 V
+Eta Activation : 0.39870996749954657 V
+Eta Concentration : 0.0005358839804978295 V
+Eta Ohmic : 0.00442164533169592 V
+FC Efficiency : 0.5192360379260482
+FC Power : 10.12510273955794 W
+FC Voltage : 4.050041095823176 V
+Loss : 0.4036674968117403 V
+PH2 : 0.19683353317405658 atm
+PH2O : 0.24226811507480747 atm
+PO2 : 0.19043598052153862 atm
+Power-Thermal : 5.24989726044206 W
+###########
+I :2.6 A
+
+E : 6.068377040773017 V
+Eta Activation : 0.40130847825734167 V
+Eta Concentration : 0.0005576972081436541 V
+Eta Ohmic : 0.004600031286563196 V
+FC Efficiency : 0.5174417957708685
+FC Power : 10.493719618233213 W
+FC Voltage : 4.036046007012774 V
+Loss : 0.40646620675204853 V
+PH2 : 0.19681948279244216 atm
+PH2O : 0.2422508214794789 atm
+PO2 : 0.1904280476833403 atm
+Power-Thermal : 5.4962803817667885 W
+###########
+I :2.7 A
+
+E : 6.068375501600038 V
+Eta Activation : 0.4038089891176398 V
+Eta Concentration : 0.0005795402149490941 V
+Eta Ohmic : 0.004778536276705824 V
+FC Efficiency : 0.5157102786607133
+FC Power : 10.860858468594623 W
+FC Voltage : 4.022540173553564 V
+Loss : 0.4091670656092947 V
+PH2 : 0.19680543241082776 atm
+PH2O : 0.24223352788415034 atm
+PO2 : 0.190420114845142 atm
+Power-Thermal : 5.744141531405379 W
+###########
+I :2.8 A
+
+E : 6.068373962362936 V
+Eta Activation : 0.40621862980268425 V
+Eta Concentration : 0.0006014130823336223 V
+Eta Ohmic : 0.004957160562216277 V
+FC Efficiency : 0.5140369160418929
+FC Power : 11.226566246354942 W
+FC Voltage : 4.009487945126765 V
+Loss : 0.4117772034472342 V
+PH2 : 0.1967913820292134 atm
+PH2O : 0.2422162342888218 atm
+PO2 : 0.19041218200694368 atm
+Power-Thermal : 5.993433753645058 W
+###########
+I :2.9 A
+
+E : 6.068372423061707 V
+Eta Activation : 0.4085437792118771 V
+Eta Concentration : 0.0006233158920510905 V
+Eta Ohmic : 0.005135904406545483 V
+FC Efficiency : 0.5124176186550433
+FC Power : 11.590886533977079 W
+FC Voltage : 3.996857425509338 V
+Loss : 0.4143029995104737 V
+PH2 : 0.196777331647599 atm
+PH2O : 0.24219894069349326 atm
+PO2 : 0.1904042491687454 atm
+Power-Thermal : 6.244113466022921 W
+###########
+I :3.0 A
+
+E : 6.0683708836963435 V
+Eta Activation : 0.4107901672807063 V
+Eta Concentration : 0.0006452487261915484 V
+Eta Ohmic : 0.005314768076451755 V
+FC Efficiency : 0.5108487132409738
+FC Power : 11.953859889838787 W
+FC Voltage : 3.9846199632795956 V
+Loss : 0.4167501840833496 V
+PH2 : 0.1967632812659846 atm
+PH2O : 0.24218164709816473 atm
+PO2 : 0.19039631633054707 atm
+Power-Thermal : 6.496140110161214 W
+###########
+I :3.1 A
+
+E : 6.068369344266841 V
+Eta Activation : 0.4129629601316751 V
+Eta Concentration : 0.0006672116671831024 V
+Eta Ohmic : 0.0054937518419525275 V
+FC Efficiency : 0.5093268879567676
+FC Power : 12.315524150794642 W
+FC Voltage : 3.9727497260627875 V
+Loss : 0.41912392364081075 V
+PH2 : 0.19674923088437024 atm
+PH2O : 0.2421643535028362 atm
+PO2 : 0.1903883834923488 atm
+Power-Thermal : 6.74947584920536 W
+###########
+I :3.2 A
+
+E : 6.068367804773196 V
+Eta Activation : 0.41506683170178466 V
+Eta Concentration : 0.0006892047977937692 V
+Eta Ohmic : 0.005672855976278701 V
+FC Efficiency : 0.5078491464607577
+FC Power : 12.675914695660513 W
+FC Voltage : 3.96122334239391 V
+Loss : 0.42142889247585713 V
+PH2 : 0.19673518050275585 atm
+PH2O : 0.24214705990750765 atm
+PO2 : 0.19038045065415046 atm
+Power-Thermal : 7.0040853043394895 W
+###########
+I :3.3 A
+
+E : 6.0683662652154 V
+Eta Activation : 0.417106024344736 V
+Eta Concentration : 0.0007112282011333409 V
+Eta Ohmic : 0.005852080755831333 V
+FC Efficiency : 0.5064127690649867
+FC Power : 13.035064675732759 W
+FC Voltage : 3.9500195987068967 V
+Loss : 0.42366933330170065 V
+PH2 : 0.19672113012114145 atm
+PH2O : 0.2421297663121791 atm
+PO2 : 0.19037251781595219 atm
+Power-Thermal : 7.259935324267242 W
+###########
+I :3.4 A
+
+E : 6.06836472559345 V
+Eta Activation : 0.4190844003836543 V
+Eta Concentration : 0.0007332819606552831 V
+Eta Ohmic : 0.0060314264601405215 V
+FC Efficiency : 0.5050152796886153
+FC Power : 13.393005217342077 W
+FC Voltage : 3.9391191815711992 V
+Loss : 0.42584910880445015 V
+PH2 : 0.19670707973952706 atm
+PH2O : 0.24211247271685057 atm
+PO2 : 0.19036458497775385 atm
+Power-Thermal : 7.516994782657924 W
+###########
+I :3.5 A
+
+E : 6.068363185907339 V
+Eta Activation : 0.42100548618901656 V
+Eta Concentration : 0.0007553661601586168 V
+Eta Ohmic : 0.006210893371826288 V
+FC Efficiency : 0.503654417602863
+FC Power : 13.74976560055816 W
+FC Voltage : 3.9285044573023313 V
+Loss : 0.4279717457210015 V
+PH2 : 0.1966930293579127 atm
+PH2O : 0.24209517912152204 atm
+PO2 : 0.19035665213955555 atm
+Power-Thermal : 7.775234399441842 W
+###########
+I :3.6 A
+
+E : 6.068361646157063 V
+Eta Activation : 0.4228725100457559 V
+Eta Concentration : 0.000777480883789843 V
+Eta Ohmic : 0.006390481776561363 V
+FC Efficiency : 0.5023281131572472
+FC Power : 14.105373417455501 W
+FC Voltage : 3.918159282626528 V
+Loss : 0.43004047270610707 V
+PH2 : 0.1966789789762983 atm
+PH2O : 0.2420778855261935 atm
+PO2 : 0.19034871930135727 atm
+Power-Thermal : 8.034626582544501 W
+###########
+I :3.7 A
+
+E : 6.068360106342617 V
+Eta Activation : 0.4246884348310017 V
+Eta Concentration : 0.0007996262160448594 V
+Eta Ohmic : 0.00657019196303564 V
+FC Efficiency : 0.501034466832334
+FC Power : 14.459854712781162 W
+FC Voltage : 3.9080688412922058 V
+Loss : 0.4320582530100822 V
+PH2 : 0.1966649285946839 atm
+PH2O : 0.24206059193086493 atm
+PO2 : 0.19034078646315894 atm
+Power-Thermal : 8.29514528721884 W
+###########
+I :3.8 A
+
+E : 6.068358566463993 V
+Eta Activation : 0.4264559863331208 V
+Eta Concentration : 0.0008218022417708932 V
+Eta Ohmic : 0.006750024222922298 V
+FC Efficiency : 0.4997717310865285
+FC Power : 14.813234109404705 W
+FC Voltage : 3.8982195024749227 V
+Loss : 0.43402781279781405 V
+PH2 : 0.19665087821306954 atm
+PH2O : 0.2420432983355364 atm
+PO2 : 0.19033285362496066 atm
+Power-Thermal : 8.556765890595296 W
+###########
+I :3.9 A
+
+E : 6.068357026521189 V
+Eta Activation : 0.42817767789163225 V
+Eta Concentration : 0.0008440090461684635 V
+Eta Ohmic : 0.006929978850845375 V
+FC Efficiency : 0.49853829456127663
+FC Power : 15.165534920554036 W
+FC Voltage : 3.888598697577958 V
+Loss : 0.4359516657886461 V
+PH2 : 0.19663682783145514 atm
+PH2O : 0.24202600474020786 atm
+PO2 : 0.19032492078676233 atm
+Power-Thermal : 8.819465079445965 W
+###########
+I :4.0 A
+
+E : 6.068355486514196 V
+Eta Activation : 0.4298558319170759 V
+Eta Concentration : 0.0008662467147933317 V
+Eta Ohmic : 0.0071100561443487465 V
+FC Efficiency : 0.4973326682862957
+FC Power : 15.516779250532426 W
+FC Voltage : 3.8791948126331066 V
+Loss : 0.43783213477621796 V
+PH2 : 0.19662277744984075 atm
+PH2O : 0.24200871114487932 atm
+PO2 : 0.19031698794856405 atm
+Power-Thermal : 9.083220749467575 W
+###########
+I :4.1 A
+
+E : 6.068353946443013 V
+Eta Activation : 0.4314925987532416 V
+Eta Concentration : 0.000888515333558491 V
+Eta Ohmic : 0.007290256403866432 V
+FC Efficiency : 0.49615347358842055
+FC Power : 15.86698808535769 W
+FC Voltage : 3.8699970939896806 V
+Loss : 0.4396713704906665 V
+PH2 : 0.19660872706822638 atm
+PH2O : 0.24199141754955078 atm
+PO2 : 0.19030905511036572 atm
+Power-Thermal : 9.34801191464231 W
+###########
+I :4.2 A
+
+E : 6.068352406307631 V
+Eta Activation : 0.43308997326613785 V
+Eta Concentration : 0.0009108149887361533 V
+Eta Ohmic : 0.007470579932694097 V
+FC Efficiency : 0.4949994314576654
+FC Power : 16.21618137455312 W
+FC Voltage : 3.8609955653697905 V
+Loss : 0.4414713681875681 V
+PH2 : 0.19659467668661199 atm
+PH2O : 0.24197412395422224 atm
+PO2 : 0.19030112227216744 atm
+Power-Thermal : 9.613818625446882 W
+###########
+I :4.3 A
+
+E : 6.068350866108046 V
+Eta Activation : 0.43464980948074244 V
+Eta Concentration : 0.0009331457669597486 V
+Eta Ohmic : 0.007651027036961704 V
+FC Efficiency : 0.49386935316470854
+FC Power : 16.564378105144325 W
+FC Voltage : 3.852180954684727 V
+Loss : 0.4432339822846639 V
+PH2 : 0.1965806263049976 atm
+PH2O : 0.2419568303588937 atm
+PO2 : 0.1902931894339691 atm
+Power-Thermal : 9.880621894855675 W
+###########
+I :4.4 A
+
+E : 6.068349325844253 V
+Eta Activation : 0.4361738335348941 V
+Eta Concentration : 0.000955507755225957 V
+Eta Ohmic : 0.007831598025607267 V
+FC Efficiency : 0.4927621319571303
+FC Power : 16.911596368768713 W
+FC Voltage : 3.8435446292656166 V
+Loss : 0.44496093931572733 V
+PH2 : 0.19656657592338317 atm
+PH2O : 0.2419395367635651 atm
+PO2 : 0.19028525659577084 atm
+Power-Thermal : 10.14840363123129 W
+###########
+I :4.5 A
+
+E : 6.068347785516247 V
+Eta Activation : 0.43766365517730155 V
+Eta Concentration : 0.0009779010408967285 V
+Eta Ohmic : 0.008012293210351585 V
+FC Efficiency : 0.4916767356889099
+FC Power : 17.25785342268074 W
+FC Voltage : 3.8350785383734975 V
+Loss : 0.44665384942854985 V
+PH2 : 0.19655252554176877 atm
+PH2O : 0.24192224316823657 atm
+PO2 : 0.1902773237575725 atm
+Power-Thermal : 10.417146577319263 W
+###########
+I :4.6 A
+
+E : 6.068346245124022 V
+Eta Activation : 0.43912077800171134 V
+Eta Concentration : 0.0010003257117013429 V
+Eta Ohmic : 0.008193112905673946 V
+FC Efficiency : 0.4906122002600755
+FC Power : 17.60316574533151 W
+FC Voltage : 3.8267751620285892 V
+Loss : 0.4483142166190866 V
+PH2 : 0.1965384751601544 atm
+PH2O : 0.24190494957290803 atm
+PO2 : 0.19026939091937423 atm
+Power-Thermal : 10.68683425466849 W
+###########
+I :4.7 A
+
+E : 6.068344704667572 V
+Eta Activation : 0.4405466085803589 V
+Eta Concentration : 0.0010227818557384668 V
+Eta Ohmic : 0.008374057428788736 V
+FC Efficiency : 0.4895676237619413
+FC Power : 17.94754908711277 W
+FC Voltage : 3.818627465343142 V
+Loss : 0.44994344786488605 V
+PH2 : 0.19652442477854 atm
+PH2O : 0.2418876559775795 atm
+PO2 : 0.1902614580811759 atm
+Power-Thermal : 10.957450912887234 W
+###########
+I :4.8 A
+
+E : 6.068343164146892 V
+Eta Activation : 0.44194246463577713 V
+Eta Concentration : 0.001045269561478224 V
+Eta Ohmic : 0.008555127099622905 V
+FC Efficiency : 0.48854216123878214
+FC Power : 18.291018516780003 W
+FC Voltage : 3.810628857662501 V
+Loss : 0.45154286129687826 V
+PH2 : 0.19651037439692562 atm
+PH2O : 0.24187036238225096 atm
+PO2 : 0.19025352524297762 atm
+Power-Thermal : 11.228981483219997 W
+###########
+I :4.9 A
+
+E : 6.068341623561977 V
+Eta Activation : 0.44330958236996226 V
+Eta Concentration : 0.0010677889177643017 V
+Eta Ohmic : 0.008736322240794207 V
+FC Efficiency : 0.48753501998966325
+FC Power : 18.633588464004934 W
+FC Voltage : 3.8027731559193736 V
+Loss : 0.45311369352852077 V
+PH2 : 0.19649632401531125 atm
+PH2O : 0.24185306878692242 atm
+PO2 : 0.19024559240477928 atm
+Power-Thermal : 11.501411535995071 W
+###########
+I :5.0 A
+
+E : 6.0683400829128225 V
+Eta Activation : 0.4446491230530608 V
+Eta Concentration : 0.0010903400138160386 V
+Eta Ohmic : 0.008917643177590235 V
+FC Efficiency : 0.4865454553449342
+FC Power : 18.975272758452434 W
+FC Voltage : 3.795054551690487 V
+Loss : 0.4546571062444671 V
+PH2 : 0.19648227363369686 atm
+PH2O : 0.24183577519159385 atm
+PO2 : 0.190237659566581 atm
+Power-Thermal : 11.774727241547566 W
+###########
+I :5.1 A
+
+E : 6.06833854219942 V
+Eta Activation : 0.4459621789595763 V
+Eta Concentration : 0.0011129229392305617 V
+Eta Ohmic : 0.009099090237948177 V
+FC Efficiency : 0.48557276686098005
+FC Power : 19.316084665729786 W
+FC Voltage : 3.787467581515645 V
+Loss : 0.45617419213675503 V
+PH2 : 0.19646822325208246 atm
+PH2O : 0.24181848159626532 atm
+PO2 : 0.19022972672838268 atm
+Power-Thermal : 12.048915334270212 W
+###########
+I :5.2 A
+
+E : 6.068337001421769 V
+Eta Activation : 0.44724977872813027 V
+Eta Concentration : 0.001135537783984915 V
+Eta Ohmic : 0.009280663752435246 V
+FC Efficiency : 0.4846162948844894
+FC Power : 19.65603692051489 W
+FC Voltage : 3.780007100099017 V
+Loss : 0.4576659802645504 V
+PH2 : 0.1964541728704681 atm
+PH2O : 0.24180118800093678 atm
+PO2 : 0.19022179389018437 atm
+Power-Thermal : 12.323963079485114 W
+###########
+I :5.3 A
+
+E : 6.068335460579859 V
+Eta Activation : 0.4485128922106738 V
+Eta Concentration : 0.0011581846384382051 V
+Eta Ohmic : 0.009462364054229755 V
+FC Efficiency : 0.48367541744399356
+FC Power : 19.995141757134697 W
+FC Voltage : 3.77266825606315 V
+Loss : 0.45913344090334174 V
+PH2 : 0.1964401224888537 atm
+PH2O : 0.24178389440560824 atm
+PO2 : 0.1902138610519861 atm
+Power-Thermal : 12.599858242865306 W
+###########
+I :5.4 A
+
+E : 6.068333919673688 V
+Eta Activation : 0.44975243486841693 V
+Eta Concentration : 0.001180863593333781 V
+Eta Ohmic : 0.009644191479102835 V
+FC Efficiency : 0.48274954743197696
+FC Power : 20.333410937834874 W
+FC Voltage : 3.7654464699694206 V
+Loss : 0.46057748994085357 V
+PH2 : 0.1964260721072393 atm
+PH2O : 0.2417666008102797 atm
+PO2 : 0.19020592821378776 atm
+Power-Thermal : 12.87658906216513 W
+###########
+I :5.5 A
+
+E : 6.068332378703251 V
+Eta Activation : 0.4509692717643923 V
+Eta Concentration : 0.0012035747398014003 V
+Eta Ohmic : 0.009826146365400735 V
+FC Efficiency : 0.4818381300455485
+FC Power : 20.67085577895403 W
+FC Voltage : 3.7583374143552786 V
+Loss : 0.46199899286959445 V
+PH2 : 0.1964120217256249 atm
+PH2O : 0.24174930721495116 atm
+PO2 : 0.19019799537558948 atm
+Power-Thermal : 13.15414422104597 W
+###########
+I :5.6 A
+
+E : 6.068330837668539 V
+Eta Activation : 0.4521642211962659 V
+Eta Concentration : 0.0012263181693594393 V
+Eta Ohmic : 0.01000822905402767 V
+FC Efficiency : 0.4809406404577275
+FC Power : 21.007487175193535 W
+FC Voltage : 3.7513369955702744 V
+Loss : 0.463398768419653 V
+PH2 : 0.19639797134401055 atm
+PH2O : 0.24173201361962263 atm
+PO2 : 0.19019006253739115 atm
+Power-Thermal : 13.432512824806464 W
+###########
+I :5.7 A
+
+E : 6.0683292965695514 V
+Eta Activation : 0.45333805800760785 V
+Eta Concentration : 0.0012490939739171012 V
+Eta Ohmic : 0.010190439888429253 V
+FC Efficiency : 0.4800565816948436
+FC Power : 21.343315622152748 W
+FC Voltage : 3.7444413372197802 V
+Loss : 0.4647775918699542 V
+PH2 : 0.19638392096239615 atm
+PH2O : 0.2417147200242941 atm
+PO2 : 0.19018212969919288 atm
+Power-Thermal : 13.711684377847256 W
+###########
+I :5.8 A
+
+E : 6.068327755406279 V
+Eta Activation : 0.4544915166111814 V
+Eta Concentration : 0.0012719022457766368 V
+Eta Ohmic : 0.01037277921457635 V
+FC Efficiency : 0.4791854826985393
+FC Power : 21.67835123728192 W
+FC Voltage : 3.737646765048607 V
+Loss : 0.4661361980715344 V
+PH2 : 0.19636987058078176 atm
+PH2O : 0.24169742642896555 atm
+PO2 : 0.19017419686099454 atm
+Power-Thermal : 13.991648762718082 W
+###########
+I :5.9 A
+
+E : 6.068326214178718 V
+Eta Activation : 0.45562529375379013 V
+Eta Concentration : 0.0012947430776356047 V
+Eta Ohmic : 0.010555247380949533 V
+FC Efficiency : 0.47832689655344124
+FC Power : 22.01260377938937 W
+FC Voltage : 3.730949793116842 V
+Loss : 0.4674752842123753 V
+PH2 : 0.1963558201991674 atm
+PH2O : 0.24168013283363698 atm
+PO2 : 0.19016626402279627 atm
+Power-Thermal : 14.272396220610636 W
+###########
+I :6.0 A
+
+E : 6.068324672886863 V
+Eta Activation : 0.45674005104875376 V
+Eta Concentration : 0.0013176165625891146 V
+Eta Ohmic : 0.01073784473852393 V
+FC Efficiency : 0.4774803988637858
+FC Power : 22.346082666825176 W
+FC Voltage : 3.7243471111375293 V
+Loss : 0.46879551234986677 V
+PH2 : 0.196341769817553 atm
+PH2O : 0.24166283923830845 atm
+PO2 : 0.19015833118459793 atm
+Power-Thermal : 14.553917333174827 W
+###########
+I :6.1 A
+
+E : 6.068323131530709 V
+Eta Activation : 0.45783641729905433 V
+Eta Concentration : 0.0013405227941321184 V
+Eta Ohmic : 0.010920571640754542 V
+FC Efficiency : 0.4766455862642313
+FC Power : 22.678796994452124 W
+FC Voltage : 3.7178355728610044 V
+Loss : 0.470097511733941 V
+PH2 : 0.19632771943593857 atm
+PH2O : 0.24164554564297988 atm
+PO2 : 0.19015039834639966 atm
+Power-Thermal : 14.836203005547874 W
+###########
+I :6.2 A
+
+E : 6.0683215901102505 V
+Eta Activation : 0.4589149906315879 V
+Eta Concentration : 0.001363461866161697 V
+Eta Ohmic : 0.011103428443561988 V
+FC Efficiency : 0.47582207505175544
+FC Power : 23.010755549502896 W
+FC Voltage : 3.7114121854036926 V
+Loss : 0.4713818809413116 V
+PH2 : 0.19631366905432418 atm
+PH2O : 0.24162825204765134 atm
+PO2 : 0.19014246550820132 atm
+Power-Thermal : 15.119244450497108 W
+###########
+I :6.3 A
+
+E : 6.0683200486254805 V
+Eta Activation : 0.45997634046064817 V
+Eta Concentration : 0.001386433872979364 V
+Eta Ohmic : 0.011286415505318665 V
+FC Efficiency : 0.4750094999270192
+FC Power : 23.34196682641372 W
+FC Voltage : 3.7050740994307496 V
+Loss : 0.4726491898389462 V
+PH2 : 0.19629961867270979 atm
+PH2O : 0.24161095845232278 atm
+PO2 : 0.19013453267000305 atm
+Power-Thermal : 15.403033173586278 W
+###########
+I :6.4 A
+
+E : 6.0683185070763965 V
+Eta Activation : 0.461021009296788 V
+Eta Concentration : 0.0014094389092934052 V
+Eta Ohmic : 0.011469533186835319 V
+FC Efficiency : 0.47420751283484774
+FC Power : 23.672439040715602 W
+FC Voltage : 3.698818600111813 V
+Loss : 0.4738999813929167 V
+PH2 : 0.19628556829109542 atm
+PH2O : 0.24159366485699424 atm
+PO2 : 0.19012659983180472 atm
+Power-Thermal : 15.6875609592844 W
+###########
+I :6.5 A
+
+E : 6.068316965462991 V
+Eta Activation : 0.4620495144154425 V
+Eta Concentration : 0.0014324770702212066 V
+Eta Ohmic : 0.011652781851347946 V
+FC Efficiency : 0.47341578189460665
+FC Power : 24.00218014205656 W
+FC Voltage : 3.6926430987779324 V
+Loss : 0.47513477333701165 V
+PH2 : 0.19627151790948102 atm
+PH2O : 0.2415763712616657 atm
+PO2 : 0.19011866699360644 atm
+Power-Thermal : 15.972819857943442 W
+###########
+I :6.6 A
+
+E : 6.068315423785259 V
+Eta Activation : 0.4630623493981567 V
+Eta Concentration : 0.0014555484512916261 V
+Eta Ohmic : 0.011836161864505122 V
+FC Efficiency : 0.47263399041224247
+FC Power : 24.33119782642224 W
+FC Voltage : 3.686545125215491 V
+Loss : 0.4763540597139535 V
+PH2 : 0.19625746752786663 atm
+PH2O : 0.24155907766633716 atm
+PO2 : 0.1901107341554081 atm
+Power-Thermal : 16.25880217357776 W
+###########
+I :6.7 A
+
+E : 6.068313882043195 V
+Eta Activation : 0.46405998555792305 V
+Eta Concentration : 0.001478653148447366 V
+Eta Ohmic : 0.012019673594355636 V
+FC Efficiency : 0.4718618359666108
+FC Power : 24.659499547615084 W
+FC Voltage : 3.6805223205395645 V
+Loss : 0.47755831230072604 V
+PH2 : 0.19624341714625226 atm
+PH2O : 0.24154178407100863 atm
+PO2 : 0.19010280131720983 atm
+Power-Thermal : 16.54550045238492 W
+###########
+I :6.8 A
+
+E : 6.068312340236794 V
+Eta Activation : 0.4650428732589224 V
+Eta Concentration : 0.0015017912580473599 V
+Eta Ohmic : 0.012203317411336446 V
+FC Efficiency : 0.47109902956349525
+FC Power : 24.98709252804779 W
+FC Voltage : 3.674572430595263 V
+Loss : 0.4787479819283062 V
+PH2 : 0.19622936676463787 atm
+PH2O : 0.2415244904756801 atm
+PO2 : 0.19009486847901153 atm
+Power-Thermal : 16.832907471952215 W
+###########
+I :6.9 A
+
+E : 6.068310798366053 V
+Eta Activation : 0.4660114431399243 V
+Eta Concentration : 0.0015249628768691983 V
+Eta Ohmic : 0.012387093688261039 V
+FC Efficiency : 0.470345294851382
+FC Power : 25.313983768901384 W
+FC Voltage : 3.66869329984078 V
+Loss : 0.47992349970505455 V
+PH2 : 0.19621531638302347 atm
+PH2O : 0.24150719688035155 atm
+PO2 : 0.19008693564081322 atm
+Power-Thermal : 17.121016231098622 W
+###########
+I :7.0 A
+
+E : 6.068309256430961 V
+Eta Activation : 0.46696610724966353 V
+Eta Concentration : 0.0015481681021115414 V
+Eta Ohmic : 0.012571002800308007 V
+FC Efficiency : 0.4696003673936597
+FC Power : 25.64018005969382 W
+FC Voltage : 3.6628828656705457 V
+Loss : 0.4810852781520831 V
+PH2 : 0.1962012660014091 atm
+PH2O : 0.241489903285023 atm
+PO2 : 0.19007900280261492 atm
+Power-Thermal : 17.409819940306182 W
+###########
+I :7.1 A
+
+E : 6.068307714431517 V
+Eta Activation : 0.46790726010168526 V
+Eta Concentration : 0.0015714070313965812 V
+Eta Ohmic : 0.012755045125009969 V
+FC Efficiency : 0.4688639939924434
+FC Power : 25.965687987301514 W
+FC Voltage : 3.6571391531410584 V
+Loss : 0.4822337122580918 V
+PH2 : 0.1961872156197947 atm
+PH2O : 0.24147260968969447 atm
+PO2 : 0.19007106996441658 atm
+Power-Thermal : 17.69931201269849 W
+###########
+I :7.2 A
+
+E : 6.0683061723677145 V
+Eta Activation : 0.46883527965541627 V
+Eta Concentration : 0.0015946797627724896 V
+Eta Ohmic : 0.012939221042242805 V
+FC Efficiency : 0.46813593205968673
+FC Power : 26.29051394447201 W
+FC Voltage : 3.6514602700655567 V
+Loss : 0.4833691804604316 V
+PH2 : 0.19617316523818032 atm
+PH2O : 0.2414553160943659 atm
+PO2 : 0.1900631371262183 atm
+Power-Thermal : 17.989486055527994 W
+###########
+I :7.3 A
+
+E : 6.068304630239549 V
+Eta Activation : 0.46975052822957064 V
+Eta Concentration : 0.0016179863947159145 V
+Eta Ohmic : 0.01312353093421512 V
+FC Efficiency : 0.46741594903167183
+FC Power : 26.614664137863393 W
+FC Voltage : 3.6458444024470404 V
+Loss : 0.48449204555850167 V
+PH2 : 0.19615911485656592 atm
+PH2O : 0.24143802249903737 atm
+PO2 : 0.19005520428801997 atm
+Power-Thermal : 18.280335862136607 W
+###########
+I :7.4 A
+
+E : 6.0683030880470135 V
+Eta Activation : 0.4706533533534123 V
+Eta Concentration : 0.0016413270261344747 V
+Eta Ohmic : 0.013307975185457984 V
+FC Efficiency : 0.4667038218233319
+FC Power : 26.938144595642726 W
+FC Voltage : 3.6402898102219896 V
+Loss : 0.48560265556500476 V
+PH2 : 0.19614506447495156 atm
+PH2O : 0.24142072890370883 atm
+PO2 : 0.1900472714498217 atm
+Power-Thermal : 18.57185540435728 W
+###########
+I :7.5 A
+
+E : 6.068301545790104 V
+Eta Activation : 0.4715440885608808 V
+Eta Concentration : 0.0016647017563692712 V
+Eta Ohmic : 0.013492554182814984 V
+FC Efficiency : 0.4659993363192023
+FC Power : 27.260961174673337 W
+FC Voltage : 3.6347948232897784 V
+Loss : 0.4867013445000651 V
+PH2 : 0.19613101409333716 atm
+PH2O : 0.2414034353083803 atm
+PO2 : 0.19003933861162337 atm
+Power-Thermal : 18.864038825326663 W
+###########
+I :7.6 A
+
+E : 6.0683000034688135 V
+Eta Activation : 0.47242305413212105 V
+Eta Concentration : 0.0016881106851974368 V
+Eta Ohmic : 0.013677268315432466 V
+FC Efficiency : 0.4653022868980844
+FC Power : 27.583119567318445 W
+FC Voltage : 3.629357837805059 V
+Loss : 0.48778843313275094 V
+PH2 : 0.19611696371172277 atm
+PH2O : 0.24138614171305176 atm
+PO2 : 0.1900314057734251 atm
+Power-Thermal : 19.156880432681554 W
+###########
+I :7.7 A
+
+E : 6.068298461083138 V
+Eta Activation : 0.4732905577865435 V
+Eta Concentration : 0.0017115539128346852 V
+Eta Ohmic : 0.013862117974750048 V
+FC Efficiency : 0.46461247598878164
+FC Power : 27.904625307886228 W
+FC Voltage : 3.6239773127124972 V
+Loss : 0.48886422967412824 V
+PH2 : 0.1961029133301084 atm
+PH2O : 0.24136884811772322 atm
+PO2 : 0.19002347293522676 atm
+Power-Thermal : 19.450374692113776 W
+###########
+I :7.8 A
+
+E : 6.068296918633072 V
+Eta Activation : 0.4741468953311643 V
+Eta Concentration : 0.0017350315399378802 V
+Eta Ohmic : 0.014047103554491356 V
+FC Efficiency : 0.46392971365450053
+FC Power : 28.225483778739815 W
+FC Voltage : 3.6186517665051046 V
+Loss : 0.4899290304255935 V
+PH2 : 0.19608886294849398 atm
+PH2O : 0.24135155452239462 atm
+PO2 : 0.19001554009702848 atm
+Power-Thermal : 19.744516221260188 W
+###########
+I :7.9 A
+
+E : 6.06829537611861 V
+Eta Activation : 0.4749923512676518 V
+Eta Concentration : 0.0017585436676076413 V
+Eta Ohmic : 0.014232225450655016 V
+FC Efficiency : 0.4632538172037228
+FC Power : 28.5457002160934 W
+FC Voltage : 3.613379774189038 V
+Loss : 0.49098312038591446 V
+PH2 : 0.19607481256687959 atm
+PH2O : 0.24133426092706609 atm
+PO2 : 0.19000760725883015 atm
+Power-Thermal : 20.039299783906603 W
+###########
+I :8.0 A
+
+E : 6.068293833539746 V
+Eta Activation : 0.47582719936118406 V
+Eta Concentration : 0.0017820903973909405 V
+Eta Ohmic : 0.014417484061505791 V
+FC Efficiency : 0.4625846108255567
+FC Power : 28.86527971551474 W
+FC Voltage : 3.6081599644393423 V
+Loss : 0.4920267738200808 V
+PH2 : 0.1960607621852652 atm
+PH2O : 0.24131696733173755 atm
+PO2 : 0.18999967442063187 atm
+Power-Thermal : 20.334720284485265 W
+###########
+I :8.1 A
+
+E : 6.068292290896475 V
+Eta Activation : 0.47665170317397654 V
+Eta Concentration : 0.0018056718312837506 V
+Eta Ohmic : 0.014602879787566069 V
+FC Efficiency : 0.4619219252477363
+FC Power : 29.18422723715198 W
+FC Voltage : 3.6029910169323434 V
+Loss : 0.4930602547928264 V
+PH2 : 0.1960467118036508 atm
+PH2O : 0.241299673736409 atm
+PO2 : 0.18999174158243354 atm
+Power-Thermal : 20.63077276284802 W
+###########
+I :8.2 A
+
+E : 6.068290748188793 V
+Eta Activation : 0.4774661165660727 V
+Eta Concentration : 0.001829288071733679 V
+Eta Ohmic : 0.014788413031607365 V
+FC Efficiency : 0.46126559741560563
+FC Power : 29.502547610702138 W
+FC Voltage : 3.5978716598417244 V
+Loss : 0.4940838176694137 V
+PH2 : 0.19603266142203643 atm
+PH2O : 0.24128238014108047 atm
+PO2 : 0.18998380874423526 atm
+Power-Thermal : 20.927452389297862 W
+###########
+I :8.3 A
+
+E : 6.068289205416693 V
+Eta Activation : 0.4782706841657812 V
+Eta Concentration : 0.0018529392216426526 V
+Eta Ohmic : 0.014974084198642212 V
+FC Efficiency : 0.4606154701905592
+FC Power : 29.82024554013681 W
+FC Voltage : 3.592800667486362 V
+Loss : 0.4950977075860661 V
+PH2 : 0.19601861104042204 atm
+PH2O : 0.24126508654575193 atm
+PO2 : 0.18997587590603693 atm
+Power-Thermal : 21.2247544598632 W
+###########
+I :8.4 A
+
+E : 6.068287662580168 V
+Eta Activation : 0.4790656418119422 V
+Eta Concentration : 0.0018766253843696022 V
+Eta Ohmic : 0.0151598936959161 V
+FC Efficiency : 0.4599713920665421
+FC Power : 30.13732560819984 W
+FC Voltage : 3.5877768581190286 V
+Loss : 0.4961021608922279 V
+PH2 : 0.19600456065880764 atm
+PH2O : 0.2412477929504234 atm
+PO2 : 0.18996794306783865 atm
+Power-Thermal : 21.522674391800162 W
+###########
+I :8.5 A
+
+E : 6.068286119679217 V
+Eta Activation : 0.4798512169700221 V
+Eta Concentration : 0.001900346663733166 V
+Eta Ohmic : 0.015345841932899711 V
+FC Efficiency : 0.4593332169033259
+FC Power : 30.45379228069051 W
+FC Voltage : 3.5827990918459425 V
+Loss : 0.497097405566655 V
+PH2 : 0.19599051027719328 atm
+PH2O : 0.24123049935509483 atm
+PO2 : 0.18996001022964035 atm
+Power-Thermal : 21.82120771930949 W
+###########
+I :8.6 A
+
+E : 6.068284576713832 V
+Eta Activation : 0.4806276291238726 V
+Eta Concentration : 0.0019241031640144328 V
+Eta Ohmic : 0.015531929321281258 V
+FC Efficiency : 0.45870080367538335
+FC Power : 30.769649910544715 W
+FC Voltage : 3.5778662686679903 V
+Loss : 0.4980836616091683 V
+PH2 : 0.19597645989557888 atm
+PH2O : 0.2412132057597663 atm
+PO2 : 0.18995207739144204 atm
+Power-Thermal : 22.120350089455286 W
+###########
+I :8.7 A
+
+E : 6.068283033684007 V
+Eta Activation : 0.48139509014484394 V
+Eta Concentration : 0.0019478949899596862 V
+Eta Ohmic : 0.01571815627495901 V
+FC Efficiency : 0.4580740162352812
+FC Power : 31.084902741726182 W
+FC Voltage : 3.572977326635194 V
+Loss : 0.4990611414097626 V
+PH2 : 0.1959624095139645 atm
+PH2O : 0.24119591216443775 atm
+PO2 : 0.18994414455324374 atm
+Power-Thermal : 22.420097258273813 W
+###########
+I :8.8 A
+
+E : 6.0682814905897375 V
+Eta Activation : 0.4821538046398052 V
+Eta Concentration : 0.0019717222467831716 V
+Eta Ohmic : 0.015904523210034056 V
+FC Efficiency : 0.457452723090593
+FC Power : 31.399554912938306 W
+FC Voltage : 3.5681312401066254 V
+Loss : 0.5000300500966224 V
+PH2 : 0.19594835913235012 atm
+PH2O : 0.24117861856910922 atm
+PO2 : 0.1899362117150454 atm
+Power-Thermal : 22.7204450870617 W
+###########
+I :8.9 A
+
+E : 6.068279947431018 V
+Eta Activation : 0.48290397027949844 V
+Eta Concentration : 0.0019955850401698915 V
+Eta Ohmic : 0.01609103054480315 V
+FC Efficiency : 0.4568367971934179
+FC Power : 31.713610461167075 W
+FC Voltage : 3.56332701810866 V
+Loss : 0.5009905858644715 V
+PH2 : 0.19593430875073573 atm
+PH2O : 0.24116132497378068 atm
+PO2 : 0.18992827887684713 atm
+Power-Thermal : 23.02138953883293 W
+###########
+I :9.0 A
+
+E : 6.068278404207844 V
+Eta Activation : 0.4836457781085518 V
+Eta Concentration : 0.0020194834762784237 V
+Eta Ohmic : 0.01627767869975175 V
+FC Efficiency : 0.4562261157416583
+FC Power : 32.027073325064414 W
+FC Voltage : 3.5585637027849346 V
+Loss : 0.501942940284582 V
+PH2 : 0.19592025836912133 atm
+PH2O : 0.24114403137845214 atm
+PO2 : 0.1899203460386488 atm
+Power-Thermal : 23.32292667493559 W
+###########
+I :9.1 A
+
+E : 6.068276860920209 V
+Eta Activation : 0.48437941283835995 V
+Eta Concentration : 0.002043417661743748 V
+Eta Ohmic : 0.016464468097547234 V
+FC Efficiency : 0.45562055999127615
+FC Power : 32.339947348180786 W
+FC Voltage : 3.5538403679319543 V
+Loss : 0.5028872985976509 V
+PH2 : 0.19590620798750694 atm
+PH2O : 0.2411267377831236 atm
+PO2 : 0.18991241320045052 atm
+Power-Thermal : 23.625052651819217 W
+###########
+I :9.2 A
+
+E : 6.068275317568107 V
+Eta Activation : 0.48510505312396185 V
+Eta Concentration : 0.0020673877036801 V
+Eta Ohmic : 0.01665139916303225 V
+FC Efficiency : 0.45502001507881235
+FC Power : 32.65223628205557 W
+FC Voltage : 3.549156117614736 V
+Loss : 0.5038238399906741 V
+PH2 : 0.19589215760589257 atm
+PH2O : 0.24110944418779506 atm
+PO2 : 0.1899044803622522 atm
+Power-Thermal : 23.92776371794443 W
+###########
+I :9.3 A
+
+E : 6.0682737741515345 V
+Eta Activation : 0.4858228718259503 V
+Eta Concentration : 0.0020913937096838516 V
+Eta Ohmic : 0.01683847232321822 V
+FC Efficiency : 0.4544243698534965
+FC Power : 32.96394378917264 W
+FC Voltage : 3.544510084857273 V
+Loss : 0.5047527378588523 V
+PH2 : 0.19587810722427818 atm
+PH2O : 0.24109215059246653 atm
+PO2 : 0.1898965475240539 atm
+Power-Thermal : 24.231056210827365 W
+###########
+I :9.4 A
+
+E : 6.068272230670485 V
+Eta Activation : 0.4865330362583737 V
+Eta Concentration : 0.002115435787836413 V
+Eta Ohmic : 0.01702568800727893 V
+FC Efficiency : 0.4538335167183383
+FC Power : 33.27507344578857 W
+FC Voltage : 3.5399014304030394 V
+Loss : 0.5056741600534891 V
+PH2 : 0.19586405684266378 atm
+PH2O : 0.241074856997138 atm
+PO2 : 0.18988861468585558 atm
+Power-Thermal : 24.534926554211435 W
+###########
+I :9.5 A
+
+E : 6.068270687124953 V
+Eta Activation : 0.48723570842352304 V
+Eta Concentration : 0.002139514046707137 V
+Eta Ohmic : 0.0172130466465444 V
+FC Efficiency : 0.4532473514796257
+FC Power : 33.58562874464027 W
+FC Voltage : 3.5353293415410807 V
+Loss : 0.5065882691167746 V
+PH2 : 0.19585000646104941 atm
+PH2O : 0.24105756340180942 atm
+PO2 : 0.1898806818476573 atm
+Power-Thermal : 24.839371255359737 W
+###########
+I :9.6 A
+
+E : 6.068269143514934 V
+Eta Activation : 0.4879310452344229 V
+Eta Concentration : 0.0021636285953562776 V
+Eta Ohmic : 0.01740054867449473 V
+FC Efficiency : 0.45266577320430323
+FC Power : 33.895613097538224 W
+FC Voltage : 3.530793030993565 V
+Loss : 0.5074952225042738 V
+PH2 : 0.195835956079435 atm
+PH2O : 0.24104026980648086 atm
+PO2 : 0.18987274900945897 atm
+Power-Thermal : 25.14438690246178 W
+###########
+I :9.7 A
+
+E : 6.068267599840421 V
+Eta Activation : 0.4886191987257965 V
+Eta Concentration : 0.0021877795433379475 V
+Eta Ohmic : 0.017588194526754197 V
+FC Efficiency : 0.45208868408474073
+FC Power : 34.205029837851484 W
+FC Voltage : 3.526291735860978 V
+Loss : 0.5083951727958886 V
+PH2 : 0.1958219056978206 atm
+PH2O : 0.24102297621115232 atm
+PO2 : 0.1898648161712607 atm
+Power-Thermal : 25.449970162148514 W
+###########
+I :9.8 A
+
+E : 6.06826605610141 V
+Eta Activation : 0.4893003162542088 V
+Eta Concentration : 0.0022119670007030995 V
+Eta Ohmic : 0.017775984641085405 V
+FC Efficiency : 0.45151598931043885
+FC Power : 34.51388222288995 W
+FC Voltage : 3.521824716621423 V
+Loss : 0.5092882678959973 V
+PH2 : 0.1958078553162062 atm
+PH2O : 0.24100568261582375 atm
+PO2 : 0.18985688333306236 atm
+Power-Thermal : 25.75611777711006 W
+###########
+I :9.9 A
+
+E : 6.068264512297896 V
+Eta Activation : 0.4899745406880521 V
+Eta Concentration : 0.00223619107800254 V
+Eta Ohmic : 0.01796391945738363 V
+FC Efficiency : 0.4509475969462441
+FC Power : 34.82217343618897 W
+FC Voltage : 3.517391256180704 V
+Loss : 0.5101746512234383 V
+PH2 : 0.1957938049345918 atm
+PH2O : 0.24098838902049521 atm
+PO2 : 0.18984895049486408 atm
+Power-Thermal : 26.062826563811033 W
+###########
+I :10.0 A
+
+E : 6.068262968429873 V
+Eta Activation : 0.49064201058798146 V
+Eta Concentration : 0.002260451886289963 V
+Eta Ohmic : 0.018151999417671198 V
+FC Efficiency : 0.4503834178166871
+FC Power : 35.1299065897016 W
+FC Voltage : 3.51299065897016 V
+Loss : 0.5110544618919426 V
+PH2 : 0.19577975455297744 atm
+PH2O : 0.24097109542516668 atm
+PO2 : 0.18984101765666575 atm
+Power-Thermal : 26.370093410298402 W
+###########
+I :10.1 A
+
+E : 6.068261424497335 V
+Eta Activation : 0.491302860378375 V
+Eta Concentration : 0.0022847495371250046 V
+Eta Ohmic : 0.018340224966092097 V
+FC Efficiency : 0.44982336539607354
+FC Power : 35.43708472590268 W
+FC Voltage : 3.508622250089374 V
+Loss : 0.5119278348815921 V
+PH2 : 0.19576570417136305 atm
+PH2O : 0.24095380182983814 atm
+PO2 : 0.18983308481846747 atm
+Power-Thermal : 26.677915274097327 W
+###########
+I :10.2 A
+
+E : 6.068259880500275 V
+Eta Activation : 0.4919572205103466 V
+Eta Concentration : 0.002309084142576311 V
+Eta Ohmic : 0.018528596548906595 V
+FC Efficiency : 0.4492673557039906
+FC Power : 35.74371081980949 W
+FC Voltage : 3.504285374491127 V
+Loss : 0.5127949012018296 V
+PH2 : 0.19575165378974865 atm
+PH2O : 0.2409365082345096 atm
+PO2 : 0.18982515198026917 atm
+Power-Thermal : 26.986289180190507 W
+###########
+I :10.3 A
+
+E : 6.068258336438692 V
+Eta Activation : 0.4926052176168063 V
+Eta Concentration : 0.0023334558152246533 V
+Eta Ohmic : 0.01871711461448604 V
+FC Efficiency : 0.4487153072059112
+FC Power : 36.049787780922905 W
+FC Voltage : 3.499979396206107 V
+Loss : 0.513655788046517 V
+PH2 : 0.1957376034081343 atm
+PH2O : 0.24091921463918106 atm
+PO2 : 0.18981721914207086 atm
+Power-Thermal : 27.2952122190771 W
+###########
+I :10.4 A
+
+E : 6.068256792312577 V
+Eta Activation : 0.49324697466002965 V
+Eta Concentration : 0.0023578646681660484 V
+Eta Ohmic : 0.018905779613307732 V
+FC Efficiency : 0.4481671407185974
+FC Power : 36.35531845509263 W
+FC Voltage : 3.49570369760506 V
+Loss : 0.5145106189415034 V
+PH2 : 0.1957235530265199 atm
+PH2O : 0.24090192104385252 atm
+PO2 : 0.18980928630387256 atm
+Power-Thermal : 27.60468154490738 W
+###########
+I :10.5 A
+
+E : 6.068255248121927 V
+Eta Activation : 0.49388261107216497 V
+Eta Concentration : 0.002382310815014899 V
+Eta Ohmic : 0.019094591997949974 V
+FC Efficiency : 0.4476227793200355
+FC Power : 36.660305626310915 W
+FC Voltage : 3.4914576786962774 V
+Loss : 0.5153595138851299 V
+PH2 : 0.1957095026449055 atm
+PH2O : 0.24088462744852399 atm
+PO2 : 0.18980135346567423 atm
+Power-Thermal : 27.91469437368909 W
+###########
+I :10.6 A
+
+E : 6.068253703866735 V
+Eta Activation : 0.4945122428890842 V
+Eta Concentration : 0.0024067943699071807 V
+Eta Ohmic : 0.019283552223087124 V
+FC Efficiency : 0.4470821482636336
+FC Power : 36.96475201843723 W
+FC Voltage : 3.4872407564563423 V
+Loss : 0.5162025894820785 V
+PH2 : 0.19569545226329113 atm
+PH2O : 0.24086733385319545 atm
+PO2 : 0.18979342062747595 atm
+Power-Thermal : 28.225247981562774 W
+###########
+I :10.7 A
+
+E : 6.068252159546996 V
+Eta Activation : 0.4951359828779451 V
+Eta Concentration : 0.0024313154475036317 V
+Eta Ohmic : 0.019472660745484833 V
+FC Efficiency : 0.44654517489645235
+FC Power : 37.26866029685792 W
+FC Voltage : 3.4830523641923286 V
+Loss : 0.5170399590709336 V
+PH2 : 0.19568140188167674 atm
+PH2O : 0.2408500402578669 atm
+PO2 : 0.18978548778927762 atm
+Power-Thermal : 28.536339703142087 W
+###########
+I :10.8 A
+
+E : 6.068250615162705 V
+Eta Activation : 0.49575394065882394 V
+Eta Concentration : 0.0024558741629929722 V
+Eta Ohmic : 0.01966191802399532 V
+FC Efficiency : 0.44601178858123636
+FC Power : 37.57203307008336 W
+FC Voltage : 3.478891950933644 V
+Loss : 0.5178717328458122 V
+PH2 : 0.19566735150006234 atm
+PH2O : 0.24083274666253834 atm
+PO2 : 0.18977755495107934 atm
+Power-Thermal : 28.84796692991665 W
+###########
+I :10.9 A
+
+E : 6.068249070713856 V
+Eta Activation : 0.49636622282074006 V
+Eta Concentration : 0.0024804706320951542 V
+Eta Ohmic : 0.019851324519552817 V
+FC Efficiency : 0.44548192062204045
+FC Power : 37.87487289128588 W
+FC Voltage : 3.4747589808519157 V
+Loss : 0.518698017972388 V
+PH2 : 0.19565330111844795 atm
+PH2O : 0.2408154530672098 atm
+PO2 : 0.189769622112881 atm
+Power-Thermal : 29.160127108714125 W
+###########
+I :11.0 A
+
+E : 6.068247526200443 V
+Eta Activation : 0.49697293303238443 V
+Eta Concentration : 0.0025051049710646386 V
+Eta Ohmic : 0.020040880695169065 V
+FC Efficiency : 0.44495550419325025
+FC Power : 38.17718225978087 W
+FC Voltage : 3.470652932707352 V
+Loss : 0.5195189186986181 V
+PH2 : 0.19563925073683358 atm
+PH2O : 0.24079815947188127 atm
+PO2 : 0.18976168927468273 atm
+Power-Thermal : 29.47281774021913 W
+###########
+I :11.1 A
+
+E : 6.068245981622463 V
+Eta Activation : 0.4975741721478355 V
+Eta Concentration : 0.0025297772966936844 V
+Eta Ohmic : 0.020230587015928912 V
+FC Efficiency : 0.444432474271817
+FC Power : 38.47896362245391 W
+FC Voltage : 3.4665732993201726 V
+Loss : 0.5203345364604581 V
+PH2 : 0.1956252003552192 atm
+PH2O : 0.24078086587655273 atm
+PO2 : 0.1897537564364844 atm
+Power-Thermal : 29.786036377546086 W
+###########
+I :11.2 A
+
+E : 6.068244436979908 V
+Eta Activation : 0.4981700383075354 V
+Eta Concentration : 0.0025544877263156698 V
+Eta Ohmic : 0.020420443948985963 V
+FC Efficiency : 0.4439127675725285
+FC Power : 38.78021937513609 W
+FC Voltage : 3.4625195870657226 V
+Loss : 0.5211449699828371 V
+PH2 : 0.1956111499736048 atm
+PH2O : 0.2407635722812242 atm
+PO2 : 0.18974582359828612 atm
+Power-Thermal : 30.099780624863907 W
+###########
+I :11.3 A
+
+E : 6.0682428922727745 V
+Eta Activation : 0.49876062703477897 V
+Eta Concentration : 0.0025792363778084485 V
+Eta Ohmic : 0.020610451963558436 V
+FC Efficiency : 0.44339632248615957
+FC Power : 39.08095186393011 W
+FC Voltage : 3.458491315392045 V
+Loss : 0.5219503153761459 V
+PH2 : 0.19559709959199037 atm
+PH2O : 0.2407462786858956 atm
+PO2 : 0.1897378907600878 atm
+Power-Thermal : 30.414048136069898 W
+###########
+I :11.4 A
+
+E : 6.068241347501056 V
+Eta Activation : 0.49934603132794997 V
+Eta Concentration : 0.002604023369597719 V
+Eta Ohmic : 0.02080061153092496 V
+FC Efficiency : 0.4428830790203452
+FC Power : 39.3811633864891 W
+FC Voltage : 3.4544880163586926 V
+Loss : 0.5227506662284727 V
+PH2 : 0.195583049210376 atm
+PH2O : 0.24072898509056706 atm
+PO2 : 0.1897299579218895 atm
+Power-Thermal : 30.72883661351091 W
+###########
+I :11.5 A
+
+E : 6.068239802664746 V
+Eta Activation : 0.4999263417487312 V
+Eta Concentration : 0.0026288488206604207 V
+Eta Ohmic : 0.020990923124420538 V
+FC Efficiency : 0.4423729787430366
+FC Power : 39.680856193250385 W
+FC Voltage : 3.450509234195686 V
+Loss : 0.5235461136938121 V
+PH2 : 0.1955689988287616 atm
+PH2O : 0.24071169149523852 atm
+PO2 : 0.18972202508369118 atm
+Power-Thermal : 31.044143806749616 W
+###########
+I :11.6 A
+
+E : 6.068238257763843 V
+Eta Activation : 0.5005016465064944 V
+Eta Concentration : 0.0026537128505281678 V
+Eta Ohmic : 0.021181387219432617 V
+FC Efficiency : 0.441865964728406
+FC Power : 39.98003248862618 W
+FC Voltage : 3.446554524881567 V
+Loss : 0.5243367465764552 V
+PH2 : 0.19555494844714721 atm
+PH2O : 0.24069439789990998 atm
+PO2 : 0.1897140922454929 atm
+Power-Thermal : 31.359967511373824 W
+###########
+I :11.7 A
+
+E : 6.068236712798337 V
+Eta Activation : 0.5010720315390698 V
+Eta Concentration : 0.0026786155792907 V
+Eta Ohmic : 0.021372004293397202 V
+FC Efficiency : 0.44136198150507033
+FC Power : 40.27869443215272 W
+FC Voltage : 3.4426234557395485 V
+Loss : 0.5251226514117577 V
+PH2 : 0.19554089806553282 atm
+PH2O : 0.24067710430458145 atm
+PO2 : 0.1897061594072946 atm
+Power-Thermal : 31.676305567847283 W
+###########
+I :11.8 A
+
+E : 6.0682351677682265 V
+Eta Activation : 0.5016375805900763 V
+Eta Concentration : 0.0027035571275993596 V
+Eta Ohmic : 0.021562774825795005 V
+FC Efficiency : 0.4408609750065221
+FC Power : 40.5768441396003 W
+FC Voltage : 3.4387156050508727 V
+Loss : 0.5259039125434708 V
+PH2 : 0.19552684768391845 atm
+PH2O : 0.2406598107092529 atm
+PO2 : 0.1896982265690963 atm
+Power-Thermal : 31.993155860399707 W
+###########
+I :11.9 A
+
+E : 6.068233622673503 V
+Eta Activation : 0.5021983752829915 V
+Eta Concentration : 0.0027285376166705983 V
+Eta Ohmic : 0.02175369929814779 V
+FC Efficiency : 0.44036289252364796
+FC Power : 40.87448368404501 W
+FC Voltage : 3.4348305616844543 V
+Loss : 0.5266806121978098 V
+PH2 : 0.19551279730230406 atm
+PH2O : 0.24064251711392437 atm
+PO2 : 0.189690293730898 atm
+Power-Thermal : 32.310516315955 W
+###########
+I :12.0 A
+
+E : 6.068232077514163 V
+Eta Activation : 0.5027544951921185 V
+Eta Concentration : 0.002753557168289522 V
+Eta Ohmic : 0.021944778194014664 V
+FC Efficiency : 0.43986768265923715
+FC Power : 41.1716150969046 W
+FC Voltage : 3.43096792474205 V
+Loss : 0.5274528305544226 V
+PH2 : 0.19549874692068966 atm
+PH2O : 0.24062522351859583 atm
+PO2 : 0.1896823608926997 atm
+Power-Thermal : 32.62838490309541 W
+###########
+I :12.1 A
+
+E : 6.068230532290199 V
+Eta Activation : 0.5033060179106134 V
+Eta Concentration : 0.0027786159048134415 V
+Eta Ohmic : 0.022136011998988566 V
+FC Efficiency : 0.4393752952843747
+FC Power : 41.468240368939284 W
+FC Voltage : 3.4271273032181226 V
+Loss : 0.5282206458144153 V
+PH2 : 0.1954846965390753 atm
+PH2O : 0.24060792992326727 atm
+PO2 : 0.18967442805450138 atm
+Power-Thermal : 32.94675963106072 W
+###########
+I :12.2 A
+
+E : 6.068228987001609 V
+Eta Activation : 0.5038530191157073 V
+Eta Concentration : 0.002803713949175465 V
+Eta Ohmic : 0.02232740120069273 V
+FC Efficiency : 0.43888568149663215
+FC Power : 41.76436145121952 W
+FC Voltage : 3.423308315673731 V
+Loss : 0.5289841342655756 V
+PH2 : 0.1954706461574609 atm
+PH2O : 0.24059063632793873 atm
+PO2 : 0.18966649521630305 atm
+Power-Thermal : 33.26563854878048 W
+###########
+I :12.3 A
+
+E : 6.068227441648385 V
+Eta Activation : 0.5043955726312701 V
+Eta Concentration : 0.0028288514248881237 V
+Eta Ohmic : 0.022518946288777274 V
+FC Efficiency : 0.4383987935799625
+FC Power : 42.05998025606161 W
+FC Voltage : 3.4195105899237075 V
+Loss : 0.5297433703449355 V
+PH2 : 0.1954565957758465 atm
+PH2O : 0.2405733427326102 atm
+PO2 : 0.18965856237810477 atm
+Power-Thermal : 33.5850197439384 W
+###########
+I :12.4 A
+
+E : 6.068225896230521 V
+Eta Activation : 0.5049337504878407 V
+Eta Concentration : 0.002854028456047013 V
+Eta Ohmic : 0.02271064775491584 V
+FC Efficiency : 0.4379145849662183
+FC Power : 42.35509865793264 W
+FC Voltage : 3.415733762736503 V
+Loss : 0.5304984266988035 V
+PH2 : 0.19544254539423214 atm
+PH2O : 0.24055604913728165 atm
+PO2 : 0.18965062953990644 atm
+Power-Thermal : 33.90490134206737 W
+###########
+I :12.5 A
+
+E : 6.0682243507480145 V
+Eta Activation : 0.5054676229802448 V
+Eta Concentration : 0.002879245167334464 V
+Eta Ohmic : 0.02290250609280231 V
+FC Efficiency : 0.4374330101982187
+FC Power : 42.64971849432633 W
+FC Voltage : 3.411977479546106 V
+Loss : 0.5312493742403817 V
+PH2 : 0.19542849501261775 atm
+PH2O : 0.24053875554195311 atm
+PO2 : 0.18964269670170816 atm
+Power-Thermal : 34.22528150567368 W
+###########
+I :12.6 A
+
+E : 6.0682228052008576 V
+Eta Activation : 0.5059972587229173 V
+Eta Concentration : 0.002904501684023259 V
+Eta Ohmic : 0.023094521798147638 V
+FC Efficiency : 0.43695402489428414
+FC Power : 42.943841566610246 W
+FC Voltage : 3.4082413941754166 V
+Loss : 0.5319962822050882 V
+PH2 : 0.19541444463100335 atm
+PH2O : 0.24052146194662458 atm
+PO2 : 0.18963476386350983 atm
+Power-Thermal : 34.546158433389756 W
+###########
+I :12.7 A
+
+E : 6.068221259589047 V
+Eta Activation : 0.50652272470304 V
+Eta Concentration : 0.0029297981319803598 V
+Eta Ohmic : 0.023286695368676617 V
+FC Efficiency : 0.43647758571417444
+FC Power : 43.23746964084612 W
+FC Voltage : 3.404525168570561 V
+Loss : 0.5327392182036971 V
+PH2 : 0.19540039424938896 atm
+PH2O : 0.24050416835129604 atm
+PO2 : 0.18962683102531155 atm
+Power-Thermal : 34.867530359153875 W
+###########
+I :12.8 A
+
+E : 6.0682197139125735 V
+Eta Activation : 0.5070440863315936 V
+Eta Concentration : 0.0029551346376706675 V
+Eta Ohmic : 0.023479027304124864 V
+FC Efficiency : 0.4360036503263625
+FC Power : 43.530604448584036 W
+FC Voltage : 3.4008284725456277 V
+Loss : 0.5334782482733892 V
+PH2 : 0.1953863438677746 atm
+PH2O : 0.2404868747559675 atm
+PO2 : 0.18961889818711322 atm
+Power-Thermal : 35.18939555141597 W
+###########
+I :12.9 A
+
+E : 6.068218168171437 V
+Eta Activation : 0.5075614074924222 V
+Eta Concentration : 0.0029805113281608253 V
+Eta Ohmic : 0.023671518106235755 V
+FC Efficiency : 0.4355321773765824
+FC Power : 43.82324768763173 W
+FC Voltage : 3.397150983537343 V
+Loss : 0.5342134369268188 V
+PH2 : 0.1953722934861602 atm
+PH2O : 0.24046958116063896 atm
+PO2 : 0.18961096534891494 atm
+Power-Thermal : 35.51175231236828 W
+###########
+I :13.0 A
+
+E : 6.068216622365627 V
+Eta Activation : 0.5080747505894074 V
+Eta Concentration : 0.0030059283311230298 V
+Eta Ohmic : 0.023864168278757498 V
+FC Efficiency : 0.4350631264575881
+FC Power : 44.11540102279944 W
+FC Voltage : 3.3934923863691875 V
+Loss : 0.5349448471992879 V
+PH2 : 0.19535824310454578 atm
+PH2O : 0.24045228756531037 atm
+PO2 : 0.1896030325107166 atm
+Power-Thermal : 35.83459897720057 W
+###########
+I :13.1 A
+
+E : 6.068215076495141 V
+Eta Activation : 0.5085841765918293 V
+Eta Concentration : 0.0030313857748389007 V
+Eta Ohmic : 0.024056978327440227 V
+FC Efficiency : 0.43459645808007674
+FC Power : 44.407066086622244 W
+FC Voltage : 3.389852373024599 V
+Loss : 0.5356725406941084 V
+PH2 : 0.19534419272293138 atm
+PH2O : 0.24043499396998183 atm
+PO2 : 0.18959509967251834 atm
+Power-Thermal : 36.157933913377754 W
+###########
+I :13.2 A
+
+E : 6.068213530559974 V
+Eta Activation : 0.5090897450780083 V
+Eta Concentration : 0.0030568837882033475 V
+Eta Ohmic : 0.02424994876003317 V
+FC Efficiency : 0.4341321336447115
+FC Power : 44.69824448005949 W
+FC Voltage : 3.3862306424287496 V
+Loss : 0.5363965776262448 V
+PH2 : 0.19533014234131701 atm
+PH2O : 0.2404177003746533 atm
+PO2 : 0.18958716683432 atm
+Power-Thermal : 36.481755519940506 W
+###########
+I :13.3 A
+
+E : 6.068211984560119 V
+Eta Activation : 0.5095915142772953 V
+Eta Concentration : 0.0030824225007285017 V
+Eta Ohmic : 0.02444308008628188 V
+FC Efficiency : 0.4336701154152037
+FC Power : 44.98893777317324 W
+FC Voltage : 3.3826269002385896 V
+Loss : 0.5371170168643058 V
+PH2 : 0.19531609195970262 atm
+PH2O : 0.24040040677932475 atm
+PO2 : 0.18957923399612173 atm
+Power-Thermal : 36.80606222682677 W
+###########
+I :13.4 A
+
+E : 6.06821043849557 V
+Eta Activation : 0.5100895411104922 V
+Eta Concentration : 0.003108002042547655 V
+Eta Ohmic : 0.024636372817925512 V
+FC Efficiency : 0.4332103664924029
+FC Power : 45.27914750578596 W
+FC Voltage : 3.379040858640743 V
+Loss : 0.5378339159709654 V
+PH2 : 0.19530204157808823 atm
+PH2O : 0.2403831131839962 atm
+PO2 : 0.18957130115792342 atm
+Power-Thermal : 37.13085249421405 W
+###########
+I :13.5 A
+
+E : 6.068208892366325 V
+Eta Activation : 0.510583881228769 V
+Eta Concentration : 0.003133622544419236 V
+Eta Ohmic : 0.024829827468694155 V
+FC Efficiency : 0.43275285078934783
+FC Power : 45.568875188118334 W
+FC Voltage : 3.3754722361569134 V
+Loss : 0.5385473312418824 V
+PH2 : 0.19528799119647383 atm
+PH2O : 0.24036581958866765 atm
+PO2 : 0.18956336831972512 atm
+Power-Thermal : 37.45612481188167 W
+###########
+I :13.6 A
+
+E : 6.068207346172374 V
+Eta Activation : 0.5110745890511437 V
+Eta Concentration : 0.0031592841377308294 V
+Eta Ohmic : 0.02502344455430623 V
+FC Efficiency : 0.4322975330072397
+FC Power : 45.85812230140799 W
+FC Voltage : 3.37192075745647 V
+Loss : 0.5392573177431808 V
+PH2 : 0.19527394081485946 atm
+PH2O : 0.2403485259933391 atm
+PO2 : 0.1895554354815268 atm
+Power-Thermal : 37.78187769859201 W
+###########
+I :13.7 A
+
+E : 6.068205799913715 V
+Eta Activation : 0.5115617178005909 V
+Eta Concentration : 0.0031849869545032077 V
+Eta Ohmic : 0.02521722459246597 V
+FC Efficiency : 0.4318443786122967
+FC Power : 46.14689029851002 W
+FC Voltage : 3.3683861531759143 V
+Loss : 0.5399639293475601 V
+PH2 : 0.19525989043324507 atm
+PH2O : 0.24033123239801057 atm
+PO2 : 0.1895475026433285 atm
+Power-Thermal : 38.10810970148998 W
+###########
+I :13.8 A
+
+E : 6.068204253590341 V
+Eta Activation : 0.5120453195388363 V
+Eta Concentration : 0.0032107311273944176 V
+Eta Ohmic : 0.02541116810286088 V
+FC Efficiency : 0.4313933538134465
+FC Power : 46.43518060447939 W
+FC Voltage : 3.364868159744883 V
+Loss : 0.5406672187690916 V
+PH2 : 0.19524584005163068 atm
+PH2O : 0.24031393880268204 atm
+PO2 : 0.1895395698051302 atm
+Power-Thermal : 38.43481939552062 W
+###########
+I :13.9 A
+
+E : 6.068202707202248 V
+Eta Activation : 0.512525445199895 V
+Eta Concentration : 0.003236516789703883 V
+Eta Ohmic : 0.02560527560715935 V
+FC Efficiency : 0.4309444255408278
+FC Power : 46.72299461713655 W
+FC Voltage : 3.361366519218457 V
+Loss : 0.5413672375967582 V
+PH2 : 0.1952317896700163 atm
+PH2O : 0.2402966452073535 atm
+PO2 : 0.18953163696693187 atm
+Power-Thermal : 38.76200538286346 W
+###########
+I :14.0 A
+
+E : 6.068201160749429 V
+Eta Activation : 0.5130021446224087 V
+Eta Concentration : 0.003262344075376541 V
+Eta Ohmic : 0.025799547629008233 V
+FC Efficiency : 0.4304975614250592
+FC Power : 47.01033370761647 W
+FC Voltage : 3.357880979115462 V
+Loss : 0.5420640363267935 V
+PH2 : 0.19521773928840191 atm
+PH2O : 0.24027935161202496 atm
+PO2 : 0.1895237041287336 atm
+Power-Thermal : 39.08966629238354 W
+###########
+I :14.1 A
+
+E : 6.0681996142318795 V
+Eta Activation : 0.5134754665808305 V
+Eta Concentration : 0.0032882131190070272 V
+Eta Ohmic : 0.0259939846940305 V
+FC Efficiency : 0.4300527297772486
+FC Power : 47.2971992209018 W
+FC Voltage : 3.3544112922625393 V
+Loss : 0.5427576643938681 V
+PH2 : 0.19520368890678752 atm
+PH2O : 0.24026205801669642 atm
+PO2 : 0.18951577129053526 atm
+Power-Thermal : 39.4178007790982 W
+###########
+I :14.2 A
+
+E : 6.068198067649594 V
+Eta Activation : 0.5139454588155098 V
+Eta Concentration : 0.0033141240558438737 V
+Eta Ohmic : 0.026188587329822984 V
+FC Efficiency : 0.4296098995697065
+FC Power : 47.5835924763407 W
+FC Voltage : 3.350957216643711 V
+Loss : 0.5434481702011766 V
+PH2 : 0.19518963852517315 atm
+PH2O : 0.24024476442136788 atm
+PO2 : 0.18950783845233699 atm
+Power-Thermal : 39.74640752365931 W
+###########
+I :14.3 A
+
+E : 6.068196521002566 V
+Eta Activation : 0.5144121680617186 V
+Eta Concentration : 0.0033400770217937637 V
+Eta Ohmic : 0.02638335606595411 V
+FC Efficiency : 0.4291690404173376
+FC Power : 47.86951476814984 W
+FC Voltage : 3.3475185152552336 V
+Loss : 0.5441356011494665 V
+PH2 : 0.19517558814355876 atm
+PH2O : 0.24022747082603932 atm
+PO2 : 0.18949990561413865 atm
+Power-Thermal : 40.075485231850166 W
+###########
+I :14.4 A
+
+E : 6.068194974290791 V
+Eta Activation : 0.5148756400776706 V
+Eta Concentration : 0.0033660721534257932 V
+Eta Ohmic : 0.02657829143396171 V
+FC Efficiency : 0.4287301225596795
+FC Power : 48.15496736590321 W
+FC Voltage : 3.3440949559655007 V
+Loss : 0.5448200036650581 V
+PH2 : 0.19516153776194436 atm
+PH2O : 0.24021017723071078 atm
+PO2 : 0.18949197277594038 atm
+Power-Thermal : 40.4050326340968 W
+###########
+I :14.5 A
+
+E : 6.068193427514265 V
+Eta Activation : 0.5153359196715652 V
+Eta Concentration : 0.0033921095879757986 V
+Eta Ohmic : 0.026773393967350956 V
+FC Efficiency : 0.42829311684356475
+FC Power : 48.43995151500718 W
+FC Voltage : 3.3406863113798053 V
+Loss : 0.5455014232268919 V
+PH2 : 0.19514748738032997 atm
+PH2O : 0.24019288363538224 atm
+PO2 : 0.18948403993774204 atm
+Power-Thermal : 40.73504848499283 W
+###########
+I :14.6 A
+
+E : 6.0681918806729795 V
+Eta Activation : 0.5157930507277088 V
+Eta Concentration : 0.0034181894633506975 V
+Eta Ohmic : 0.02696866420159215 V
+FC Efficiency : 0.4278579947063745
+FC Power : 48.72446843716193 W
+FC Voltage : 3.337292358709721 V
+Loss : 0.5461799043926516 V
+PH2 : 0.1951334369987156 atm
+PH2O : 0.2401755900400537 atm
+PO2 : 0.18947610709954377 atm
+Power-Thermal : 41.065531562838075 W
+###########
+I :14.7 A
+
+E : 6.068190333766931 V
+Eta Activation : 0.5162470762317382 V
+Eta Concentration : 0.0034443119181328612 V
+Eta Ohmic : 0.027164102674118756 V
+FC Efficiency : 0.4274247281598695
+FC Power : 49.008519330810635 W
+FC Voltage : 3.333912879646982 V
+Loss : 0.5468554908239898 V
+PH2 : 0.1951193866171012 atm
+PH2O : 0.24015829644472517 atm
+PO2 : 0.18946817426134543 atm
+Power-Thermal : 41.396480669189366 W
+###########
+I :14.8 A
+
+E : 6.068188786796115 V
+Eta Activation : 0.5166980382949927 V
+Eta Concentration : 0.003470477091584555 V
+Eta Ohmic : 0.027359709924325373 V
+FC Efficiency : 0.4269932897745643
+FC Power : 49.29210537157571 W
+FC Voltage : 3.3305476602416015 V
+Loss : 0.5475282253109026 V
+PH2 : 0.1951053362354868 atm
+PH2O : 0.24014100284939657 atm
+PO2 : 0.18946024142314716 atm
+Power-Thermal : 41.7278946284243 W
+###########
+I :14.9 A
+
+E : 6.0681872397605225 V
+Eta Activation : 0.5171459781780658 V
+Eta Concentration : 0.003496685123652368 V
+Eta Ohmic : 0.027555486493565793 V
+FC Efficiency : 0.4265636526646285
+FC Power : 49.57522771268313 W
+FC Voltage : 3.3271964907841025 V
+Loss : 0.548198149795284 V
+PH2 : 0.1950912858538724 atm
+PH2O : 0.24012370925406804 atm
+PO2 : 0.18945230858494883 atm
+Power-Thermal : 42.05977228731688 W
+###########
+I :15.0 A
+
+E : 6.068185692660153 V
+Eta Activation : 0.5175909363135659 V
+Eta Concentration : 0.003522936154971726 V
+Eta Ohmic : 0.027751432925151073 V
+FC Efficiency : 0.4261357904732961
+FC Power : 49.85788748537565 W
+FC Voltage : 3.32385916569171 V
+Loss : 0.5488653053936886 V
+PH2 : 0.19507723547225803 atm
+PH2O : 0.2401064156587395 atm
+PO2 : 0.18944437574675055 atm
+Power-Thermal : 42.39211251462436 W
+###########
+I :15.1 A
+
+E : 6.068184145494997 V
+Eta Activation : 0.5180329523281251 V
+Eta Concentration : 0.0035492303268714076 V
+Eta Ohmic : 0.027947549764347667 V
+FC Efficiency : 0.42570967735875337
+FC Power : 50.14008579931397 W
+FC Voltage : 3.3205354833982765 V
+Loss : 0.5495297324193441 V
+PH2 : 0.19506318509064363 atm
+PH2O : 0.24008912206341096 atm
+PO2 : 0.18943644290855224 atm
+Power-Thermal : 42.72491420068603 W
+###########
+I :15.2 A
+
+E : 6.06818259826505 V
+Eta Activation : 0.5184720650636776 V
+Eta Concentration : 0.0035755677813781067 V
+Eta Ohmic : 0.02814383755837561 V
+FC Efficiency : 0.42528528798049914
+FC Power : 50.42182374296798 W
+FC Voltage : 3.3172252462478937 V
+Loss : 0.5501914704034313 V
+PH2 : 0.19504913470902924 atm
+PH2O : 0.24007182846808242 atm
+PO2 : 0.18942851007035394 atm
+Power-Thermal : 43.05817625703202 W
+###########
+I :15.3 A
+
+E : 6.06818105097031 V
+Eta Activation : 0.5189083125980438 V
+Eta Concentration : 0.0036019486612210486 V
+Eta Ohmic : 0.028340296856406745 V
+FC Efficiency : 0.42486259748614763
+FC Power : 50.703102383996864 W
+FC Voltage : 3.3139282603919518 V
+Loss : 0.5508505581156716 V
+PH2 : 0.19503508432741484 atm
+PH2O : 0.24005453487275388 atm
+PO2 : 0.18942057723215563 atm
+Power-Thermal : 43.39189761600314 W
+###########
+I :15.4 A
+
+E : 6.068179503610765 V
+Eta Activation : 0.5193417322648415 V
+Eta Concentration : 0.0036283731098366158 V
+Eta Ohmic : 0.028536928209562943 V
+FC Efficiency : 0.42444158149866146
+FC Power : 50.98392276961922 W
+FC Voltage : 3.3106443356895596 V
+Loss : 0.5515070335842411 V
+PH2 : 0.19502103394580048 atm
+PH2O : 0.24003724127742534 atm
+PO2 : 0.18941264439395733 atm
+Power-Thermal : 43.72607723038079 W
+###########
+I :15.5 A
+
+E : 6.068177956186416 V
+Eta Activation : 0.5197723606727547 V
+Eta Concentration : 0.003654841271373039 V
+Eta Ohmic : 0.028733732170914423 V
+FC Efficiency : 0.42402221610400065
+FC Power : 51.26428592697368 W
+FC Voltage : 3.307373285611205 V
+Loss : 0.5521609341150422 V
+PH2 : 0.19500698356418608 atm
+PH2O : 0.2400199476820968 atm
+PO2 : 0.18940471155575903 atm
+Power-Thermal : 44.060714073026325 W
+###########
+I :15.6 A
+
+E : 6.068176408697253 V
+Eta Activation : 0.5202002337241796 V
+Eta Concentration : 0.0036813532906951126 V
+Eta Ohmic : 0.028930709295478113 V
+FC Efficiency : 0.4236044778391653
+FC Power : 51.54419286346963 W
+FC Voltage : 3.3041149271454895 V
+Loss : 0.5528122963103528 V
+PH2 : 0.1949929331825717 atm
+PH2O : 0.24000265408676824 atm
+PO2 : 0.1893967787175607 atm
+Power-Thermal : 44.395807136530365 W
+###########
+I :15.7 A
+
+E : 6.068174861143274 V
+Eta Activation : 0.5206253866332797 V
+Eta Concentration : 0.003707909313388942 V
+Eta Ohmic : 0.029127860140215983 V
+FC Efficiency : 0.42318834368062186
+FC Power : 51.82364456712895 W
+FC Voltage : 3.3008690807088508 V
+Loss : 0.5534611560868846 V
+PH2 : 0.19497888280095732 atm
+PH2O : 0.2399853604914397 atm
+PO2 : 0.18938884587936242 atm
+Power-Thermal : 44.73135543287105 W
+###########
+I :15.8 A
+
+E : 6.068173313524472 V
+Eta Activation : 0.5210478539434632 V
+Eta Concentration : 0.003734509485766759 V
+Eta Ohmic : 0.02932518526403351 V
+FC Efficiency : 0.4227737910330967
+FC Power : 52.10264200691884 W
+FC Voltage : 3.2976355700581546 V
+Loss : 0.5541075486932635 V
+PH2 : 0.19496483241934293 atm
+PH2O : 0.23996806689611117 atm
+PO2 : 0.18938091304116408 atm
+Power-Thermal : 45.06735799308117 W
+###########
+I :15.9 A
+
+E : 6.068171765840841 V
+Eta Activation : 0.5214676695443111 V
+Eta Concentration : 0.003761153954871737 V
+Eta Ohmic : 0.029522685227778053 V
+FC Efficiency : 0.42236079771872254
+FC Power : 52.38118613307598 W
+FC Voltage : 3.2944142222060364 V
+Loss : 0.5547515087269609 V
+PH2 : 0.19495078203772853 atm
+PH2O : 0.23995077330078263 atm
+PO2 : 0.1893729802029658 atm
+Power-Thermal : 45.403813866924025 W
+###########
+I :16.0 A
+
+E : 6.068170218092376 V
+Eta Activation : 0.5218848666879753 V
+Eta Concentration : 0.003787842868482889 V
+Eta Ohmic : 0.02972036059423746 V
+FC Efficiency : 0.4219493419665253
+FC Power : 52.65927787742236 W
+FC Voltage : 3.2912048673388976 V
+Loss : 0.5553930701506956 V
+PH2 : 0.19493673165611416 atm
+PH2O : 0.2399334797054541 atm
+PO2 : 0.18936504736476747 atm
+Power-Thermal : 45.740722122577644 W
+###########
+I :16.1 A
+
+E : 6.068168670279071 V
+Eta Activation : 0.5222994780050636 V
+Eta Concentration : 0.0038145763751199716 V
+Eta Ohmic : 0.02991821192813852 V
+FC Efficiency : 0.4215394024022386
+FC Power : 52.936918153673126 W
+FC Voltage : 3.288007338737461 V
+Loss : 0.556032266308322 V
+PH2 : 0.19492268127449977 atm
+PH2O : 0.23991618611012555 atm
+PO2 : 0.1893571145265692 atm
+Power-Thermal : 46.07808184632689 W
+###########
+I :16.2 A
+
+E : 6.068167122400922 V
+Eta Activation : 0.5227115355200356 V
+Eta Concentration : 0.0038413546240484452 V
+Eta Ohmic : 0.03011623979614552 V
+FC Efficiency : 0.4211309580384326
+FC Power : 53.214107857736344 W
+FC Voltage : 3.2848214726997744 V
+Loss : 0.5566691299402295 V
+PH2 : 0.19490863089288538 atm
+PH2O : 0.239898892514797 atm
+PO2 : 0.18934918168837087 atm
+Power-Thermal : 46.41589214226366 W
+###########
+I :16.3 A
+
+E : 6.0681655744579235 V
+Eta Activation : 0.5231210706661223 V
+Eta Concentration : 0.003868177765284484 V
+Eta Ohmic : 0.0303144447668589 V
+FC Efficiency : 0.42072398826494806
+FC Power : 53.4908478680055 W
+FC Voltage : 3.2816471084665952 V
+Loss : 0.5573036931982657 V
+PH2 : 0.19489458051127098 atm
+PH2O : 0.23988159891946848 atm
+PO2 : 0.1893412488501726 atm
+Power-Thermal : 46.7541521319945 W
+###########
+I :16.4 A
+
+E : 6.068164026450069 V
+Eta Activation : 0.5235281142997915 V
+Eta Concentration : 0.003895045949600003 V
+Eta Ohmic : 0.030512827410813837 V
+FC Efficiency : 0.42031847283962076
+FC Power : 53.76713904564429 W
+FC Voltage : 3.2784840881490425 V
+Loss : 0.5579359876602054 V
+PH2 : 0.19488053012965662 atm
+PH2O : 0.23986430532413994 atm
+PO2 : 0.18933331601197426 atm
+Power-Thermal : 47.09286095435571 W
+###########
+I :16.5 A
+
+E : 6.068162478377353 V
+Eta Activation : 0.5239326967147726 V
+Eta Concentration : 0.00392195932852776 V
+Eta Ohmic : 0.03071138830047898 V
+FC Efficiency : 0.4199143918792892
+FC Power : 54.042982234864525 W
+FC Voltage : 3.275332256658456 V
+Loss : 0.5585660443437794 V
+PH2 : 0.1948664797480422 atm
+PH2O : 0.23984701172881134 atm
+PO2 : 0.18932538317377598 atm
+Power-Thermal : 47.432017765135484 W
+###########
+I :16.6 A
+
+E : 6.068160930239771 V
+Eta Activation : 0.5243348476556567 V
+Eta Concentration : 0.003948918054366472 V
+Eta Ohmic : 0.03091012801025511 V
+FC Efficiency : 0.41951172585107427
+FC Power : 54.318378263197104 W
+FC Voltage : 3.2721914616383794 V
+Loss : 0.5591938937202784 V
+PH2 : 0.1948524293664278 atm
+PH2O : 0.2398297181334828 atm
+PO2 : 0.18931745033557767 atm
+Power-Thermal : 47.77162173680291 W
+###########
+I :16.7 A
+
+E : 6.068159382037317 V
+Eta Activation : 0.524734596331091 V
+Eta Concentration : 0.003975922280185988 V
+Eta Ohmic : 0.03110904711647388 V
+FC Efficiency : 0.41911045556391824
+FC Power : 54.593327941755994 W
+FC Voltage : 3.2690615533985627 V
+Loss : 0.5598195657277508 V
+PH2 : 0.1948383789848134 atm
+PH2O : 0.23981242453815427 atm
+PO2 : 0.18930951749737937 atm
+Power-Thermal : 48.111672058244004 W
+###########
+I :16.8 A
+
+E : 6.068157833769985 V
+Eta Activation : 0.5251319714265756 V
+Eta Concentration : 0.004002972159832509 V
+Eta Ohmic : 0.03130814619739662 V
+FC Efficiency : 0.4187105621603796
+FC Power : 54.86783206549615 W
+FC Voltage : 3.265942384850961 V
+Loss : 0.5604430897838047 V
+PH2 : 0.19482432860319904 atm
+PH2O : 0.23979513094282573 atm
+PO2 : 0.18930158465918107 atm
+Power-Thermal : 48.45216793450386 W
+###########
+I :16.9 A
+
+E : 6.068156285437771 V
+Eta Activation : 0.5255270011168852 V
+Eta Concentration : 0.004030067847933837 V
+Eta Ohmic : 0.03150742583321312 V
+FC Efficiency : 0.41831202710866805
+FC Power : 55.14189141346462 W
+FC Voltage : 3.262833811447611 V
+Loss : 0.5610644947980321 V
+PH2 : 0.19481027822158464 atm
+PH2O : 0.23977783734749716 atm
+PO2 : 0.18929365182098276 atm
+Power-Thermal : 48.793108586535375 W
+###########
+I :17.0 A
+
+E : 6.068154737040668 V
+Eta Activation : 0.5259197130781191 V
+Eta Concentration : 0.0040572094999046905 V
+Eta Ohmic : 0.0317068866060405 V
+FC Efficiency : 0.4179148321949162
+FC Power : 55.415506749045896 W
+FC Voltage : 3.259735691120347 V
+Loss : 0.5616838091840644 V
+PH2 : 0.19479622783997025 atm
+PH2O : 0.23976054375216863 atm
+PO2 : 0.18928571898278446 atm
+Power-Thermal : 49.13449325095411 W
+###########
+I :17.1 A
+
+E : 6.068153188578673 V
+Eta Activation : 0.5263101344994024 V
+Eta Concentration : 0.004084397271952049 V
+Eta Ohmic : 0.03190652909992202 V
+FC Efficiency : 0.41751895951567825
+FC Power : 55.688678820201176 W
+FC Voltage : 3.2566478842222906 V
+Loss : 0.5623010608712765 V
+PH2 : 0.19478217745835585 atm
+PH2O : 0.2397432501568401 atm
+PO2 : 0.18927778614458618 atm
+Power-Thermal : 49.476321179798845 W
+###########
+I :17.2 A
+
+E : 6.068151640051777 V
+Eta Activation : 0.5266982920942437 V
+Eta Concentration : 0.0041116313210805356 V
+Eta Ohmic : 0.03210635390082605 V
+FC Efficiency : 0.4171243914706444
+FC Power : 55.96140835970165 W
+FC Voltage : 3.2535702534710262 V
+Loss : 0.5629162773161502 V
+PH2 : 0.1947681270767415 atm
+PH2O : 0.23972595656151155 atm
+PO2 : 0.18926985330638785 atm
+Power-Thermal : 49.81859164029835 W
+###########
+I :17.3 A
+
+E : 6.068150091459978 V
+Eta Activation : 0.5270842121115629 V
+Eta Concentration : 0.0041389118050978784 V
+Eta Ohmic : 0.032306361596645024 V
+FC Efficiency : 0.4167311107555704
+FC Power : 56.23369608535668 W
+FC Voltage : 3.2505026638934496 V
+Loss : 0.5635294855133057 V
+PH2 : 0.1947540766951271 atm
+PH2O : 0.239708662966183 atm
+PO2 : 0.18926192046818957 atm
+Power-Thermal : 50.161303914643334 W
+###########
+I :17.4 A
+
+E : 6.068148542803269 V
+Eta Activation : 0.5274679203464041 V
+Eta Concentration : 0.004166238882620375 V
+Eta Ohmic : 0.03250655277719429 V
+FC Efficiency : 0.4163391003554071
+FC Power : 56.50554270023585 W
+FC Voltage : 3.2474449827721754 V
+Loss : 0.5641407120062187 V
+PH2 : 0.1947400263135127 atm
+PH2O : 0.23969136937085447 atm
+PO2 : 0.18925398762999124 atm
+Power-Thermal : 50.50445729976415 W
+###########
+I :17.5 A
+
+E : 6.068146994081643 V
+Eta Activation : 0.5278494421503386 V
+Eta Concentration : 0.0041936127130784455 V
+Eta Ohmic : 0.03270692803421126 V
+FC Efficiency : 0.4159483435376284
+FC Power : 56.77694889288628 W
+FC Voltage : 3.2443970795935018 V
+Loss : 0.5647499828976283 V
+PH2 : 0.19472597593189833 atm
+PH2O : 0.23967407577552594 atm
+PO2 : 0.1892460547917929 atm
+Power-Thermal : 50.848051107113726 W
+###########
+I :17.6 A
+
+E : 6.068145445295098 V
+Eta Activation : 0.5282288024415737 V
+Eta Concentration : 0.004221033456722202 V
+Eta Ohmic : 0.03290748796135431 V
+FC Efficiency : 0.41555882384574955
+FC Power : 57.04791533754451 W
+FC Voltage : 3.241358825996847 V
+Loss : 0.5653573238596502 V
+PH2 : 0.19471192555028394 atm
+PH2O : 0.2396567821801974 atm
+PO2 : 0.18923812195359463 atm
+Power-Thermal : 51.19208466245551 W
+###########
+I :17.7 A
+
+E : 6.068143896443625 V
+Eta Activation : 0.5286060257147721 V
+Eta Concentration : 0.004248501274627073 V
+Eta Ohmic : 0.03310823315420189 V
+FC Efficiency : 0.41517052509302815
+FC Power : 57.31844269434347 W
+FC Voltage : 3.23833009572562 V
+Loss : 0.565962760143601 V
+PH2 : 0.19469787516866954 atm
+PH2O : 0.23963948858486886 atm
+PO2 : 0.1892301891153963 atm
+Power-Thermal : 51.53655730565654 W
+###########
+I :17.8 A
+
+E : 6.068142347527221 V
+Eta Activation : 0.5289811360505997 V
+Eta Concentration : 0.0042760163286995 V
+Eta Ohmic : 0.03330916421025164 V
+FC Efficiency : 0.41478343135634194
+FC Power : 57.58853160951451 W
+FC Voltage : 3.235310764579467 V
+Loss : 0.5665663165895508 V
+PH2 : 0.19468382478705518 atm
+PH2O : 0.23962219498954032 atm
+PO2 : 0.18922225627719802 atm
+Power-Thermal : 51.881468390485495 W
+###########
+I :17.9 A
+
+E : 6.06814079854588 V
+Eta Activation : 0.5293541571249998 V
+Eta Concentration : 0.0043035787816826385 V
+Eta Ohmic : 0.033510281728919435 V
+FC Efficiency : 0.41439752697023974
+FC Power : 57.858182715584874 W
+FC Voltage : 3.2323007103678703 V
+Loss : 0.5671680176356019 V
+PH2 : 0.19466977440544078 atm
+PH2O : 0.23960490139421176 atm
+PO2 : 0.1892143234389997 atm
+Power-Thermal : 52.22681728441513 W
+###########
+I :18.0 A
+
+E : 6.0681392494995965 V
+Eta Activation : 0.5297251122182145 V
+Eta Concentration : 0.004331188797162155 V
+Eta Ohmic : 0.0337115863115386 V
+FC Efficiency : 0.4140127965211565
+FC Power : 58.12739663157038 W
+FC Voltage : 3.2292998128650208 V
+Loss : 0.5677678873269152 V
+PH2 : 0.1946557240238264 atm
+PH2O : 0.23958760779888322 atm
+PO2 : 0.1892063906008014 atm
+Power-Thermal : 52.57260336842963 W
+###########
+I :18.1 A
+
+E : 6.068137700388365 V
+Eta Activation : 0.5300940242235528 V
+Eta Concentration : 0.00435884653957204 V
+Eta Ohmic : 0.033913078561359056 V
+FC Efficiency : 0.4136292248417879
+FC Power : 58.39617396316362 W
+FC Voltage : 3.2263079537659456 V
+Loss : 0.5683659493244839 V
+PH2 : 0.194641673642212 atm
+PH2O : 0.23957031420355468 atm
+PO2 : 0.18919845776260308 atm
+Power-Thermal : 52.91882603683639 W
+###########
+I :18.2 A
+
+E : 6.068136151212179 V
+Eta Activation : 0.5304609156559181 V
+Eta Concentration : 0.004386552174200485 V
+Eta Ohmic : 0.03411475908354646 V
+FC Efficiency : 0.41324679700562217
+FC Power : 58.66451530291813 W
+FC Voltage : 3.2233250166438534 V
+Loss : 0.568962226913665 V
+PH2 : 0.19462762326059757 atm
+PH2O : 0.23955302060822609 atm
+PO2 : 0.1891905249244048 atm
+Power-Thermal : 53.265484697081874 W
+###########
+I :18.3 A
+
+E : 6.0681346019710345 V
+Eta Activation : 0.5308258086601026 V
+Eta Concentration : 0.00441430586719582 V
+Eta Ohmic : 0.03431662848518154 V
+FC Efficiency : 0.41286549832161973
+FC Power : 58.93242123042801 W
+FC Voltage : 3.2203508869086344 V
+Loss : 0.56955674301248 V
+PH2 : 0.1946135728789832 atm
+PH2O : 0.23953572701289755 atm
+PO2 : 0.1891825920862065 atm
+Power-Thermal : 53.612578769571996 W
+###########
+I :18.4 A
+
+E : 6.068133052664927 V
+Eta Activation : 0.5311887250188544 V
+Eta Concentration : 0.004442107785572472 V
+Eta Ohmic : 0.03451868737525927 V
+FC Efficiency : 0.41248531432903796
+FC Power : 59.19989231250352 W
+FC Voltage : 3.217385451766496 V
+Loss : 0.5701495201796862 V
+PH2 : 0.1945995224973688 atm
+PH2O : 0.239518433417569 atm
+PO2 : 0.1891746592480082 atm
+Power-Thermal : 53.960107687496475 W
+###########
+I :18.5 A
+
+E : 6.068131503293848 V
+Eta Activation : 0.5315496861607278 V
+Eta Concentration : 0.004469958097217015 V
+Eta Ohmic : 0.03472093636468817 V
+FC Efficiency : 0.41210623079239506
+FC Power : 59.466929103342615 W
+FC Voltage : 3.214428600180682 V
+Loss : 0.5707405806226331 V
+PH2 : 0.19458547211575442 atm
+PH2O : 0.23950113982224047 atm
+PO2 : 0.1891667264098099 atm
+Power-Thermal : 54.30807089665739 W
+###########
+I :18.6 A
+
+E : 6.0681299538577935 V
+Eta Activation : 0.5319087131677203 V
+Eta Concentration : 0.004497856970894247 V
+Eta Ohmic : 0.03492337606628964 V
+FC Efficiency : 0.41172823369657346
+FC Power : 59.733532144698884 W
+FC Voltage : 3.211480222833273 V
+Loss : 0.5713299462049041 V
+PH2 : 0.19457142173414005 atm
+PH2O : 0.23948384622691193 atm
+PO2 : 0.18915879357161158 atm
+Power-Thermal : 54.65646785530113 W
+###########
+I :18.7 A
+
+E : 6.068128404356759 V
+Eta Activation : 0.532265826782706 V
+Eta Concentration : 0.004525804576253312 V
+Eta Ohmic : 0.03512600709479728 V
+FC Efficiency : 0.41135130924204827
+FC Power : 59.99970196604516 W
+FC Voltage : 3.2085402120879767 V
+Loss : 0.5719176384537565 V
+PH2 : 0.19455737135252565 atm
+PH2O : 0.2394665526315834 atm
+PO2 : 0.18915086073341328 atm
+Power-Thermal : 55.005298033954844 W
+###########
+I :18.8 A
+
+E : 6.068126854790739 V
+Eta Activation : 0.5326210474166697 V
+Eta Concentration : 0.004553801083833917 V
+Eta Ohmic : 0.0353288300668562 V
+FC Efficiency : 0.41097544384024864
+FC Power : 60.26543908473407 W
+FC Voltage : 3.20560846195394 V
+Loss : 0.5725036785673598 V
+PH2 : 0.19454332097091126 atm
+PH2O : 0.23944925903625486 atm
+PO2 : 0.189142927895215 atm
+Power-Thermal : 55.35456091526594 W
+###########
+I :18.9 A
+
+E : 6.068125305159726 V
+Eta Activation : 0.5329743951557508 V
+Eta Concentration : 0.004581846665072546 V
+Eta Ohmic : 0.03553184560102247 V
+FC Efficiency : 0.41060062410903797
+FC Power : 60.53074400615438 W
+FC Voltage : 3.2026848680504965 V
+Loss : 0.5730880874218459 V
+PH2 : 0.19452927058929687 atm
+PH2O : 0.23943196544092632 atm
+PO2 : 0.18913499505701667 atm
+Power-Thermal : 55.70425599384562 W
+###########
+I :19.0 A
+
+E : 6.0681237554637155 V
+Eta Activation : 0.5333258897680984 V
+Eta Concentration : 0.004609941492308783 V
+Eta Ohmic : 0.035735054317762534 V
+FC Efficiency : 0.41022683686831624
+FC Power : 60.79561722388447 W
+FC Voltage : 3.199769327572867 V
+Loss : 0.5736708855781697 V
+PH2 : 0.1945152202076825 atm
+PH2O : 0.23941467184559778 atm
+PO2 : 0.1891270622188184 atm
+Power-Thermal : 56.05438277611554 W
+###########
+I :19.1 A
+
+E : 6.0681222057027036 V
+Eta Activation : 0.5336755507105508 V
+Eta Concentration : 0.004638085738791657 V
+Eta Ohmic : 0.0359384568394526 V
+FC Efficiency : 0.40985406913573436
+FC Power : 61.06005921984171 W
+FC Voltage : 3.196861739258728 V
+Loss : 0.5742520932887951 V
+PH2 : 0.1945011698260681 atm
+PH2O : 0.23939737825026924 atm
+PO2 : 0.18911912938062006 atm
+Power-Thermal : 56.404940780158306 W
+###########
+I :19.2 A
+
+E : 6.068120655876683 V
+Eta Activation : 0.5340233971351361 V
+Eta Concentration : 0.004666279578686045 V
+Eta Ohmic : 0.03614205379037806 V
+FC Efficiency : 0.4094823081225233
+FC Power : 61.32407046442909 W
+FC Voltage : 3.193962003355682 V
+Loss : 0.5748317305042002 V
+PH2 : 0.1944871194444537 atm
+PH2O : 0.23938008465494068 atm
+PO2 : 0.18911119654242173 atm
+Power-Thermal : 56.755929535570914 W
+###########
+I :19.3 A
+
+E : 6.06811910598565 V
+Eta Activation : 0.5343694478954071 V
+Eta Concentration : 0.004694523187079151 V
+Eta Ohmic : 0.036345845796733174 V
+FC Efficiency : 0.40911154122942983
+FC Power : 61.58765141667837 W
+FC Voltage : 3.1910700215895527 V
+Loss : 0.5754098168792194 V
+PH2 : 0.19447306906283934 atm
+PH2O : 0.23936279105961214 atm
+PO2 : 0.18910326370422345 atm
+Power-Thermal : 57.107348583321645 W
+###########
+I :19.4 A
+
+E : 6.0681175560295975 V
+Eta Activation : 0.5347137215526111 V
+Eta Concentration : 0.004722816739987023 V
+Eta Ohmic : 0.03654983348662028 V
+FC Efficiency : 0.4087417560427571
+FC Power : 61.85080252439 W
+FC Voltage : 3.1881856971335054 V
+Loss : 0.5759863717792184 V
+PH2 : 0.19445901868122495 atm
+PH2O : 0.2393454974642836 atm
+PO2 : 0.18909533086602512 atm
+Power-Thermal : 57.45919747561 W
+###########
+I :19.5 A
+
+E : 6.068116006008521 V
+Eta Activation : 0.5350562363817006 V
+Eta Concentration : 0.004751160414361138 V
+Eta Ohmic : 0.03675401749004959 V
+FC Efficiency : 0.40837294033050814
+FC Power : 62.113524224270286 W
+FC Voltage : 3.1853089345779635 V
+Loss : 0.5765614142861114 V
+PH2 : 0.19444496829961055 atm
+PH2O : 0.23932820386895506 atm
+PO2 : 0.18908739802782684 atm
+Power-Thermal : 57.81147577572972 W
+###########
+I :19.6 A
+
+E : 6.068114455922413 V
+Eta Activation : 0.5353970103771931 V
+Eta Concentration : 0.004779554388095034 V
+Eta Ohmic : 0.03695839843893859 V
+FC Efficiency : 0.40800508203862557
+FC Power : 62.375816942065086 W
+FC Voltage : 3.1824396399012795 V
+Loss : 0.5771349632042267 V
+PH2 : 0.1944309179179962 atm
+PH2O : 0.23931091027362653 atm
+PO2 : 0.1890794651896285 atm
+Power-Thermal : 58.164183057934935 W
+###########
+I :19.7 A
+
+E : 6.0681129057712715 V
+Eta Activation : 0.5357360612588775 V
+Eta Concentration : 0.004807998840031021 V
+Eta Ohmic : 0.03716297696711169 V
+FC Efficiency : 0.4076381692873295
+FC Power : 62.637681092691054 W
+FC Voltage : 3.1795777204411704 V
+Loss : 0.5777070370660202 V
+PH2 : 0.1944168675363818 atm
+PH2O : 0.239293616678298 atm
+PO2 : 0.18907153235143023 atm
+Power-Thermal : 58.51731890730895 W
+###########
+I :19.8 A
+
+E : 6.068111355555088 V
+Eta Activation : 0.5360734064773797 V
+Eta Concentration : 0.004836493949966939 V
+Eta Ohmic : 0.037367753710299774 V
+FC Efficiency : 0.4072721903675456
+FC Power : 62.899117080363744 W
+FC Voltage : 3.1767230848668557 V
+Loss : 0.5782776541376464 V
+PH2 : 0.1944028171547674 atm
+PH2O : 0.23927632308296945 atm
+PO2 : 0.18906359951323193 atm
+Power-Thermal : 58.870882919636266 W
+###########
+I :19.9 A
+
+E : 6.068109805273859 V
+Eta Activation : 0.5364090632195859 V
+Eta Concentration : 0.004865039898662958 V
+Eta Ohmic : 0.037572729306139876 V
+FC Efficiency : 0.40690713373742504
+FC Power : 63.160125298723116 W
+FC Voltage : 3.1738756431519155 V
+Loss : 0.5788468324243887 V
+PH2 : 0.194388766773153 atm
+PH2O : 0.2392590294876409 atm
+PO2 : 0.18905566667503362 atm
+Power-Thermal : 59.22487470127688 W
+###########
+I :20.0 A
+
+E : 6.068108254927578 V
+Eta Activation : 0.5367430484139311 V
+Eta Concentration : 0.004893636867848492 V
+Eta Ohmic : 0.037777904394174805 V
+FC Efficiency : 0.4065429880189495
+FC Power : 63.420706130956134 W
+FC Voltage : 3.1710353065478065 V
+Loss : 0.5794145896759544 V
+PH2 : 0.19437471639153858 atm
+PH2O : 0.23924173589231232 atm
+PO2 : 0.18904773383683532 atm
+Power-Thermal : 59.57929386904388 W
+###########
+I :20.1 A
+
+E : 6.068106704516239 V
+Eta Activation : 0.5370753787355552 V
+Eta Concentration : 0.004922285040229104 V
+Eta Ohmic : 0.0379832796158528 V
+FC Efficiency : 0.40617974199462226
+FC Power : 63.680859949916886 W
+FC Voltage : 3.168201987558054 V
+Loss : 0.5799809433916371 V
+PH2 : 0.19436066600992422 atm
+PH2O : 0.23922444229698378 atm
+PO2 : 0.18903980099863701 atm
+Power-Thermal : 59.93414005008313 W
+###########
+I :20.2 A
+
+E : 6.068105154039839 V
+Eta Activation : 0.5374060706113307 V
+Eta Concentration : 0.004950984599493534 V
+Eta Ohmic : 0.038188855614527235 V
+FC Efficiency : 0.40581738460424116
+FC Power : 63.940587118244245 W
+FC Voltage : 3.1653755999130815 V
+Loss : 0.5805459108253515 V
+PH2 : 0.19434661562830982 atm
+PH2O : 0.23920714870165524 atm
+PO2 : 0.1890318681604387 atm
+Power-Thermal : 60.28941288175576 W
+###########
+I :20.3 A
+
+E : 6.06810360349837 V
+Eta Activation : 0.5377351402247683 V
+Eta Concentration : 0.0049797357303207595 V
+Eta Ohmic : 0.03839463303545636 V
+FC Efficiency : 0.4054559049417491
+FC Power : 64.19988798847656 W
+FC Voltage : 3.1625560585456434 V
+Loss : 0.5811095089905454 V
+PH2 : 0.19433256524669543 atm
+PH2O : 0.2391898551063267 atm
+PO2 : 0.1890239353222404 atm
+Power-Thermal : 60.64511201152345 W
+###########
+I :20.4 A
+
+E : 6.068102052891828 V
+Eta Activation : 0.538062603520798 V
+Eta Concentration : 0.005008538618387127 V
+Eta Ohmic : 0.03860061252580293 V
+FC Efficiency : 0.40509529225216506
+FC Power : 64.4587629031645 W
+FC Voltage : 3.1597432795668876 V
+Loss : 0.5816717546649881 V
+PH2 : 0.19431851486508106 atm
+PH2O : 0.23917256151099817 atm
+PO2 : 0.1890160024840421 atm
+Power-Thermal : 61.001237096835496 W
+###########
+I :20.5 A
+
+E : 6.068100502220207 V
+Eta Activation : 0.5383884762104386 V
+Eta Concentration : 0.005037393450373539 V
+Eta Ohmic : 0.03880679473463411 V
+FC Efficiency : 0.4047355359285865
+FC Power : 64.71721219498099 W
+FC Voltage : 3.1569371802429753 V
+Loss : 0.5822326643954463 V
+PH2 : 0.19430446448346667 atm
+PH2O : 0.2391552679156696 atm
+PO2 : 0.18900806964584382 atm
+Power-Thermal : 61.357787805019015 W
+###########
+I :20.6 A
+
+E : 6.068098951483502 V
+Eta Activation : 0.5387127737753481 V
+Eta Concentration : 0.0050663004139727226 V
+Eta Ohmic : 0.03901318031292115 V
+FC Efficiency : 0.4043766255092682
+FC Power : 64.97523618682922 W
+FC Voltage : 3.154137678972292 V
+Loss : 0.5827922545022419 V
+PH2 : 0.19429041410185227 atm
+PH2O : 0.23913797432034106 atm
+PO2 : 0.1890001368076455 atm
+Power-Thermal : 61.71476381317079 W
+###########
+I :20.7 A
+
+E : 6.0680974006817054 V
+Eta Activation : 0.5390355114722686 V
+Eta Concentration : 0.0050952596978965535 V
+Eta Ohmic : 0.03921976991353921 V
+FC Efficiency : 0.40401855067476705
+FC Power : 65.2328351919479 W
+FC Voltage : 3.1513446952631834 V
+Loss : 0.5833505410837044 V
+PH2 : 0.1942763637202379 atm
+PH2O : 0.23912068072501252 atm
+PO2 : 0.18899220396944721 atm
+Power-Thermal : 62.07216480805211 W
+###########
+I :20.8 A
+
+E : 6.068095849814815 V
+Eta Activation : 0.539356704337361 V
+Eta Concentration : 0.005124271491883448 V
+Eta Ohmic : 0.03942656419126717 V
+FC Efficiency : 0.4036613012451611
+FC Power : 65.49000951401494 W
+FC Voltage : 3.148558149712257 V
+Loss : 0.5839075400205117 V
+PH2 : 0.1942623133386235 atm
+PH2O : 0.239103387129684 atm
+PO2 : 0.18898427113124888 atm
+Power-Thermal : 62.429990485985066 W
+###########
+I :20.9 A
+
+E : 6.068094298882824 V
+Eta Activation : 0.5396763671904378 V
+Eta Concentration : 0.005153335986705811 V
+Eta Ohmic : 0.03963356380278751 V
+FC Efficiency : 0.4033048671773292
+FC Power : 65.74675944724821 W
+FC Voltage : 3.1457779639831682 V
+Loss : 0.5844632669799311 V
+PH2 : 0.19424826295700912 atm
+PH2O : 0.23908609353435545 atm
+PO2 : 0.18897633829305055 atm
+Power-Thermal : 62.78824055275179 W
+###########
+I :21.0 A
+
+E : 6.068092747885726 V
+Eta Activation : 0.539994514639092 V
+Eta Concentration : 0.005182453374177587 V
+Eta Ohmic : 0.03984076940668607 V
+FC Efficiency : 0.4029492385623009
+FC Power : 66.00308527650489 W
+FC Voltage : 3.1430040607859473 V
+Loss : 0.5850177374199557 V
+PH2 : 0.19423421257539472 atm
+PH2O : 0.2390687999390269 atm
+PO2 : 0.18896840545485227 atm
+Power-Thermal : 63.146914723495115 W
+###########
+I :21.1 A
+
+E : 6.068091196823515 V
+Eta Activation : 0.540311161082732 V
+Eta Concentration : 0.005211623847161831 V
+Eta Ohmic : 0.04004818166345206 V
+FC Efficiency : 0.40259440562266474
+FC Power : 66.25898727737818 W
+FC Voltage : 3.1402363638567854 V
+Loss : 0.5855709665933458 V
+PH2 : 0.19422016219378035 atm
+PH2O : 0.23905150634369837 atm
+PO2 : 0.18896047261665394 atm
+Power-Thermal : 63.50601272262184 W
+###########
+I :21.2 A
+
+E : 6.068089645696189 V
+Eta Activation : 0.5406263207165173 V
+Eta Concentration : 0.00524084759957838 V
+Eta Ohmic : 0.040255801235477805 V
+FC Efficiency : 0.4022403587100411
+FC Power : 66.5144657162924 W
+FC Voltage : 3.137474797938321 V
+Loss : 0.5861229695515735 V
+PH2 : 0.19420611181216596 atm
+PH2O : 0.23903421274836983 atm
+PO2 : 0.18895253977845566 atm
+Power-Thermal : 63.8655342837076 W
+###########
+I :21.3 A
+
+E : 6.0680880945037385 V
+Eta Activation : 0.5409400075352043 V
+Eta Concentration : 0.005270124826411597 V
+Eta Ohmic : 0.040463628787058864 V
+FC Efficiency : 0.4018870883026108
+FC Power : 66.76952085059575 W
+FC Voltage : 3.134719288760364 V
+Loss : 0.5866737611486749 V
+PH2 : 0.19419206143055157 atm
+PH2O : 0.2390169191530413 atm
+PO2 : 0.18894460694025733 atm
+Power-Thermal : 64.22547914940425 W
+###########
+I :21.4 A
+
+E : 6.06808654324616 V
+Eta Activation : 0.5412522353369005 V
+Eta Concentration : 0.005299455723718174 V
+Eta Ohmic : 0.04067166498439376 V
+FC Efficiency : 0.4015345850027049
+FC Power : 67.02415292865149 W
+FC Voltage : 3.131969763021098 V
+Loss : 0.5872233560450124 V
+PH2 : 0.1941780110489372 atm
+PH2O : 0.23899962555771273 atm
+PO2 : 0.18893667410205905 atm
+Power-Thermal : 64.58584707134851 W
+###########
+I :21.5 A
+
+E : 6.068084991923449 V
+Eta Activation : 0.5415630177267317 V
+Eta Concentration : 0.005328840488634998 V
+Eta Ohmic : 0.040879910495584086 V
+FC Efficiency : 0.40118283953444805
+FC Power : 67.27836218992695 W
+FC Voltage : 3.129226148368695 V
+Loss : 0.5877717687109507 V
+PH2 : 0.1941639606673228 atm
+PH2O : 0.2389823319623842 atm
+PO2 : 0.18892874126386075 atm
+Power-Thermal : 64.94663781007306 W
+###########
+I :21.6 A
+
+E : 6.068083440535599 V
+Eta Activation : 0.5418723681204236 V
+Eta Concentration : 0.005358279319387112 V
+Eta Ohmic : 0.041088365990634375 V
+FC Efficiency : 0.4008318427414581
+FC Power : 67.53214886508087 W
+FC Voltage : 3.1264883733833733 V
+Loss : 0.5883190134304451 V
+PH2 : 0.1941499102857084 atm
+PH2O : 0.23896503836705565 atm
+PO2 : 0.18892080842566245 atm
+Power-Thermal : 65.30785113491915 W
+###########
+I :21.7 A
+
+E : 6.068081889082604 V
+Eta Activation : 0.542180299747802 V
+Eta Concentration : 0.0053877724152957395 V
+Eta Ohmic : 0.04129703214145216 V
+FC Efficiency : 0.4004815855845967
+FC Power : 67.78551317604884 W
+FC Voltage : 3.1237563675598543 V
+Loss : 0.58886510430455 V
+PH2 : 0.194135859904094 atm
+PH2O : 0.2389477447717271 atm
+PO2 : 0.18891287558746414 atm
+Power-Thermal : 65.66948682395116 W
+###########
+I :21.8 A
+
+E : 6.068080337564458 V
+Eta Activation : 0.5424868256562114 V
+Eta Concentration : 0.005417319976786375 V
+Eta Ohmic : 0.04150590962184798 V
+FC Efficiency : 0.40013205913977296
+FC Power : 68.038455336127 W
+FC Voltage : 3.121030061290229 V
+Loss : 0.5894100552548458 V
+PH2 : 0.1941218095224796 atm
+PH2O : 0.23893045117639852 atm
+PO2 : 0.18890494274926584 atm
+Power-Thermal : 66.03154466387302 W
+###########
+I :21.9 A
+
+E : 6.068078785981157 V
+Eta Activation : 0.5427919587138553 V
+Eta Concentration : 0.005446922205396955 V
+Eta Ohmic : 0.041714999107535386 V
+FC Efficiency : 0.3997832545957972
+FC Power : 68.29097555005409 W
+FC Voltage : 3.1183093858472186 V
+Loss : 0.5899538800267877 V
+PH2 : 0.19410775914086523 atm
+PH2O : 0.23891315758106998 atm
+PO2 : 0.18889700991106753 atm
+Power-Thermal : 66.39402444994592 W
+###########
+I :22.0 A
+
+E : 6.068077234332696 V
+Eta Activation : 0.5430957116130605 V
+Eta Concentration : 0.0054765793037861235 V
+Eta Ohmic : 0.041924301276131025 V
+FC Efficiency : 0.39943516325228307
+FC Power : 68.54307401409179 W
+FC Voltage : 3.115594273367808 V
+Loss : 0.5904965921929776 V
+PH2 : 0.19409370875925083 atm
+PH2O : 0.23889586398574145 atm
+PO2 : 0.18888907707286925 atm
+Power-Thermal : 66.75692598590823 W
+###########
+I :22.1 A
+
+E : 6.068075682619067 V
+Eta Activation : 0.5433980968734687 V
+Eta Concentration : 0.005506291475741529 V
+Eta Ohmic : 0.042133816807154674 V
+FC Efficiency : 0.39908777651759514
+FC Power : 68.79475091610307 W
+FC Voltage : 3.1128846568372426 V
+Loss : 0.591038205156365 V
+PH2 : 0.19407965837763644 atm
+PH2O : 0.2388785703904129 atm
+PO2 : 0.18888114423467092 atm
+Power-Thermal : 67.12024908389695 W
+###########
+I :22.2 A
+
+E : 6.068074130840268 V
+Eta Activation : 0.5436991268451544 V
+Eta Concentration : 0.005536058926188243 V
+Eta Ohmic : 0.042343546382029314 V
+FC Efficiency : 0.39874108590684715
+FC Power : 69.04600643562965 W
+FC Voltage : 3.110180470073408 V
+Loss : 0.591578732153372 V
+PH2 : 0.19406560799602207 atm
+PH2O : 0.23886127679508437 atm
+PO2 : 0.18887321139647265 atm
+Power-Thermal : 67.48399356437035 W
+###########
+I :22.3 A
+
+E : 6.06807257899629 V
+Eta Activation : 0.5439988137116731 V
+Eta Concentration : 0.005565881861197245 V
+Eta Ohmic : 0.04255349068408131 V
+FC Efficiency : 0.3983950830399399
+FC Power : 69.29684074396715 W
+FC Voltage : 3.1074816477115315 V
+Loss : 0.5921181862569517 V
+PH2 : 0.19405155761440768 atm
+PH2O : 0.23884398319975583 atm
+PO2 : 0.1888652785582743 atm
+Power-Thermal : 67.84815925603286 W
+###########
+I :22.4 A
+
+E : 6.068071027087129 V
+Eta Activation : 0.5442971694930419 V
+Eta Concentration : 0.005595760487993974 V
+Eta Ohmic : 0.04276365039854046 V
+FC Efficiency : 0.3980497596396471
+FC Power : 69.54725400423914 W
+FC Voltage : 3.1047881251892475 V
+Loss : 0.5926565803795762 V
+PH2 : 0.19403750723279328 atm
+PH2O : 0.2388266896044273 atm
+PO2 : 0.18885734572007604 atm
+Power-Thermal : 68.21274599576086 W
+###########
+I :22.5 A
+
+E : 6.06806947511278 V
+Eta Activation : 0.5445942060486529 V
+Eta Concentration : 0.005625695014966963 V
+Eta Ohmic : 0.042974026212540116 V
+FC Efficiency : 0.3977051075297409
+FC Power : 69.79724637146954 W
+FC Voltage : 3.1020998387319794 V
+Loss : 0.59319392727616 V
+PH2 : 0.19402345685117892 atm
+PH2O : 0.23880939600909876 atm
+PO2 : 0.1888494128818777 atm
+Power-Thermal : 68.57775362853047 W
+###########
+I :22.6 A
+
+E : 6.068067923073237 V
+Eta Activation : 0.5448899350801231 V
+Eta Concentration : 0.0056556856516765674 V
+Eta Ohmic : 0.04318461881511744 V
+FC Efficiency : 0.39736111863316037
+FC Power : 70.04681799265352 W
+FC Voltage : 3.099416725338651 V
+Loss : 0.5937302395469171 V
+PH2 : 0.19400940646956452 atm
+PH2O : 0.23879210241377022 atm
+PO2 : 0.18884148004367937 atm
+Power-Thermal : 68.9431820073465 W
+###########
+I :22.7 A
+
+E : 6.068066370968495 V
+Eta Activation : 0.54518436813408 V
+Eta Concentration : 0.005685732608863768 V
+Eta Ohmic : 0.04339542889721348 V
+FC Efficiency : 0.3970177849702191
+FC Power : 70.295969006827 W
+FC Voltage : 3.096738722767709 V
+Loss : 0.5942655296401572 V
+PH2 : 0.19399535608795013 atm
+PH2O : 0.23877480881844165 atm
+PO2 : 0.1888335472054811 atm
+Power-Thermal : 69.30903099317301 W
+###########
+I :22.8 A
+
+E : 6.068064818798548 V
+Eta Activation : 0.5454775166048875 V
+Eta Concentration : 0.005715836098459058 V
+Eta Ohmic : 0.04360645715167341 V
+FC Efficiency : 0.39667509865685224
+FC Power : 70.5446995451346 W
+FC Voltage : 3.0940657695234477 V
+Loss : 0.59479980985502 V
+PH2 : 0.19398130570633573 atm
+PH2O : 0.23875751522311311 atm
+PO2 : 0.18882561436728276 atm
+Power-Thermal : 69.67530045486541 W
+###########
+I :22.9 A
+
+E : 6.0680632665633905 V
+Eta Activation : 0.5457693917373108 V
+Eta Concentration : 0.0057459963335913964 V
+Eta Ohmic : 0.04381770427324669 V
+FC Efficiency : 0.3963330519029033
+FC Power : 70.79300973089659 W
+FC Voltage : 3.091397804842646 V
+Loss : 0.5953330923441489 V
+PH2 : 0.19396725532472137 atm
+PH2O : 0.23874022162778458 atm
+PO2 : 0.18881768152908449 atm
+Power-Thermal : 70.04199026910341 W
+###########
+I :23.0 A
+
+E : 6.068061714263018 V
+Eta Activation : 0.5460600046291237 V
+Eta Concentration : 0.005776213528597288 V
+Eta Ohmic : 0.04402917095858737 V
+FC Efficiency : 0.3959916370104456
+FC Power : 71.04089967967394 W
+FC Voltage : 3.088734768681476 V
+Loss : 0.5958653891163084 V
+PH2 : 0.19395320494310697 atm
+PH2O : 0.23872292803245604 atm
+PO2 : 0.18880974869088615 atm
+Power-Thermal : 70.40910032032606 W
+###########
+I :23.1 A
+
+E : 6.068060161897424 V
+Eta Activation : 0.5463493662336604 V
+Eta Concentration : 0.005806487899029896 V
+Eta Ohmic : 0.04424085790625429 V
+FC Efficiency : 0.39565084637214115
+FC Power : 71.2883694993324 W
+FC Voltage : 3.0860766017027013 V
+Loss : 0.5963967120389446 V
+PH2 : 0.19393915456149258 atm
+PH2O : 0.2387056344371275 atm
+PO2 : 0.18880181585268788 atm
+Power-Thermal : 70.77663050066761 W
+###########
+I :23.2 A
+
+E : 6.068058609466602 V
+Eta Activation : 0.54663748736231 V
+Eta Concentration : 0.005836819661668281 V
+Eta Ohmic : 0.044452765816711225 V
+FC Efficiency : 0.39531067246963525
+FC Power : 71.5354192901052 W
+FC Voltage : 3.083423245263155 V
+Loss : 0.5969270728406895 V
+PH2 : 0.1939251041798782 atm
+PH2O : 0.23868834084179896 atm
+PO2 : 0.18879388301448957 atm
+Power-Thermal : 71.14458070989481 W
+###########
+I :23.3 A
+
+E : 6.06805705697055 V
+Eta Activation : 0.5469243786869586 V
+Eta Concentration : 0.005867209034526719 V
+Eta Ohmic : 0.04466489539232738 V
+FC Efficiency : 0.3949711078719853
+FC Power : 71.78204914465462 W
+FC Voltage : 3.0807746414014856 V
+Loss : 0.5974564831138128 V
+PH2 : 0.19391105379826382 atm
+PH2O : 0.23867104724647042 atm
+PO2 : 0.18878595017629127 atm
+Power-Thermal : 71.5129508553454 W
+###########
+I :23.4 A
+
+E : 6.068055504409259 V
+Eta Activation : 0.5472100507423814 V
+Eta Concentration : 0.005897656236864099 V
+Eta Ohmic : 0.044877247337377496 V
+FC Efficiency : 0.39463214523412093
+FC Power : 72.02825914813175 W
+FC Voltage : 3.0781307328261436 V
+Loss : 0.597984954316623 V
+PH2 : 0.1938970034166494 atm
+PH2O : 0.23865375365114183 atm
+PO2 : 0.18877801733809296 atm
+Power-Thermal : 71.88174085186824 W
+###########
+I :23.5 A
+
+E : 6.0680539517827246 V
+Eta Activation : 0.5474945139285778 V
+Eta Concentration : 0.005928161489193406 V
+Eta Ohmic : 0.04508982235804227 V
+FC Efficiency : 0.3942937772953406
+FC Power : 72.27404937823594 W
+FC Voltage : 3.075491462903657 V
+Loss : 0.5985124977758135 V
+PH2 : 0.193882953035035 atm
+PH2O : 0.2386364600558133 atm
+PO2 : 0.18877008449989466 atm
+Power-Thermal : 72.25095062176406 W
+###########
+I :23.6 A
+
+E : 6.068052399090941 V
+Eta Activation : 0.5477777785130636 V
+Eta Concentration : 0.005958725013291313 V
+Eta Ohmic : 0.04530262116240854 V
+FC Efficiency : 0.39395599687783633
+FC Power : 72.51941990527212 W
+FC Voltage : 3.0728567756471237 V
+Loss : 0.5990391246887635 V
+PH2 : 0.1938689026534206 atm
+PH2O : 0.23861916646048476 atm
+PO2 : 0.18876215166169635 atm
+Power-Thermal : 72.6205800947279 W
+###########
+I :23.7 A
+
+E : 6.068050846333906 V
+Eta Activation : 0.5480598546331106 V
+Eta Concentration : 0.0059893470322078595 V
+Eta Ohmic : 0.045515644460469795 V
+FC Efficiency : 0.3936187968852518
+FC Power : 72.76437079220766 W
+FC Voltage : 3.0702266157049642 V
+Loss : 0.5995648461257883 V
+PH2 : 0.19385485227180624 atm
+PH2O : 0.23860187286515622 atm
+PO2 : 0.18875421882349808 atm
+Power-Thermal : 72.99062920779235 W
+###########
+I :23.8 A
+
+E : 6.068049293511609 V
+Eta Activation : 0.5483407522979395 V
+Eta Concentration : 0.006020027770276209 V
+Eta Ohmic : 0.0457288929641264 V
+FC Efficiency : 0.39328217030126894
+FC Power : 73.00890209472757 W
+FC Voltage : 3.067600928349898 V
+Loss : 0.6000896730323422 V
+PH2 : 0.19384080189019184 atm
+PH2O : 0.23858457926982768 atm
+PO2 : 0.18874628598529974 atm
+Power-Thermal : 73.36109790527244 W
+###########
+I :23.9 A
+
+E : 6.068047740624047 V
+Eta Activation : 0.5486204813908698 V
+Eta Concentration : 0.006050767453122507 V
+Eta Ohmic : 0.04594236738718595 V
+FC Efficiency : 0.3929461101882251
+FC Power : 73.25301386128893 W
+FC Voltage : 3.064979659468156 V
+Loss : 0.6006136162311783 V
+PH2 : 0.19382675150857745 atm
+PH2O : 0.23856728567449914 atm
+PO2 : 0.18873835314710147 atm
+Power-Thermal : 73.73198613871106 W
+###########
+I :24.0 A
+
+E : 6.068046187671215 V
+Eta Activation : 0.5488990516714195 V
+Eta Concentration : 0.00608156630767586 V
+Eta Ohmic : 0.04615606844536378 V
+FC Efficiency : 0.39261060968575895
+FC Power : 73.49670613317407 W
+FC Voltage : 3.0623627555489197 V
+Loss : 0.6011366864244592 V
+PH2 : 0.19381270112696308 atm
+PH2O : 0.23854999207917058 atm
+PO2 : 0.18873042030890314 atm
+Power-Thermal : 74.10329386682594 W
+###########
+I :24.1 A
+
+E : 6.068044634653107 V
+Eta Activation : 0.5491764727773664 V
+Eta Concentration : 0.00611242456217835 V
+Eta Ohmic : 0.04636999685628331 V
+FC Efficiency : 0.39227566200948294
+FC Power : 73.73997894454261 W
+FC Voltage : 3.0597501636739675 V
+Loss : 0.601658894195828 V
+PH2 : 0.1937986507453487 atm
+PH2O : 0.23853269848384204 atm
+PO2 : 0.18872248747070486 atm
+Power-Thermal : 74.4750210554574 W
+###########
+I :24.2 A
+
+E : 6.0680430815697175 V
+Eta Activation : 0.5494527542267644 V
+Eta Concentration : 0.006143342446195212 V
+Eta Ohmic : 0.046584153339476346 V
+FC Efficiency : 0.39194126044968436
+FC Power : 73.98283232248242 W
+FC Voltage : 3.057141831507538 V
+Loss : 0.6021802500124359 V
+PH2 : 0.1937846003637343 atm
+PH2O : 0.2385154048885135 atm
+PO2 : 0.18871455463250653 atm
+Power-Thermal : 74.84716767751759 W
+###########
+I :24.3 A
+
+E : 6.068041528421041 V
+Eta Activation : 0.5497279054199167 V
+Eta Concentration : 0.0061743201906250735 V
+Eta Ohmic : 0.04679853861638362 V
+FC Efficiency : 0.39160739837005315
+FC Power : 74.22526628705988 W
+FC Voltage : 3.0545377072864146 V
+Loss : 0.6027007642269253 V
+PH2 : 0.19377054998211993 atm
+PH2O : 0.23849811129318496 atm
+PO2 : 0.1887066217943082 atm
+Power-Thermal : 75.21973371294014 W
+###########
+I :24.4 A
+
+E : 6.068039975207071 V
+Eta Activation : 0.550001935641312 V
+Eta Concentration : 0.0062053580277103 V
+Eta Ohmic : 0.04701315341035525 V
+FC Efficiency : 0.3912740692064338
+FC Power : 74.46728085136849 W
+FC Voltage : 3.051937739810184 V
+Loss : 0.6032204470793775 V
+PH2 : 0.19375649960050553 atm
+PH2O : 0.23848081769785642 atm
+PO2 : 0.18869868895610992 atm
+Power-Thermal : 75.59271914863152 W
+###########
+I :24.5 A
+
+E : 6.068038421927804 V
+Eta Activation : 0.5502748540615183 V
+Eta Concentration : 0.006236456191047439 V
+Eta Ohmic : 0.04722799844665112 V
+FC Efficiency : 0.39094126646560506
+FC Power : 74.70887602157714 W
+FC Voltage : 3.04934187843172 V
+Loss : 0.6037393086992169 V
+PH2 : 0.19374244921889114 atm
+PH2O : 0.23846352410252789 atm
+PO2 : 0.18869075611791158 atm
+Power-Thermal : 75.96612397842287 W
+###########
+I :24.6 A
+
+E : 6.068036868583233 V
+Eta Activation : 0.550546669739039 V
+Eta Concentration : 0.006267614915597766 V
+Eta Ohmic : 0.04744307445244144 V
+FC Efficiency : 0.39060898372408226
+FC Power : 74.95005179697691 W
+FC Voltage : 3.046750073047842 V
+Loss : 0.6042573591070782 V
+PH2 : 0.19372839883727674 atm
+PH2O : 0.23844623050719935 atm
+PO2 : 0.1886828232797133 atm
+Power-Thermal : 76.3399482030231 W
+###########
+I :24.7 A
+
+E : 6.068035315173352 V
+Eta Activation : 0.5508173916221314 V
+Eta Concentration : 0.006298834437697954 V
+Eta Ohmic : 0.04765838215680711 V
+FC Efficiency : 0.39027721462694487
+FC Power : 75.1908081700272 W
+FC Voltage : 3.04416227409017 V
+Loss : 0.6047746082166364 V
+PH2 : 0.19371434845566238 atm
+PH2O : 0.2384289369118708 atm
+PO2 : 0.188674890441515 atm
+Power-Thermal : 76.7141918299728 W
+###########
+I :24.8 A
+
+E : 6.068033761698159 V
+Eta Activation : 0.5510870285505898 V
+Eta Concentration : 0.006330114995070809 V
+Eta Ohmic : 0.047873922290740355 V
+FC Efficiency : 0.3899459528866863
+FC Power : 75.43114512640061 W
+FC Voltage : 3.0415784325161535 V
+Loss : 0.605291065836401 V
+PH2 : 0.19370029807404798 atm
+PH2O : 0.23841164331654227 atm
+PO2 : 0.1886669576033167 atm
+Power-Thermal : 77.0888548735994 W
+###########
+I :24.9 A
+
+E : 6.0680322081576445 V
+Eta Activation : 0.5513555892574884 V
+Eta Concentration : 0.006361456826836132 V
+Eta Ohmic : 0.048089695587145126 V
+FC Efficiency : 0.3896151922820893
+FC Power : 75.67106264502738 W
+FC Voltage : 3.0389984998002966 V
+Loss : 0.6058067416714696 V
+PH2 : 0.1936862476924336 atm
+PH2O : 0.23839434972121373 atm
+PO2 : 0.1886590247651184 atm
+Power-Thermal : 77.46393735497261 W
+###########
+I :25.0 A
+
+E : 6.068030654551803 V
+Eta Activation : 0.551623082370896 V
+Eta Concentration : 0.006392860173521715 V
+Eta Ohmic : 0.04830570278083776 V
+FC Efficiency : 0.38928492665711867
+FC Power : 75.91056069813816 W
+FC Voltage : 3.036422427925526 V
+Loss : 0.6063216453252555 V
+PH2 : 0.19367219731081922 atm
+PH2O : 0.23837705612588517 atm
+PO2 : 0.1886510919269201 atm
+Power-Thermal : 77.83943930186186 W
+###########
+I :25.1 A
+
+E : 6.068029100880633 V
+Eta Activation : 0.55188951641555 V
+Eta Concentration : 0.006424325277074369 V
+Eta Ohmic : 0.04852194460854734 V
+FC Efficiency : 0.3889551499198429
+FC Power : 76.14963925130685 W
+FC Voltage : 3.033850169374775 V
+Loss : 0.6068357863011716 V
+PH2 : 0.1936581469292048 atm
+PH2O : 0.2383597625305566 atm
+PO2 : 0.18864315908872178 atm
+Power-Thermal : 78.21536074869317 W
+###########
+I :25.2 A
+
+E : 6.068027547144126 V
+Eta Activation : 0.5521548998144997 V
+Eta Concentration : 0.006455852380871148 V
+Eta Ohmic : 0.048738421808916486 V
+FC Efficiency : 0.3886258560413704
+FC Power : 76.38829826349178 W
+FC Voltage : 3.0312816771226894 V
+Loss : 0.6073491740042873 V
+PH2 : 0.1936440965475904 atm
+PH2O : 0.23834246893522806 atm
+PO2 : 0.18863522625052348 atm
+Power-Thermal : 78.59170173650824 W
+###########
+I :25.3 A
+
+E : 6.068025993342276 V
+Eta Activation : 0.5524192408907207 V
+Eta Concentration : 0.006487441729730628 V
+Eta Ohmic : 0.048955135122501665 V
+FC Efficiency : 0.3882970390548091
+FC Power : 76.62653768707604 W
+FC Voltage : 3.0287169046275113 V
+Loss : 0.607861817742953 V
+PH2 : 0.193630046165976 atm
+PH2O : 0.2383251753398995 atm
+PO2 : 0.18862729341232518 atm
+Power-Thermal : 78.96846231292398 W
+###########
+I :25.4 A
+
+E : 6.06802443947508 V
+Eta Activation : 0.5526825478686889 V
+Eta Concentration : 0.006519093569924322 V
+Eta Ohmic : 0.04917208529177404 V
+FC Efficiency : 0.38796869305424914
+FC Power : 76.86435746790784 W
+FC Voltage : 3.0261558058231435 V
+Loss : 0.6083737267303873 V
+PH2 : 0.19361599578436162 atm
+PH2O : 0.23830788174457096 atm
+PO2 : 0.1886193605741269 atm
+Power-Thermal : 79.34564253209216 W
+###########
+I :25.5 A
+
+E : 6.068022885542529 V
+Eta Activation : 0.5529448288759331 V
+Eta Concentration : 0.006550808149188183 V
+Eta Ohmic : 0.04938927306111986 V
+FC Efficiency : 0.38764081219375934
+FC Power : 77.10175754533874 W
+FC Voltage : 3.0235983351113234 V
+Loss : 0.6088849100862411 V
+PH2 : 0.19360194540274725 atm
+PH2O : 0.23829058814924242 atm
+PO2 : 0.18861142773592857 atm
+Power-Thermal : 79.72324245466126 W
+###########
+I :25.6 A
+
+E : 6.068021331544621 V
+Eta Activation : 0.55320609194455 V
+Eta Concentration : 0.0065825857167342485 V
+Eta Ohmic : 0.04960669917684113 V
+FC Efficiency : 0.3873133906864096
+FC Power : 77.33873785226227 W
+FC Voltage : 3.0210444473539946 V
+Loss : 0.6093953768381253 V
+PH2 : 0.19358789502113286 atm
+PH2O : 0.23827329455391388 atm
+PO2 : 0.1886034948977303 atm
+Power-Thermal : 80.10126214773776 W
+###########
+I :25.7 A
+
+E : 6.068019777481348 V
+Eta Activation : 0.5534663450126938 V
+Eta Concentration : 0.006614426523262411 V
+Eta Ohmic : 0.049824364387156345 V
+FC Efficiency : 0.3869864228033059
+FC Power : 77.5752983151507 W
+FC Voltage : 3.018494097865786 V
+Loss : 0.6099051359231125 V
+PH2 : 0.19357384463951846 atm
+PH2O : 0.23825600095858535 atm
+PO2 : 0.18859556205953196 atm
+Power-Thermal : 80.4797016848493 W
+###########
+I :25.8 A
+
+E : 6.068018223352707 V
+Eta Activation : 0.5537255959260347 V
+Eta Concentration : 0.006646330820972243 V
+Eta Ohmic : 0.050042269442201 V
+FC Efficiency : 0.3866599028726497
+FC Power : 77.81143885409203 W
+FC Voltage : 3.015947242406668 V
+Loss : 0.6104141961892079 V
+PH2 : 0.1935597942579041 atm
+PH2O : 0.2382387073632568 atm
+PO2 : 0.18858762922133368 atm
+Power-Thermal : 80.85856114590798 W
+###########
+I :25.9 A
+
+E : 6.06801666915869 V
+Eta Activation : 0.5539838524391902 V
+Eta Concentration : 0.0066782988635750076 V
+Eta Ohmic : 0.05026041509402828 V
+FC Efficiency : 0.3863338252788106
+FC Power : 78.04715938282533 W
+FC Voltage : 3.013403837174723 V
+Loss : 0.6109225663967934 V
+PH2 : 0.1935457438762897 atm
+PH2O : 0.23822141376792827 atm
+PO2 : 0.18857969638313535 atm
+Power-Thermal : 81.23784061717467 W
+###########
+I :26.0 A
+
+E : 6.068015114899294 V
+Eta Activation : 0.5542411222171298 V
+Eta Concentration : 0.006710330906305779 V
+Eta Ohmic : 0.050478802096609744 V
+FC Efficiency : 0.38600818446141877
+FC Power : 78.28245980877574 W
+FC Voltage : 3.0108638387990667 V
+Loss : 0.6114302552200453 V
+PH2 : 0.1935316934946753 atm
+PH2O : 0.23820412017259973 atm
+PO2 : 0.18857176354493702 atm
+Power-Thermal : 81.61754019122428 W
+###########
+I :26.1 A
+
+E : 6.06801356057451 V
+Eta Activation : 0.5544974128365493 V
+Eta Concentration : 0.006742427205935633 V
+Eta Ohmic : 0.050697431205835974 V
+FC Efficiency : 0.385682974914475
+FC Power : 78.51734003308883 W
+FC Voltage : 3.0083272043329052 V
+Loss : 0.611937271248321 V
+PH2 : 0.19351764311306094 atm
+PH2O : 0.2381868265772712 atm
+PO2 : 0.18856383070673874 atm
+Power-Thermal : 81.99765996691119 W
+###########
+I :26.2 A
+
+E : 6.068012006184334 V
+Eta Activation : 0.554752731787223 V
+Eta Concentration : 0.006774588020784021 V
+Eta Ohmic : 0.05091630317951732 V
+FC Efficiency : 0.38535819118547593
+FC Power : 78.75179995066387 W
+FC Voltage : 3.0057938912467126 V
+Loss : 0.6124436229875243 V
+PH2 : 0.19350359273144654 atm
+PH2O : 0.23816953298194266 atm
+PO2 : 0.1885558978685404 atm
+Power-Thermal : 82.37820004933614 W
+###########
+I :26.3 A
+
+E : 6.068010451728764 V
+Eta Activation : 0.5550070864733274 V
+Eta Concentration : 0.006806813610731237 V
+Eta Ohmic : 0.05113541877738456 V
+FC Efficiency : 0.38503382787455737
+FC Power : 78.9858394501867 W
+FC Voltage : 3.0032638574215476 V
+Loss : 0.6129493188614432 V
+PH2 : 0.19348954234983215 atm
+PH2O : 0.2381522393866141 atm
+PO2 : 0.18854796503034213 atm
+Power-Thermal : 82.75916054981332 W
+###########
+I :26.4 A
+
+E : 6.06800889720779 V
+Eta Activation : 0.5552604842147407 V
+Eta Concentration : 0.006839104237231034 V
+Eta Ohmic : 0.05135477876108962 V
+FC Efficiency : 0.38470987963365166
+FC Power : 79.21945841416155 W
+FC Voltage : 3.000737061142483 V
+Loss : 0.6134543672130613 V
+PH2 : 0.19347549196821776 atm
+PH2O : 0.23813494579128555 atm
+PO2 : 0.18854003219214382 atm
+Power-Thermal : 83.14054158583845 W
+###########
+I :26.5 A
+
+E : 6.068007342621407 V
+Eta Activation : 0.5555129322483179 V
+Eta Concentration : 0.00687146016332332 V
+Eta Ohmic : 0.05157438389420631 V
+FC Efficiency : 0.3843863411656628
+FC Power : 79.4526567189425 W
+FC Voltage : 2.99821346109217 V
+Loss : 0.6139587763058475 V
+PH2 : 0.1934614415866034 atm
+PH2O : 0.238117652195957 atm
+PO2 : 0.18853209935394552 atm
+Power-Thermal : 83.5223432810575 W
+###########
+I :26.6 A
+
+E : 6.068005787969612 V
+Eta Activation : 0.5557644377291406 V
+Eta Concentration : 0.006903881653647035 V
+Eta Ohmic : 0.05179423494223106 V
+FC Efficiency : 0.38406320722365617
+FC Power : 79.68543423476417 W
+FC Voltage : 2.995693016344518 V
+Loss : 0.6144625543250187 V
+PH2 : 0.193447391204989 atm
+PH2O : 0.23810035860062848 atm
+PO2 : 0.18852416651574722 atm
+Power-Thermal : 83.90456576523584 W
+###########
+I :26.7 A
+
+E : 6.068004233252397 V
+Eta Activation : 0.5560150077317466 V
+Eta Concentration : 0.006936368974453148 V
+Eta Ohmic : 0.052014332672583714 V
+FC Efficiency : 0.3837404726100615
+FC Power : 79.9177908257714 W
+FC Voltage : 2.9931756863584797 V
+Loss : 0.6149657093787835 V
+PH2 : 0.1934333408233746 atm
+PH2O : 0.23808306500529994 atm
+PO2 : 0.1885162336775489 atm
+Power-Thermal : 84.2872091742286 W
+###########
+I :26.8 A
+
+E : 6.0680026784697585 V
+Eta Activation : 0.5562646492513317 V
+Eta Concentration : 0.00696892239361775 V
+Eta Ohmic : 0.05223467785460827 V
+FC Efficiency : 0.38341813217589354
+FC Power : 80.1497263500488 W
+FC Voltage : 2.99066143097197 V
+Loss : 0.6154682494995577 V
+PH2 : 0.19341929044176023 atm
+PH2O : 0.2380657714099714 atm
+PO2 : 0.1885083008393506 atm
+Power-Thermal : 84.67027364995121 W
+###########
+I :26.9 A
+
+E : 6.0680011236216895 V
+Eta Activation : 0.5565133692049329 V
+Eta Concentration : 0.007001542180655319 V
+Eta Ohmic : 0.052455271259573645 V
+FC Efficiency : 0.38309618081998464
+FC Power : 80.38124065964918 W
+FC Voltage : 2.9881502103958804 V
+Loss : 0.6159701826451618 V
+PH2 : 0.1934052400601458 atm
+PH2O : 0.2380484778146428 atm
+PO2 : 0.18850036800115233 atm
+Power-Thermal : 85.05375934035082 W
+###########
+I :27.0 A
+
+E : 6.067999568708185 V
+Eta Activation : 0.5567611744325898 V
+Eta Concentration : 0.007034228606732125 V
+Eta Ohmic : 0.052676113660674484 V
+FC Efficiency : 0.3827746134882311
+FC Power : 80.61233360062148 W
+FC Voltage : 2.9856419852082032 V
+Loss : 0.6164715166999963 V
+PH2 : 0.19339118967853142 atm
+PH2O : 0.23803118421931427 atm
+PO2 : 0.188492435162954 atm
+Power-Thermal : 85.43766639937853 W
+###########
+I :27.1 A
+
+E : 6.067998013729239 V
+Eta Activation : 0.5570080716984802 V
+Eta Concentration : 0.007066981944679724 V
+Eta Ohmic : 0.05289720583303199 V
+FC Efficiency : 0.3824534251728563
+FC Power : 80.84300501303838 W
+FC Voltage : 2.9831367163482794 V
+Loss : 0.6169722594761919 V
+PH2 : 0.19337713929691702 atm
+PH2O : 0.23801389062398573 atm
+PO2 : 0.18848450232475572 atm
+Power-Thermal : 85.82199498696164 W
+###########
+I :27.2 A
+
+E : 6.0679964586848465 V
+Eta Activation : 0.5572540676920403 V
+Eta Concentration : 0.007099802469008644 V
+Eta Ohmic : 0.053118548553694675 V
+FC Efficiency : 0.38213261091168305
+FC Power : 81.07325473102269 W
+FC Voltage : 2.9806343651111282 V
+Loss : 0.6174724187147437 V
+PH2 : 0.19336308891530263 atm
+PH2O : 0.2379965970286572 atm
+PO2 : 0.1884765694865574 atm
+Power-Thermal : 86.20674526897731 W
+###########
+I :27.3 A
+
+E : 6.067994903575002 V
+Eta Activation : 0.5574991690290609 V
+Eta Concentration : 0.0071326904559221764 V
+Eta Ohmic : 0.05334014260163926 V
+FC Efficiency : 0.38181216578742183
+FC Power : 81.30308258277361 W
+FC Voltage : 2.9781348931418905 V
+Loss : 0.6179720020866223 V
+PH2 : 0.19334903853368826 atm
+PH2O : 0.23797930343332865 atm
+PO2 : 0.1884686366483591 atm
+Power-Thermal : 86.5919174172264 W
+###########
+I :27.4 A
+
+E : 6.067993348399701 V
+Eta Activation : 0.5577433822527644 V
+Eta Concentration : 0.007165646183330347 V
+Eta Ohmic : 0.05356198875777153 V
+FC Efficiency : 0.3814920849269704
+FC Power : 81.5324883905921 W
+FC Voltage : 2.975638262430369 V
+Loss : 0.6184710171938663 V
+PH2 : 0.19333498815207387 atm
+PH2O : 0.23796200983800012 atm
+PO2 : 0.18846070381016078 atm
+Power-Thermal : 86.9775116094079 W
+###########
+I :27.5 A
+
+E : 6.067991793158935 V
+Eta Activation : 0.5579867138348625 V
+Eta Concentration : 0.007198669930863973 V
+Eta Ohmic : 0.053784087804927064 V
+FC Efficiency : 0.3811723635007266
+FC Power : 81.76147197090586 W
+FC Voltage : 2.9731444353056675 V
+Loss : 0.6189694715706535 V
+PH2 : 0.19332093777045947 atm
+PH2O : 0.23794471624267158 atm
+PO2 : 0.1884527709719625 atm
+Power-Thermal : 87.36352802909416 W
+###########
+I :27.6 A
+
+E : 6.067990237852703 V
+Eta Activation : 0.5582291701765948 V
+Eta Concentration : 0.007231761979888914 V
+Eta Ohmic : 0.05400644052787223 V
+FC Efficiency : 0.3808529967219132
+FC Power : 81.99003313429348 W
+FC Voltage : 2.970653374430923 V
+Loss : 0.6194673726843559 V
+PH2 : 0.1933068873888451 atm
+PH2O : 0.237927422647343 atm
+PO2 : 0.18844483813376417 atm
+Power-Thermal : 87.74996686570654 W
+###########
+I :27.7 A
+
+E : 6.067988682480995 V
+Eta Activation : 0.5584707576097466 V
+Eta Concentration : 0.007264922613520473 V
+Eta Ohmic : 0.054229047713305015 V
+FC Efficiency : 0.3805339798459146
+FC Power : 82.21817168550831 W
+FC Voltage : 2.968165042798134 V
+Loss : 0.6199647279365722 V
+PH2 : 0.1932928370072307 atm
+PH2O : 0.23791012905201447 atm
+PO2 : 0.18843690529556584 atm
+Power-Thermal : 88.1368283144917 W
+###########
+I :27.8 A
+
+E : 6.067987127043808 V
+Eta Activation : 0.5587114823976533 V
+Eta Concentration : 0.007298152116637901 V
+Eta Ohmic : 0.05445191014985591 V
+FC Efficiency : 0.38021530816962457
+FC Power : 82.4458874235014 W
+FC Voltage : 2.965679403723072 V
+Loss : 0.6204615446641472 V
+PH2 : 0.19327878662561632 atm
+PH2O : 0.23789283545668594 atm
+PO2 : 0.18842897245736756 atm
+Power-Thermal : 88.52411257649861 W
+###########
+I :27.9 A
+
+E : 6.0679855715411355 V
+Eta Activation : 0.5589513507361796 V
+Eta Concentration : 0.00733145077589909 V
+Eta Ohmic : 0.054675028628088804 V
+FC Efficiency : 0.3798969770308074
+FC Power : 82.6731801414443 W
+FC Voltage : 2.9631964208402977 V
+Loss : 0.6209578301401676 V
+PH2 : 0.19326473624400195 atm
+PH2O : 0.2378755418613574 atm
+PO2 : 0.18842103961916923 atm
+Power-Thermal : 88.9118198585557 W
+###########
+I :28.0 A
+
+E : 6.067984015972973 V
+Eta Activation : 0.5591903687546886 V
+Eta Concentration : 0.007364818879755434 V
+Eta Ohmic : 0.05489840394050195 V
+FC Efficiency : 0.37957898180746696
+FC Power : 82.9000496267508 W
+FC Voltage : 2.960716058098243 V
+Loss : 0.6214535915749461 V
+PH2 : 0.19325068586238756 atm
+PH2O : 0.23785824826602886 atm
+PO2 : 0.18841310678097095 atm
+Power-Thermal : 89.29995037324922 W
+###########
+I :28.1 A
+
+E : 6.067982460339314 V
+Eta Activation : 0.5594285425169874 V
+Eta Concentration : 0.007398256718466784 V
+Eta Ohmic : 0.055122036881528794 V
+FC Efficiency : 0.3792613179172306
+FC Power : 83.12649566109862 W
+FC Voltage : 2.958238279754399 V
+Loss : 0.621948836116983 V
+PH2 : 0.19323663548077316 atm
+PH2O : 0.23784095467070032 atm
+PO2 : 0.18840517394277265 atm
+Power-Thermal : 89.68850433890141 W
+###########
+I :28.2 A
+
+E : 6.067980904640153 V
+Eta Activation : 0.559665878022261 V
+Eta Concentration : 0.007431764584116621 V
+Eta Ohmic : 0.055345928247539006 V
+FC Efficiency : 0.3789439808167397
+FC Power : 83.35251802045008 W
+FC Voltage : 2.95576305037057 V
+Loss : 0.6224435708539167 V
+PH2 : 0.19322258509915877 atm
+PH2O : 0.23782366107537178 atm
+PO2 : 0.18839724110457434 atm
+Power-Thermal : 90.07748197954993 W
+###########
+I :28.3 A
+
+E : 6.067979348875486 V
+Eta Activation : 0.5599023812059849 V
+Eta Concentration : 0.007465342770627357 V
+Eta Ohmic : 0.05557007883683938 V
+FC Efficiency : 0.37862696600105483
+FC Power : 83.57811647507285 W
+FC Voltage : 2.953290334808228 V
+Loss : 0.6229378028134517 V
+PH2 : 0.1932085347175444 atm
+PH2O : 0.23780636748004325 atm
+PO2 : 0.18838930826637604 atm
+Power-Thermal : 90.46688352492717 W
+###########
+I :28.4 A
+
+E : 6.067977793045306 V
+Eta Activation : 0.5601380579408263 V
+Eta Concentration : 0.007498991573775819 V
+Eta Ohmic : 0.05579448944967476 V
+FC Efficiency : 0.3783102690030668
+FC Power : 83.80329078955936 W
+FC Voltage : 2.950820098223921 V
+Loss : 0.6234315389642769 V
+PH2 : 0.19319448433593 atm
+PH2O : 0.2377890738847147 atm
+PO2 : 0.18838137542817773 atm
+Power-Thermal : 90.85670921044064 W
+###########
+I :28.5 A
+
+E : 6.067976237149607 V
+Eta Activation : 0.5603729140375256 V
+Eta Concentration : 0.007532711291208857 V
+Eta Ohmic : 0.05601916088822904 V
+FC Efficiency : 0.3779938853929218
+FC Power : 84.02804072284653 W
+FC Voltage : 2.9483523060647903 V
+Loss : 0.6239247862169635 V
+PH2 : 0.1931804339543156 atm
+PH2O : 0.23777178028938614 atm
+PO2 : 0.18837344258997943 atm
+Power-Thermal : 91.2469592771535 W
+###########
+I :28.6 A
+
+E : 6.067974681188385 V
+Eta Activation : 0.5606069552457644 V
+Eta Concentration : 0.0075665022224591545 V
+Eta Ohmic : 0.056244093956626294 V
+FC Efficiency : 0.37767781077745327
+FC Power : 84.25236602823428 W
+FC Voltage : 2.9458869240641357 V
+Loss : 0.6244175514248499 V
+PH2 : 0.1931663835727012 atm
+PH2O : 0.23775448669405758 atm
+PO2 : 0.18836550975178115 atm
+Power-Thermal : 91.63763397176574 W
+###########
+I :28.7 A
+
+E : 6.067973125161633 V
+Eta Activation : 0.5608401872550186 V
+Eta Concentration : 0.007600364668961192 V
+Eta Ohmic : 0.05646928946093142 V
+FC Efficiency : 0.37736204079962526
+FC Power : 84.47626645340411 W
+FC Voltage : 2.943423918237077 V
+Loss : 0.6249098413849112 V
+PH2 : 0.19315233319108682 atm
+PH2O : 0.23773719309872904 atm
+PO2 : 0.18835757691358282 atm
+Power-Thermal : 92.02873354659589 W
+###########
+I :28.8 A
+
+E : 6.067971569069347 V
+Eta Activation : 0.5610726156953953 V
+Eta Concentration : 0.007634298934067396 V
+Eta Ohmic : 0.05669474820915151 V
+FC Efficiency : 0.37704657113798407
+FC Power : 84.69974174043674 W
+FC Voltage : 2.9409632548762756 V
+Loss : 0.6254016628386143 V
+PH2 : 0.19313828280947243 atm
+PH2O : 0.2377198995034005 atm
+PO2 : 0.18834964407538454 atm
+Power-Thermal : 92.42025825956327 W
+###########
+I :28.9 A
+
+E : 6.0679700129115215 V
+Eta Activation : 0.5613042461384563 V
+Eta Concentration : 0.007668305323064408 V
+Eta Ohmic : 0.05692047101123661 V
+FC Efficiency : 0.3767313975061198
+FC Power : 84.92279162582953 W
+FC Voltage : 2.9385049005477346 V
+Loss : 0.6258930224727574 V
+PH2 : 0.19312423242785803 atm
+PH2O : 0.23770260590807193 atm
+PO2 : 0.1883417112371862 atm
+Power-Thermal : 92.81220837417048 W
+###########
+I :29.0 A
+
+E : 6.067968456688149 V
+Eta Activation : 0.5615350840980265 V
+Eta Concentration : 0.007702384143189607 V
+Eta Ohmic : 0.05714645867908088 V
+FC Efficiency : 0.3764165156521364
+FC Power : 85.14541584051325 W
+FC Voltage : 2.936048822086664 V
+Loss : 0.626383926920297 V
+PH2 : 0.19311018204624364 atm
+PH2O : 0.2376853123127434 atm
+PO2 : 0.18833377839898793 atm
+Power-Thermal : 93.20458415948676 W
+###########
+I :29.1 A
+
+E : 6.067966900399224 V
+Eta Activation : 0.5617651350309903 V
+Eta Concentration : 0.007736535703647731 V
+Eta Ohmic : 0.057372712026523616 V
+FC Efficiency : 0.37610192135813014
+FC Power : 85.36761410986838 W
+FC Voltage : 2.933594986593415 V
+Loss : 0.6268743827611617 V
+PH2 : 0.19309613166462927 atm
+PH2O : 0.23766801871741486 atm
+PO2 : 0.1883258455607896 atm
+Power-Thermal : 93.59738589013163 W
+###########
+I :29.2 A
+
+E : 6.067965344044745 V
+Eta Activation : 0.5619944043380709 V
+Eta Concentration : 0.007770760315627724 V
+Eta Ohmic : 0.05759923186935019 V
+FC Efficiency : 0.3757876104396795
+FC Power : 85.5893861537414 W
+FC Voltage : 2.9311433614295 V
+Loss : 0.6273643965230489 V
+PH2 : 0.19308208128301488 atm
+PH2O : 0.23765072512208632 atm
+PO2 : 0.18831791272259132 atm
+Power-Thermal : 93.9906138462586 W
+###########
+I :29.3 A
+
+E : 6.0679637876247 V
+Eta Activation : 0.5622228973646001 V
+Eta Concentration : 0.007805058292319742 V
+Eta Ohmic : 0.05782601902529326 V
+FC Efficiency : 0.3754735787453378
+FC Power : 85.8107316864595 W
+FC Voltage : 2.928693914213635 V
+Loss : 0.627853974682213 V
+PH2 : 0.19306803090140048 atm
+PH2O : 0.23763343152675778 atm
+PO2 : 0.188309979884393 atm
+Power-Thermal : 94.3842683135405 W
+###########
+I :29.4 A
+
+E : 6.06796223113909 V
+Eta Activation : 0.5624506194012726 V
+Eta Concentration : 0.007839429948932377 V
+Eta Ohmic : 0.05805307431403371 V
+FC Efficiency : 0.37515982215614047
+FC Power : 86.03165041684613 W
+FC Voltage : 2.926246612817896 V
+Loss : 0.6283431236642387 V
+PH2 : 0.19305398051978612 atm
+PH2O : 0.23761613793142924 atm
+PO2 : 0.18830204704619471 atm
+Power-Thermal : 94.77834958315387 W
+###########
+I :29.5 A
+
+E : 6.067960674587906 V
+Eta Activation : 0.5626775756848875 V
+Eta Concentration : 0.007873875602709995 V
+Eta Ohmic : 0.05828039855720188 V
+FC Efficiency : 0.37484633658511646
+FC Power : 86.2521420482353 W
+FC Voltage : 2.9238014253639086 V
+Loss : 0.6288318498447995 V
+PH2 : 0.19303993013817172 atm
+PH2O : 0.2375988443361007 atm
+PO2 : 0.18829411420799638 atm
+Power-Thermal : 95.17285795176471 W
+###########
+I :29.6 A
+
+E : 6.067959117971143 V
+Eta Activation : 0.5629037713990785 V
+Eta Concentration : 0.007908395572950337 V
+Eta Ohmic : 0.058507992578378465 V
+FC Efficiency : 0.3745331179768085
+FC Power : 86.47220627848556 W
+FC Voltage : 2.9213583202191065 V
+Loss : 0.6293201595504073 V
+PH2 : 0.19302587975655733 atm
+PH2O : 0.23758155074077217 atm
+PO2 : 0.18828618136979808 atm
+Power-Thermal : 95.56779372151446 W
+###########
+I :29.7 A
+
+E : 6.067957561288795 V
+Eta Activation : 0.5631292116750317 V
+Eta Concentration : 0.007942990181022257 V
+Eta Ohmic : 0.05873585720309573 V
+FC Efficiency : 0.3742201623068008
+FC Power : 86.69184279999347 W
+FC Voltage : 2.9189172659930462 V
+Loss : 0.6298080590591497 V
+PH2 : 0.19301182937494296 atm
+PH2O : 0.23756425714544363 atm
+PO2 : 0.18827824853159977 atm
+Power-Thermal : 95.96315720000653 W
+###########
+I :29.8 A
+
+E : 6.067956004540857 V
+Eta Activation : 0.5633539015921892 V
+Eta Concentration : 0.007977659750383705 V
+Eta Ohmic : 0.058963993258838665 V
+FC Efficiency : 0.37390746558125626
+FC Power : 86.91105129970721 W
+FC Voltage : 2.916478231533799 V
+Loss : 0.6302955546014116 V
+PH2 : 0.19299777899332857 atm
+PH2O : 0.23754696355011506 atm
+PO2 : 0.18827031569340147 atm
+Power-Thermal : 96.3589487002928 W
+###########
+I :29.9 A
+
+E : 6.067954447727325 V
+Eta Activation : 0.563577846178944 V
+Eta Concentration : 0.008012404606599825 V
+Eta Ohmic : 0.059192401575045975 V
+FC Efficiency : 0.3735950238364584
+FC Power : 87.12983145913883 W
+FC Voltage : 2.9140411859243756 V
+Loss : 0.6307826523605898 V
+PH2 : 0.19298372861171417 atm
+PH2O : 0.23752966995478653 atm
+PO2 : 0.18826238285520316 atm
+Power-Thermal : 96.75516854086118 W
+###########
+I :30.0 A
+
+E : 6.067952890848191 V
+Eta Activation : 0.5638010504133206 V
+Eta Concentration : 0.008047225077361353 V
+Eta Ohmic : 0.05942108298311133 V
+FC Efficiency : 0.373282833138362
+FC Power : 87.34818295437672 W
+FC Voltage : 2.9116060984792242 V
+Loss : 0.6312693584737933 V
+PH2 : 0.19296967823009978 atm
+PH2O : 0.237512376359458 atm
+PO2 : 0.18825445001700486 atm
+Power-Thermal : 97.15181704562329 W
+###########
+I :30.1 A
+
+E : 6.06795133390345 V
+Eta Activation : 0.5640235192236471 V
+Eta Concentration : 0.00808212149250312 V
+Eta Ohmic : 0.059650038316384414 V
+FC Efficiency : 0.3729708895821508
+FC Power : 87.56610545609738 W
+FC Voltage : 2.9091729387407765 V
+Loss : 0.6317556790325346 V
+PH2 : 0.1929556278484854 atm
+PH2O : 0.23749508276412945 atm
+PO2 : 0.18824651717880655 atm
+Power-Thermal : 97.54889454390265 W
+###########
+I :30.2 A
+
+E : 6.067949776893097 V
+Eta Activation : 0.5642452574892122 V
+Eta Concentration : 0.008117094184022806 V
+Eta Ohmic : 0.05987926841017217 V
+FC Efficiency : 0.37265918929180264
+FC Power : 87.78359862957703 W
+FC Voltage : 2.9067416764760607 V
+Loss : 0.6322416200834072 V
+PH2 : 0.19294157746687102 atm
+PH2O : 0.2374777891688009 atm
+PO2 : 0.18823858434060825 atm
+Power-Thermal : 97.94640137042298 W
+###########
+I :30.3 A
+
+E : 6.067948219817127 V
+Eta Activation : 0.5644662700409158 V
+Eta Concentration : 0.008152143486099899 V
+Eta Ohmic : 0.060108774101739953 V
+FC Efficiency : 0.37234772841966
+FC Power : 88.00066213470245 W
+FC Voltage : 2.904312281673348 V
+Loss : 0.6327271876287557 V
+PH2 : 0.19292752708525662 atm
+PH2O : 0.23746049557347237 atm
+PO2 : 0.18823065150240997 atm
+Power-Thermal : 98.34433786529756 W
+###########
+I :30.4 A
+
+E : 6.067946662675533 V
+Eta Activation : 0.5646865616619056 V
+Eta Concentration : 0.00818726973511487 V
+Eta Ohmic : 0.060338556230312555 V
+FC Efficiency : 0.37203650314600867
+FC Power : 88.21729562598158 W
+FC Voltage : 2.901884724538868 V
+Loss : 0.633212387627333 V
+PH2 : 0.1929134767036422 atm
+PH2O : 0.23744320197814378 atm
+PO2 : 0.18822271866421164 atm
+Power-Thermal : 98.74270437401842 W
+###########
+I :30.5 A
+
+E : 6.06794510546831 V
+Eta Activation : 0.5649061370882047 V
+Eta Concentration : 0.008222473269668512 V
+Eta Ohmic : 0.06056861563707556 V
+FC Efficiency : 0.3717255096786622
+FC Power : 88.43349875255375 W
+FC Voltage : 2.8994589754935656 V
+Loss : 0.6336972259949488 V
+PH2 : 0.19289942632202783 atm
+PH2O : 0.23742590838281524 atm
+PO2 : 0.18821478582601336 atm
+Power-Thermal : 99.14150124744626 W
+###########
+I :30.6 A
+
+E : 6.067943548195453 V
+Eta Activation : 0.5651250010093287 V
+Eta Concentration : 0.008257754430601538 V
+Eta Ohmic : 0.06079895316517652 V
+FC Efficiency : 0.3714147442525537
+FC Power : 88.64927115819954 W
+FC Voltage : 2.8970350051699194 V
+Loss : 0.6341817086051067 V
+PH2 : 0.19288537594041344 atm
+PH2O : 0.2374086147874867 atm
+PO2 : 0.18820685298781503 atm
+Power-Thermal : 99.54072884180049 W
+###########
+I :30.7 A
+
+E : 6.067941990856958 V
+Eta Activation : 0.5653431580688926 V
+Eta Concentration : 0.008293113561014379 V
+Eta Ohmic : 0.06102956965972602 V
+FC Efficiency : 0.37110420312933234
+FC Power : 88.86461248134992 W
+FC Voltage : 2.8946127844087925 V
+Loss : 0.634665841289633 V
+PH2 : 0.19287132555879904 atm
+PH2O : 0.23739132119215817 atm
+PO2 : 0.18819892014961676 atm
+Power-Thermal : 99.94038751865008 W
+###########
+I :30.8 A
+
+E : 6.067940433452815 V
+Eta Activation : 0.5655606128652073 V
+Eta Concentration : 0.008328551006287226 V
+Eta Ohmic : 0.061260465967799126 V
+FC Efficiency : 0.3707938825969675
+FC Power : 89.07952235509548 W
+FC Voltage : 2.8921922842563466 V
+Loss : 0.6351496298392937 V
+PH2 : 0.19285727517718465 atm
+PH2O : 0.23737402759682963 atm
+PO2 : 0.18819098731141842 atm
+Power-Thermal : 100.34047764490454 W
+###########
+I :30.9 A
+
+E : 6.067938875983023 V
+Eta Activation : 0.5657773699518682 V
+Eta Concentration : 0.008364067114100229 V
+Eta Ohmic : 0.06149164293843636 V
+FC Efficiency : 0.3704837789693588
+FC Power : 89.29400040719486 W
+FC Voltage : 2.889773475960999 V
+Loss : 0.6356330800044048 V
+PH2 : 0.19284322479557028 atm
+PH2O : 0.2373567340015011 atm
+PO2 : 0.18818305447322015 atm
+Power-Thermal : 100.74099959280514 W
+###########
+I :31.0 A
+
+E : 6.067937318447574 V
+Eta Activation : 0.5659934338383321 V
+Eta Concentration : 0.008399662234454009 V
+Eta Ohmic : 0.0617231014226451 V
+FC Efficiency : 0.37017388858595096
+FC Power : 89.50804626008295 W
+FC Voltage : 2.8873563309704178 V
+Loss : 0.6361161974954312 V
+PH2 : 0.1928291744139559 atm
+PH2O : 0.23733944040617255 atm
+PO2 : 0.1881751216350218 atm
+Power-Thermal : 101.14195373991706 W
+###########
+I :31.1 A
+
+E : 6.0679357608464635 V
+Eta Activation : 0.5662088089904863 V
+Eta Concentration : 0.008435336719690316 V
+Eta Ohmic : 0.06195484227340076 V
+FC Efficiency : 0.3698642078113559
+FC Power : 89.72165953087874 W
+FC Voltage : 2.8849408209285765 V
+Loss : 0.6365989879835774 V
+PH2 : 0.1928151240323415 atm
+PH2O : 0.237322146810844 atm
+PO2 : 0.18816718879682354 atm
+Power-Thermal : 101.54334046912129 W
+###########
+I :31.2 A
+
+E : 6.067934203179685 V
+Eta Activation : 0.5664234998312079 V
+Eta Concentration : 0.00847109092451298 V
+Eta Ohmic : 0.06218686634564803 V
+FC Efficiency : 0.36955473303497943
+FC Power : 89.93483983139261 W
+FC Voltage : 2.88252691767284 V
+Loss : 0.637081457101369 V
+PH2 : 0.19280107365072713 atm
+PH2O : 0.23730485321551545 atm
+PO2 : 0.1881592559586252 atm
+Power-Thermal : 101.9451601686074 W
+###########
+I :31.3 A
+
+E : 6.067932645447234 V
+Eta Activation : 0.5666375107409145 V
+Eta Concentration : 0.00850692520600905 V
+Eta Ohmic : 0.0624191744963022 V
+FC Efficiency : 0.3692454606706545
+FC Power : 90.1475867681336 W
+FC Voltage : 2.8801145932311054 V
+Loss : 0.6375636104432257 V
+PH2 : 0.19278702326911273 atm
+PH2O : 0.2372875596201869 atm
+PO2 : 0.1881513231204269 atm
+Power-Thermal : 102.34741323186641 W
+###########
+I :31.4 A
+
+E : 6.067931087649105 V
+Eta Activation : 0.5668508460581054 V
+Eta Concentration : 0.008542839923670234 V
+Eta Ohmic : 0.0626517675842504 V
+FC Efficiency : 0.36893638715627874
+FC Power : 90.35989994231579 W
+FC Voltage : 2.8777038198189744 V
+Loss : 0.638045453566026 V
+PH2 : 0.19277297288749834 atm
+PH2O : 0.23727026602485837 atm
+PO2 : 0.1881433902822286 atm
+Power-Thermal : 102.75010005768421 W
+###########
+I :31.5 A
+
+E : 6.06792952978529 V
+Eta Activation : 0.567063510079896 V
+Eta Concentration : 0.008578835439414484 V
+Eta Ohmic : 0.06288464647035284 V
+FC Efficiency : 0.3686275089534581
+FC Power : 90.57177894986465 W
+FC Voltage : 2.875294569836973 V
+Loss : 0.6385269919896633 V
+PH2 : 0.19275892250588397 atm
+PH2O : 0.23725297242952983 atm
+PO2 : 0.1881354574440303 atm
+Power-Thermal : 103.15322105013536 W
+###########
+I :31.6 A
+
+E : 6.067927971855786 V
+Eta Activation : 0.5672755070625406 V
+Eta Concentration : 0.008614912117607912 V
+Eta Ohmic : 0.06311781201744421 V
+FC Efficiency : 0.3683188225471567
+FC Power : 90.7832233814232 W
+FC Voltage : 2.8728868158678225 V
+Loss : 0.6390082311975928 V
+PH2 : 0.19274487212426958 atm
+PH2O : 0.2372356788342013 atm
+PO2 : 0.18812752460583199 atm
+Power-Thermal : 103.55677661857682 W
+###########
+I :31.7 A
+
+E : 6.067926413860588 V
+Eta Activation : 0.5674868412219508 V
+Eta Concentration : 0.008651070325086907 V
+Eta Ohmic : 0.06335126509033483 V
+FC Efficiency : 0.36801032444534937
+FC Power : 90.99423282235709 W
+FC Voltage : 2.8704805306737255 V
+Loss : 0.6394891766373726 V
+PH2 : 0.19273082174265518 atm
+PH2O : 0.23721838523887276 atm
+PO2 : 0.18811959176763368 atm
+Power-Thermal : 103.96076717764291 W
+###########
+I :31.8 A
+
+E : 6.0679248557996885 V
+Eta Activation : 0.5676975167342024 V
+Eta Concentration : 0.008687310431180545 V
+Eta Ohmic : 0.06358500655581217 V
+FC Efficiency : 0.3677020111786812
+FC Power : 91.20480685276009 W
+FC Voltage : 2.868075687193713 V
+Loss : 0.6399698337211951 V
+PH2 : 0.1927167713610408 atm
+PH2O : 0.23720109164354422 atm
+PO2 : 0.1881116589294354 atm
+Power-Thermal : 104.36519314723994 W
+###########
+I :31.9 A
+
+E : 6.067923297673083 V
+Eta Activation : 0.5679075377360362 V
+Eta Concentration : 0.008723632807733165 V
+Eta Ohmic : 0.06381903728264186 V
+FC Efficiency : 0.3673938793001317
+FC Power : 91.41494504745876 W
+FC Voltage : 2.8656722585410273 V
+Loss : 0.6404502078264112 V
+PH2 : 0.19270272097942642 atm
+PH2O : 0.23718379804821568 atm
+PO2 : 0.18810372609123707 atm
+Power-Thermal : 104.77005495254124 W
+###########
+I :32.0 A
+
+E : 6.0679217394807665 V
+Eta Activation : 0.5681169083253503 V
+Eta Concentration : 0.008760037829127336 V
+Eta Ohmic : 0.0640533581415695 V
+FC Efficiency : 0.3670859253846834
+FC Power : 91.62464697601698 W
+FC Voltage : 2.8632702180005305 V
+Loss : 0.6409303042960472 V
+PH2 : 0.19268867059781203 atm
+PH2O : 0.23716650445288712 atm
+PO2 : 0.1880957932530388 atm
+Power-Thermal : 105.17535302398304 W
+###########
+I :32.1 A
+
+E : 6.067920181222732 V
+Eta Activation : 0.5683256325616853 V
+Eta Concentration : 0.00879652587230694 V
+Eta Ohmic : 0.06428797000532141 V
+FC Efficiency : 0.3667781460289953
+FC Power : 91.83391220273985 W
+FC Voltage : 2.8608695390261634 V
+Loss : 0.6414101284393137 V
+PH2 : 0.1926746202161976 atm
+PH2O : 0.23714921085755855 atm
+PO2 : 0.18808786041484046 atm
+Power-Thermal : 105.58108779726017 W
+###########
+I :32.2 A
+
+E : 6.067918622898975 V
+Eta Activation : 0.5685337144667004 V
+Eta Concentration : 0.008833097316800638 V
+Eta Ohmic : 0.06452287374860649 V
+FC Efficiency : 0.36647053785108163
+FC Power : 92.04274028667768 W
+FC Voltage : 2.858470195238437 V
+Loss : 0.6418896855321076 V
+PH2 : 0.1926605698345832 atm
+PH2O : 0.23713191726223 atm
+PO2 : 0.1880799275766422 atm
+Power-Thermal : 105.98725971332235 W
+###########
+I :32.3 A
+
+E : 6.067917064509489 V
+Eta Activation : 0.568741158024645 V
+Eta Concentration : 0.008869752544745526 V
+Eta Ohmic : 0.06475807024811729 V
+FC Efficiency : 0.3661630974899935
+FC Power : 92.25113078162897 W
+FC Voltage : 2.8560721604219497 V
+Loss : 0.6423689808175078 V
+PH2 : 0.19264651945296885 atm
+PH2O : 0.23711462366690148 atm
+PO2 : 0.18807199473844385 atm
+Power-Thermal : 106.39386921837102 W
+###########
+I :32.4 A
+
+E : 6.067915506054269 V
+Eta Activation : 0.5689479671828197 V
+Eta Concentration : 0.008906491940911133 V
+Eta Ohmic : 0.06499356038253148 V
+FC Efficiency : 0.36585582160550734
+FC Power : 92.45908323614383 W
+FC Voltage : 2.8536754085229576 V
+Loss : 0.6428480195062622 V
+PH2 : 0.19263246907135445 atm
+PH2O : 0.2370973300715729 atm
+PO2 : 0.18806406190024558 atm
+Power-Thermal : 106.80091676385618 W
+###########
+I :32.5 A
+
+E : 6.0679139475333095 V
+Eta Activation : 0.5691541458520326 V
+Eta Concentration : 0.008943315892723602 V
+Eta Ohmic : 0.0652293450325132 V
+FC Efficiency : 0.3655487068778157
+FC Power : 92.66659719352629 W
+FC Voltage : 2.8512799136469624 V
+Loss : 0.6433268067772694 V
+PH2 : 0.19261841868974006 atm
+PH2O : 0.23708003647624437 atm
+PO2 : 0.18805612906204724 atm
+Power-Thermal : 107.20840280647373 W
+###########
+I :32.6 A
+
+E : 6.067912388946606 V
+Eta Activation : 0.5693596979070477 V
+Eta Concentration : 0.008980224790290243 V
+Eta Ohmic : 0.06546542508071453 V
+FC Efficiency : 0.36524175000722353
+FC Power : 92.87367219183682 W
+FC Voltage : 2.848885650056344 V
+Loss : 0.6438053477780524 V
+PH2 : 0.19260436830812566 atm
+PH2O : 0.23706274288091583 atm
+PO2 : 0.18804819622384897 atm
+Power-Thermal : 107.6163278081632 W
+###########
+I :32.7 A
+
+E : 6.067910830294151 V
+Eta Activation : 0.5695646271870256 V
+Eta Concentration : 0.009017219026424312 V
+Eta Ohmic : 0.0657018014117767 V
+FC Efficiency : 0.3649349477138485
+FC Power : 93.0803077638942 W
+FC Voltage : 2.846492592168018 V
+Loss : 0.6442836476252266 V
+PH2 : 0.1925903179265113 atm
+PH2O : 0.2370454492855873 atm
+PO2 : 0.18804026338565064 atm
+Power-Thermal : 108.02469223610582 W
+###########
+I :32.8 A
+
+E : 6.06790927157594 V
+Eta Activation : 0.5697689374959598 V
+Eta Concentration : 0.009054298996670115 V
+Eta Ohmic : 0.0659384749123317 V
+FC Efficiency : 0.36462829673732455
+FC Power : 93.2865034372771 W
+FC Voltage : 2.8441007145511317 V
+Loss : 0.6447617114049616 V
+PH2 : 0.1925762675448969 atm
+PH2O : 0.23702815569025876 atm
+PO2 : 0.18803233054745236 atm
+Power-Thermal : 108.43349656272288 W
+###########
+I :32.9 A
+
+E : 6.067907712791968 V
+Eta Activation : 0.5699726326031039 V
+Eta Concentration : 0.009091465099328346 V
+Eta Ohmic : 0.06617544647100357 V
+FC Efficiency : 0.36432179383651125
+FC Power : 93.49225873432553 W
+FC Voltage : 2.8417099919247883 V
+Loss : 0.6452395441734359 V
+PH2 : 0.1925622171632825 atm
+PH2O : 0.23701086209493022 atm
+PO2 : 0.18802439770925403 atm
+Power-Thermal : 108.84274126567448 W
+###########
+I :33.0 A
+
+E : 6.067906153942228 V
+Eta Activation : 0.5701757162433936 V
+Eta Concentration : 0.009128717735481805 V
+Eta Ohmic : 0.06641271697840993 V
+FC Efficiency : 0.36401543578920526
+FC Power : 93.69757317214143 W
+FC Voltage : 2.839320399155801 V
+Loss : 0.6457171509572853 V
+PH2 : 0.19254816678166814 atm
+PH2O : 0.23699356849960168 atm
+PO2 : 0.18801646487105572 atm
+Power-Thermal : 109.25242682785857 W
+###########
+I :33.1 A
+
+E : 6.067904595026715 V
+Eta Activation : 0.5703781921178619 V
+Eta Concentration : 0.00916605730902133 V
+Eta Ohmic : 0.06665028732716327 V
+FC Efficiency : 0.3637092193918568
+FC Power : 93.90244626258959 W
+FC Voltage : 2.836931911256483 V
+Loss : 0.6461945367540465 V
+PH2 : 0.19253411640005375 atm
+PH2O : 0.23697627490427314 atm
+PO2 : 0.18800853203285742 atm
+Power-Thermal : 109.66255373741043 W
+###########
+I :33.2 A
+
+E : 6.067903036045425 V
+Eta Activation : 0.5705800638940484 V
+Eta Concentration : 0.009203484226672089 V
+Eta Ohmic : 0.06688815841187257 V
+FC Efficiency : 0.3634031414592897
+FC Power : 94.10687751229767 W
+FC Voltage : 2.83454450338246 V
+Loss : 0.646671706532593 V
+PH2 : 0.19252006601843935 atm
+PH2O : 0.2369589813089446 atm
+PO2 : 0.1880005991946591 atm
+Power-Thermal : 110.07312248770235 W
+###########
+I :33.3 A
+
+E : 6.067901476998349 V
+Eta Activation : 0.5707813352064024 V
+Eta Concentration : 0.00924099889802015 V
+Eta Ohmic : 0.0671263311291445 V
+FC Efficiency : 0.36309719882442487
+FC Power : 94.31086642265612 W
+FC Voltage : 2.8321581508305145 V
+Loss : 0.647148665233567 V
+PH2 : 0.19250601563682498 atm
+PH2O : 0.23694168771361604 atm
+PO2 : 0.1879926663564608 atm
+Power-Thermal : 110.48413357734387 W
+###########
+I :33.4 A
+
+E : 6.0678999178854856 V
+Eta Activation : 0.5709820096566791 V
+Eta Concentration : 0.00927860173553941 V
+Eta Ohmic : 0.0673648063775852 V
+FC Efficiency : 0.36279138833800856
+FC Power : 94.51441248981799 W
+FC Voltage : 2.8297728290364668 V
+Loss : 0.6476254177698038 V
+PH2 : 0.1924919652552106 atm
+PH2O : 0.2369243941182875 atm
+PO2 : 0.1879847335182625 atm
+Power-Thermal : 110.89558751018201 W
+###########
+I :33.5 A
+
+E : 6.067898358706827 V
+Eta Activation : 0.5711820908143315 V
+Eta Concentration : 0.009316293154618755 V
+Eta Ohmic : 0.06760358505780151 V
+FC Efficiency : 0.3624857068683421
+FC Power : 94.71751520469779 W
+FC Voltage : 2.8273885135730685 V
+Loss : 0.6481019690267518 V
+PH2 : 0.1924779148735962 atm
+PH2O : 0.23690710052295896 atm
+PO2 : 0.18797680068006423 atm
+Power-Thermal : 111.30748479530222 W
+###########
+I :33.6 A
+
+E : 6.067896799462367 V
+Eta Activation : 0.5713815822168947 V
+Eta Concentration : 0.009354073573589635 V
+Eta Ohmic : 0.06784266807240258 V
+FC Efficiency : 0.36218015130101694
+FC Power : 94.92017405297052 W
+FC Voltage : 2.825005180147932 V
+Loss : 0.6485783238628869 V
+PH2 : 0.1924638644919818 atm
+PH2O : 0.23688980692763043 atm
+PO2 : 0.1879688678418659 atm
+Power-Thermal : 111.71982594702949 W
+###########
+I :33.7 A
+
+E : 6.067895240152101 V
+Eta Activation : 0.571580487370366 V
+Eta Concentration : 0.00939194341375389 V
+Eta Ohmic : 0.06808205632600123 V
+FC Efficiency : 0.3618747185386532
+FC Power : 95.1223885150704 W
+FC Voltage : 2.822622804601495 V
+Loss : 0.6490544871101211 V
+PH2 : 0.19244981411036743 atm
+PH2O : 0.2368725133323019 atm
+PO2 : 0.18796093500366762 atm
+Power-Thermal : 112.13261148492964 W
+###########
+I :33.8 A
+
+E : 6.067893680776024 V
+Eta Activation : 0.5717788097495777 V
+Eta Concentration : 0.009429903099411977 V
+Eta Ohmic : 0.06832175072521558 V
+FC Efficiency : 0.3615694055006407
+FC Power : 95.3241580661889 W
+FC Voltage : 2.8202413629049974 V
+Loss : 0.6495304635742053 V
+PH2 : 0.192435763728753 atm
+PH2O : 0.2368552197369733 atm
+PO2 : 0.18795300216546929 atm
+Power-Thermal : 112.54584193381109 W
+###########
+I :33.9 A
+
+E : 6.06789212133413 V
+Eta Activation : 0.5719765527985667 V
+Eta Concentration : 0.009467953057891451 V
+Eta Ohmic : 0.06856175217867054 V
+FC Efficiency : 0.3612642091228828
+FC Power : 95.52548217627267 W
+FC Voltage : 2.817860831158486 V
+Loss : 0.6500062580351288 V
+PH2 : 0.19242171334713862 atm
+PH2O : 0.23683792614164476 atm
+PO2 : 0.187945069327271 atm
+Power-Thermal : 112.95951782372732 W
+###########
+I :34.0 A
+
+E : 6.067890561826412 V
+Eta Activation : 0.5721737199309359 V
+Eta Concentration : 0.009506093719575873 V
+Eta Ohmic : 0.0688020615969992 V
+FC Efficiency : 0.3609591263575458
+FC Power : 95.72636031002115 W
+FC Voltage : 2.8154811855888573 V
+Loss : 0.650481875247511 V
+PH2 : 0.19240766296552422 atm
+PH2O : 0.23682063254631622 atm
+PO2 : 0.18793713648907268 atm
+Power-Thermal : 113.37363968997886 W
+###########
+I :34.1 A
+
+E : 6.067889002252866 V
+Eta Activation : 0.5723703145302134 V
+Eta Concentration : 0.009544325517933978 V
+Eta Ohmic : 0.06904267989284446 V
+FC Efficiency : 0.36065415417280866
+FC Power : 95.92679192688365 W
+FC Voltage : 2.8131024025479077 V
+Loss : 0.6509573199409917 V
+PH2 : 0.19239361258390986 atm
+PH2O : 0.23680333895098768 atm
+PO2 : 0.1879292036508744 atm
+Power-Thermal : 113.78820807311637 W
+###########
+I :34.2 A
+
+E : 6.067887442613486 V
+Eta Activation : 0.5725663399502026 V
+Eta Concentration : 0.009582648889549258 V
+Eta Ohmic : 0.06928360798086063 V
+FC Efficiency : 0.36034928955261847
+FC Power : 96.12677648105651 W
+FC Voltage : 2.810724458510424 V
+Loss : 0.6514325968206125 V
+PH2 : 0.19237956220229546 atm
+PH2O : 0.23678604535565914 atm
+PO2 : 0.18792127081267607 atm
+Power-Thermal : 114.20322351894353 W
+###########
+I :34.3 A
+
+E : 6.067885882908268 V
+Eta Activation : 0.5727617995153319 V
+Eta Concentration : 0.009621064274149865 V
+Eta Ohmic : 0.06952484677771478 V
+FC Efficiency : 0.3600445294964468
+FC Power : 96.32631342147937 W
+FC Voltage : 2.808347330072285 V
+Loss : 0.6519077105671965 V
+PH2 : 0.19236551182068107 atm
+PH2O : 0.2367687517603306 atm
+PO2 : 0.1879133379744778 atm
+Power-Thermal : 114.61868657852062 W
+###########
+I :34.4 A
+
+E : 6.0678843231372035 V
+Eta Activation : 0.5729566965209945 V
+Eta Concentration : 0.009659572114638906 V
+Eta Ohmic : 0.0697663972020885 V
+FC Efficiency : 0.3597398710190505
+FC Power : 96.52540219183163 W
+FC Voltage : 2.805970993948594 V
+Loss : 0.6523826658377219 V
+PH2 : 0.19235146143906667 atm
+PH2O : 0.23675145816500207 atm
+PO2 : 0.18790540513627946 atm
+Power-Thermal : 115.03459780816837 W
+###########
+I :34.5 A
+
+E : 6.06788276330029 V
+Eta Activation : 0.5731510342338867 V
+Eta Concentration : 0.00969817285712505 V
+Eta Ohmic : 0.07000826017467932 V
+FC Efficiency : 0.35943531115023514
+FC Power : 96.72404223052828 W
+FC Voltage : 2.8035954269718344 V
+Loss : 0.652857467265691 V
+PH2 : 0.1923374110574523 atm
+PH2O : 0.23673416456967353 atm
+PO2 : 0.18789747229808118 atm
+Power-Thermal : 115.45095776947173 W
+###########
+I :34.6 A
+
+E : 6.067881203397519 V
+Eta Activation : 0.5733448158923403 V
+Eta Concentration : 0.00973686695095356 V
+Eta Ohmic : 0.07025043661820227 V
+FC Efficiency : 0.3591308469346203
+FC Power : 96.92223297071533 W
+FC Voltage : 2.8012206060900384 V
+Loss : 0.6533321194614962 V
+PH2 : 0.1923233606758379 atm
+PH2O : 0.23671687097434496 atm
+PO2 : 0.18788953945988285 atm
+Power-Thermal : 115.86776702928469 W
+###########
+I :34.7 A
+
+E : 6.0678796434288875 V
+Eta Activation : 0.5735380447066493 V
+Eta Concentration : 0.009775654848737656 V
+Eta Ohmic : 0.07049292745739155 V
+FC Efficiency : 0.35882647543140966
+FC Power : 97.11997384026535 W
+FC Voltage : 2.798846508364995 V
+Loss : 0.6538066270127785 V
+PH2 : 0.19230931029422352 atm
+PH2O : 0.23669957737901642 atm
+PO2 : 0.18788160662168454 atm
+Power-Thermal : 116.28502615973468 W
+###########
+I :34.8 A
+
+E : 6.067878083394388 V
+Eta Activation : 0.5737307238593927 V
+Eta Concentration : 0.009814537006390326 V
+Eta Ohmic : 0.0707357336190021 V
+FC Efficiency : 0.3585221937141618
+FC Power : 97.31726426177207 W
+FC Voltage : 2.796473110970462 V
+Loss : 0.6542809944847852 V
+PH2 : 0.19229525991260915 atm
+PH2O : 0.23668228378368789 atm
+PO2 : 0.18787367378348624 atm
+Power-Thermal : 116.70273573822793 W
+###########
+I :34.9 A
+
+E : 6.067876523294016 V
+Eta Activation : 0.5739228565057535 V
+Eta Concentration : 0.009853513883156419 V
+Eta Ohmic : 0.0709788560318111 V
+FC Efficiency : 0.35821799887056543
+FC Power : 97.51410365254534 W
+FC Voltage : 2.794100391190411 V
+Loss : 0.654755226420721 V
+PH2 : 0.19228120953099476 atm
+PH2O : 0.23666499018835935 atm
+PO2 : 0.18786574094528793 atm
+Power-Thermal : 117.12089634745466 W
+###########
+I :35.0 A
+
+E : 6.067874963127765 V
+Eta Activation : 0.5741144457738313 V
+Eta Concentration : 0.00989258594164525 V
+Eta Ohmic : 0.0712222956266197 V
+FC Efficiency : 0.3579138880022158
+FC Power : 97.71049142460492 W
+FC Voltage : 2.7917283264172834 V
+Loss : 0.6552293273420963 V
+PH2 : 0.19226715914938036 atm
+PH2O : 0.2366476965930308 atm
+PO2 : 0.18785780810708963 atm
+Power-Thermal : 117.53950857539509 W
+###########
+I :35.1 A
+
+E : 6.06787340289563 V
+Eta Activation : 0.5743054947649517 V
+Eta Concentration : 0.009931753647863492 V
+Eta Ohmic : 0.07146605333625457 V
+FC Efficiency : 0.357609858224395
+FC Power : 97.90642698467488 W
+FC Voltage : 2.7893568941502815 V
+Loss : 0.6557033017490698 V
+PH2 : 0.192253108767766 atm
+PH2O : 0.23663040299770227 atm
+PO2 : 0.18784987526889133 atm
+Power-Thermal : 117.95857301532513 W
+###########
+I :35.2 A
+
+E : 6.067871842597606 V
+Eta Activation : 0.5744960065539715 V
+Eta Concentration : 0.00997101747124856 V
+Eta Ohmic : 0.07171013009556947 V
+FC Efficiency : 0.3573059066658537
+FC Power : 98.1019097341768 W
+FC Voltage : 2.7869860719936588 V
+Loss : 0.6561771541207895 V
+PH2 : 0.1922390583861516 atm
+PH2O : 0.23661310940237373 atm
+PO2 : 0.18784194243069305 atm
+Power-Thermal : 118.37809026582323 W
+###########
+I :35.3 A
+
+E : 6.067870282233687 V
+Eta Activation : 0.574685984189578 V
+Eta Concentration : 0.010010377884702354 V
+Eta Ohmic : 0.07195452684144692 V
+FC Efficiency : 0.3570020304685963
+FC Power : 98.2969390692233 W
+FC Voltage : 2.784615837655051 V
+Loss : 0.6566508889157272 V
+PH2 : 0.1922250080045372 atm
+PH2O : 0.2365958158070452 atm
+PO2 : 0.18783400959249472 atm
+Power-Thermal : 118.7980609307767 W
+###########
+I :35.4 A
+
+E : 6.067868721803867 V
+Eta Activation : 0.5748754306945856 V
+Eta Concentration : 0.010049835364625451 V
+Eta Ohmic : 0.07219924451279995 V
+FC Efficiency : 0.3566982267876682
+FC Power : 98.49151438061095 W
+FC Voltage : 2.7822461689438125 V
+Loss : 0.6571245105720109 V
+PH2 : 0.1922109576229228 atm
+PH2O : 0.23657852221171666 atm
+PO2 : 0.18782607675429644 atm
+Power-Thermal : 119.21848561938904 W
+###########
+I :35.5 A
+
+E : 6.067867161308142 V
+Eta Activation : 0.5750643490662285 V
+Eta Concentration : 0.010089390390951677 V
+Eta Ohmic : 0.07244428405057364 V
+FC Efficiency : 0.3563944927909451
+FC Power : 98.6856350538127 W
+FC Voltage : 2.779877043769372 V
+Loss : 0.6575980235077539 V
+PH2 : 0.1921969072413084 atm
+PH2O : 0.23656122861638806 atm
+PO2 : 0.1878181439160981 atm
+Power-Thermal : 119.6393649461873 W
+###########
+I :35.6 A
+
+E : 6.067865600746504 V
+Eta Activation : 0.5752527422764472 V
+Eta Concentration : 0.010129043447183154 V
+Eta Ohmic : 0.07268964639774662 V
+FC Efficiency : 0.3560908256589256
+FC Power : 98.87930046897046 W
+FC Voltage : 2.7775084401396195 V
+Loss : 0.658071432121377 V
+PH2 : 0.19218285685969402 atm
+PH2O : 0.23654393502105953 atm
+PO2 : 0.18781021107789983 atm
+Power-Thermal : 120.06069953102956 W
+###########
+I :35.7 A
+
+E : 6.06786404011895 V
+Eta Activation : 0.5754406132721732 V
+Eta Concentration : 0.01016879502042574 V
+Eta Ohmic : 0.07293533249933302 V
+FC Efficiency : 0.35578722258452433
+FC Power : 99.07251000088667 W
+FC Voltage : 2.77514033615929 V
+Loss : 0.658544740791932 V
+PH2 : 0.19216880647807963 atm
+PH2O : 0.236526641425731 atm
+PO2 : 0.1878022782397015 atm
+Power-Thermal : 120.48248999911337 W
+###########
+I :35.8 A
+
+E : 6.067862479425472 V
+Eta Activation : 0.5756279649756088 V
+Eta Concentration : 0.010208645601424973 V
+Eta Ohmic : 0.07318134330238404 V
+FC Efficiency : 0.35548368077286957
+FC Power : 99.2652630190161 W
+FC Voltage : 2.772772710028383 V
+Loss : 0.6590179538794178 V
+PH2 : 0.19215475609646523 atm
+PH2O : 0.23650934783040245 atm
+PO2 : 0.18779434540150322 atm
+Power-Thermal : 120.9047369809839 W
+###########
+I :35.9 A
+
+E : 6.0678609186660655 V
+Eta Activation : 0.5758148002845024 V
+Eta Concentration : 0.010248595684602362 V
+Eta Ohmic : 0.07342767975598957 V
+FC Efficiency : 0.3551801974411018
+FC Power : 99.45755888745732 W
+FC Voltage : 2.7704055400405942 V
+Loss : 0.6594910757250942 V
+PH2 : 0.19214070571485087 atm
+PH2O : 0.23649205423507388 atm
+PO2 : 0.1877864125633049 atm
+Power-Thermal : 121.32744111254267 W
+###########
+I :36.0 A
+
+E : 6.067859357840726 V
+Eta Activation : 0.5760011220724212 V
+Eta Concentration : 0.01028864576809226 V
+Eta Ohmic : 0.07367434281127987 V
+FC Efficiency : 0.3548767698181744
+FC Power : 99.64939696494336 W
+FC Voltage : 2.76803880458176 V
+Loss : 0.6599641106517933 V
+PH2 : 0.19212665533323647 atm
+PH2O : 0.23647476063974535 atm
+PO2 : 0.1877784797251066 atm
+Power-Thermal : 121.75060303505666 W
+###########
+I :36.1 A
+
+E : 6.067857796949445 V
+Eta Activation : 0.5761869331890193 V
+Eta Concentration : 0.010328796353779077 V
+Eta Ohmic : 0.07392133342142734 V
+FC Efficiency : 0.35457339514465597
+FC Power : 99.84077660483224 W
+FC Voltage : 2.7656724821283167 V
+Loss : 0.6604370629642257 V
+PH2 : 0.19211260495162208 atm
+PH2O : 0.2364574670444168 atm
+PO2 : 0.18777054688690828 atm
+Power-Thermal : 122.17422339516779 W
+###########
+I :36.2 A
+
+E : 6.06785623599222 V
+Eta Activation : 0.576372236460302 V
+Eta Concentration : 0.010369047947335034 V
+Eta Ohmic : 0.07416865254164824 V
+FC Efficiency : 0.35427007067253763
+FC Power : 100.03169715509773 W
+FC Voltage : 2.7633065512457935 V
+Loss : 0.6609099369492853 V
+PH2 : 0.1920985545700077 atm
+PH2O : 0.23644017344908827 atm
+PO2 : 0.18776261404871 atm
+Power-Thermal : 122.59830284490229 W
+###########
+I :36.3 A
+
+E : 6.067854674969046 V
+Eta Activation : 0.5765570346888877 V
+Eta Concentration : 0.010409401058258388 V
+Eta Ohmic : 0.07441630112920429 V
+FC Efficiency : 0.35396679366503764
+FC Power : 100.22215795831875 W
+FC Voltage : 2.7609409905872937 V
+Loss : 0.6613827368763504 V
+PH2 : 0.19208450418839332 atm
+PH2O : 0.23642287985375973 atm
+PO2 : 0.18775468121051167 atm
+Power-Thermal : 123.02284204168124 W
+###########
+I :36.4 A
+
+E : 6.067853113879913 V
+Eta Activation : 0.5767413306542637 V
+Eta Concentration : 0.010449856199912129 V
+Eta Ohmic : 0.07466428014340454 V
+FC Efficiency : 0.3536635613964117
+FC Power : 100.4121583516692 W
+FC Voltage : 2.7585757788920113 V
+Loss : 0.6618554669975804 V
+PH2 : 0.19207045380677892 atm
+PH2O : 0.2364055862584312 atm
+PO2 : 0.18774674837231337 atm
+Power-Thermal : 123.4478416483308 W
+###########
+I :36.5 A
+
+E : 6.067851552724819 V
+Eta Activation : 0.5769251271130418 V
+Eta Concentration : 0.010490413889563139 V
+Eta Ohmic : 0.07491259054560692 V
+FC Efficiency : 0.353360371151764
+FC Power : 100.60169766690721 W
+FC Voltage : 2.7562108949837594 V
+Loss : 0.6623281315482119 V
+PH2 : 0.19205640342516453 atm
+PH2O : 0.23638829266310266 atm
+PO2 : 0.18773881553411506 atm
+Power-Thermal : 123.8733023330928 W
+###########
+I :36.6 A
+
+E : 6.067849991503758 V
+Eta Activation : 0.577108426799207 V
+Eta Concentration : 0.010531074648421903 V
+Eta Ohmic : 0.07516123329922021 V
+FC Efficiency : 0.35305722022686054
+FC Power : 100.79077523036415 W
+FC Voltage : 2.7538463177695123 V
+Loss : 0.6628007347468492 V
+PH2 : 0.19204235304355016 atm
+PH2O : 0.23637099906777412 atm
+PO2 : 0.18773088269591676 atm
+Power-Thermal : 124.29922476963587 W
+###########
+I :36.7 A
+
+E : 6.067848430216723 V
+Eta Activation : 0.5772912324243658 V
+Eta Concentration : 0.010571839001682676 V
+Eta Ohmic : 0.07541020936970556 V
+FC Efficiency : 0.3527541059279427
+FC Power : 100.97939036293289 W
+FC Voltage : 2.7514820262379533 V
+Loss : 0.663273280795754 V
+PH2 : 0.19202830266193577 atm
+PH2O : 0.23635370547244558 atm
+PO2 : 0.18772294985771848 atm
+Power-Thermal : 124.72560963706714 W
+###########
+I :36.8 A
+
+E : 6.06784686886371 V
+Eta Activation : 0.5774735466779892 V
+Eta Concentration : 0.010612707478564227 V
+Eta Ohmic : 0.0756595197245783 V
+FC Efficiency : 0.35245102557154506
+FC Power : 101.16754238005629 W
+FC Voltage : 2.7491179994580515 V
+Loss : 0.6637457738811318 V
+PH2 : 0.19201425228032137 atm
+PH2O : 0.23633641187711704 atm
+PO2 : 0.18771501701952015 atm
+Power-Thermal : 125.1524576199437 W
+###########
+I :36.9 A
+
+E : 6.067845307444713 V
+Eta Activation : 0.5776553722276525 V
+Eta Concentration : 0.010653680612351 V
+Eta Ohmic : 0.0759091653334099 V
+FC Efficiency : 0.3521479764843136
+FC Power : 101.35523059171516 W
+FC Voltage : 2.7467542165776466 V
+Loss : 0.6642182181734133 V
+PH2 : 0.192000201898707 atm
+PH2O : 0.23631911828178848 atm
+PO2 : 0.18770708418132187 atm
+Power-Thermal : 125.57976940828485 W
+###########
+I :37.0 A
+
+E : 6.067843745959727 V
+Eta Activation : 0.5778367117192735 V
+Eta Concentration : 0.010694758940434935 V
+Eta Ohmic : 0.0761591471678295 V
+FC Efficiency : 0.3518449560028253
+FC Power : 101.54245430241538 W
+FC Voltage : 2.7443906568220373 V
+Loss : 0.6646906178275379 V
+PH2 : 0.1919861515170926 atm
+PH2O : 0.23630182468645994 atm
+PO2 : 0.18769915134312354 atm
+Power-Thermal : 126.00754569758463 W
+###########
+I :37.1 A
+
+E : 6.067842184408744 V
+Eta Activation : 0.5780175677773449 V
+Eta Concentration : 0.010735943004357705 V
+Eta Ohmic : 0.0764094662015258 V
+FC Efficiency : 0.35154196147341055
+FC Power : 101.72921281117556 W
+FC Voltage : 2.7420272994926025 V
+Loss : 0.6651629769832283 V
+PH2 : 0.19197210113547822 atm
+PH2O : 0.2362845310911314 atm
+PO2 : 0.18769121850492526 atm
+Power-Thermal : 126.43578718882446 W
+###########
+I :37.2 A
+
+E : 6.067840622791762 V
+Eta Activation : 0.5781979430051665 V
+Eta Concentration : 0.01077723334985357 V
+Eta Ohmic : 0.07666012341024873 V
+FC Efficiency : 0.3512389902519766
+FC Power : 101.91550541151355 W
+FC Voltage : 2.739664123965418 V
+Loss : 0.6656352997652688 V
+PH2 : 0.1919580507538638 atm
+PH2O : 0.2362672374958028 atm
+PO2 : 0.18768328566672693 atm
+Power-Thermal : 126.86449458848648 W
+###########
+I :37.3 A
+
+E : 6.067839061108771 V
+Eta Activation : 0.5783778399850711 V
+Eta Concentration : 0.010818630526892782 V
+Eta Ohmic : 0.07691111977181152 V
+FC Efficiency : 0.35093603970383247
+FC Power : 102.10133139143302 W
+FC Voltage : 2.7373011096898936 V
+Loss : 0.6661075902837754 V
+PH2 : 0.1919440003722494 atm
+PH2O : 0.23624994390047427 atm
+PO2 : 0.18767535282852865 atm
+Power-Thermal : 127.29366860856697 W
+###########
+I :37.4 A
+
+E : 6.0678374993597695 V
+Eta Activation : 0.5785572612786511 V
+Eta Concentration : 0.01086013508972553 V
+Eta Ohmic : 0.07716245626609214 V
+FC Efficiency : 0.350633107203516
+FC Power : 102.2866900334097 W
+FC Voltage : 2.7349382361874253 V
+Loss : 0.6665798526344688 V
+PH2 : 0.19192994999063503 atm
+PH2O : 0.23623265030514573 atm
+PO2 : 0.18766741999033032 atm
+Power-Thermal : 127.7233099665903 W
+###########
+I :37.5 A
+
+E : 6.06783593754475 V
+Eta Activation : 0.5787362094269777 V
+Eta Concentration : 0.01090174759692645 V
+Eta Ohmic : 0.07741413387503544 V
+FC Efficiency : 0.3503301901346221
+FC Power : 102.47158061437696 W
+FC Voltage : 2.732575483050052 V
+Loss : 0.6670520908989396 V
+PH2 : 0.19191589960902064 atm
+PH2O : 0.2362153567098172 atm
+PO2 : 0.18765948715213204 atm
+Power-Thermal : 128.15341938562307 W
+###########
+I :37.6 A
+
+E : 6.067834375663708 V
+Eta Activation : 0.5789146869508215 V
+Eta Concentration : 0.010943468611439746 V
+Eta Ohmic : 0.07766615358265486 V
+FC Efficiency : 0.35002728588963167
+FC Power : 102.65600240571118 W
+FC Voltage : 2.730212829939127 V
+Loss : 0.6675243091449161 V
+PH2 : 0.19190184922740625 atm
+PH2O : 0.23619806311448865 atm
+PO2 : 0.1876515543139337 atm
+Power-Thermal : 128.58399759428883 W
+###########
+I :37.7 A
+
+E : 6.067832813716636 V
+Eta Activation : 0.5790926963508671 V
+Eta Concentration : 0.010985298700624873 V
+Eta Ohmic : 0.077918516375034 V
+FC Efficiency : 0.34972439186974436
+FC Power : 102.83995467321704 W
+FC Voltage : 2.727850256584006 V
+Loss : 0.667996511426526 V
+PH2 : 0.19188779884579188 atm
+PH2O : 0.23618076951916012 atm
+PO2 : 0.18764362147573543 atm
+Power-Thermal : 129.015045326783 W
+###########
+I :37.8 A
+
+E : 6.067831251703531 V
+Eta Activation : 0.5792702401079259 V
+Eta Concentration : 0.011027238436302865 V
+Eta Ohmic : 0.07817122324032892 V
+FC Efficiency : 0.3494215054847106
+FC Power : 103.02343667711207 W
+FC Voltage : 2.725487742780743 V
+Loss : 0.6684687017845576 V
+PH2 : 0.19187374846417748 atm
+PH2O : 0.23616347592383158 atm
+PO2 : 0.1876356886375371 atm
+Power-Thermal : 129.44656332288793 W
+###########
+I :37.9 A
+
+E : 6.067829689624384 V
+Eta Activation : 0.579447320683147 V
+Eta Concentration : 0.01106928839480318 V
+Eta Ohmic : 0.07842427516876968 V
+FC Efficiency : 0.3491186241526647
+FC Power : 103.20644767201074 W
+FC Voltage : 2.7231252683907847 V
+Loss : 0.6689408842467198 V
+PH2 : 0.1918596980825631 atm
+PH2O : 0.23614618232850304 atm
+PO2 : 0.18762775579933882 atm
+Power-Thermal : 129.87855232798927 W
+###########
+I :38.0 A
+
+E : 6.067828127479192 V
+Eta Activation : 0.5796239405182232 V
+Eta Concentration : 0.011111449157011257 V
+Eta Ohmic : 0.07867767315266222 V
+FC Efficiency : 0.3488157452999626
+FC Power : 103.38898690690893 W
+FC Voltage : 2.7207628133397086 V
+Loss : 0.6694130628278967 V
+PH2 : 0.19184564770094872 atm
+PH2O : 0.2361288887331745 atm
+PO2 : 0.1876198229611405 atm
+Power-Thermal : 130.31101309309108 W
+###########
+I :38.1 A
+
+E : 6.06782656526795 V
+Eta Activation : 0.5798001020355967 V
+Eta Concentration : 0.011153721308416676 V
+Eta Ohmic : 0.07893141818639028 V
+FC Efficiency : 0.34851286636101686
+FC Power : 103.57105362516701 W
+FC Voltage : 2.718400357615932 V
+Loss : 0.6698852415304036 V
+PH2 : 0.19183159731933433 atm
+PH2O : 0.23611159513784596 atm
+PO2 : 0.18761189012294222 atm
+Power-Thermal : 130.743946374833 W
+###########
+I :38.2 A
+
+E : 6.06782500299065 V
+Eta Activation : 0.5799758076386604 V
+Eta Concentration : 0.011196105439161908 V
+Eta Ohmic : 0.07918551126641735 V
+FC Efficiency : 0.3482099847781348
+FC Power : 103.75264706449306 W
+FC Voltage : 2.7160378812694517 V
+Loss : 0.6703574243442397 V
+PH2 : 0.19181754693771993 atm
+PH2O : 0.2360943015425174 atm
+PO2 : 0.18760395728474388 atm
+Power-Thermal : 131.17735293550697 W
+###########
+I :38.3 A
+
+E : 6.067823440647288 V
+Eta Activation : 0.5801510597119568 V
+Eta Concentration : 0.011238602144091767 V
+Eta Ohmic : 0.07943995339128827 V
+FC Efficiency : 0.3479070980013594
+FC Power : 103.93376645692612 W
+FC Voltage : 2.7136753644106038 V
+Loss : 0.6708296152473369 V
+PH2 : 0.19180349655610554 atm
+PH2O : 0.23607700794718886 atm
+PO2 : 0.18759602444654558 atm
+Power-Thermal : 131.6112335430739 W
+###########
+I :38.4 A
+
+E : 6.067821878237859 V
+Eta Activation : 0.5803258606213751 V
+Eta Concentration : 0.011281212022803504 V
+Eta Ohmic : 0.07969474556163152 V
+FC Efficiency : 0.3476042034883087
+FC Power : 104.11441102881822 W
+FC Voltage : 2.711312787208808 V
+Loss : 0.6713018182058101 V
+PH2 : 0.19178944617449117 atm
+PH2O : 0.23605971435186032 atm
+PO2 : 0.1875880916083473 atm
+Power-Thermal : 132.0455889711818 W
+###########
+I :38.5 A
+
+E : 6.067820315762356 V
+Eta Activation : 0.5805002127143453 V
+Eta Concentration : 0.011323935679697564 V
+Eta Ohmic : 0.07994988878016067 V
+FC Efficiency : 0.3473012987040177
+FC Power : 104.29458000081654 W
+FC Voltage : 2.7089501298913388 V
+Loss : 0.6717740371742035 V
+PH2 : 0.19177539579287678 atm
+PH2O : 0.23604242075653178 atm
+PO2 : 0.18758015877014897 atm
+Power-Thermal : 132.48041999918348 W
+###########
+I :38.6 A
+
+E : 6.067818753220774 V
+Eta Activation : 0.5806741183200291 V
+Eta Concentration : 0.01136677372402903 V
+Eta Ohmic : 0.08020538405167664 V
+FC Efficiency : 0.34699838112078196
+FC Power : 104.47427258784504 W
+FC Voltage : 2.7065873727420993 V
+Loss : 0.6722462760957348 V
+PH2 : 0.19176134541126238 atm
+PH2O : 0.23602512716120325 atm
+PO2 : 0.1875722259319507 atm
+Power-Thermal : 132.91572741215498 W
+###########
+I :38.7 A
+
+E : 6.067817190613107 V
+Eta Activation : 0.5808475797495102 V
+Eta Concentration : 0.011409726769959737 V
+Eta Ohmic : 0.08046123238306942 V
+FC Efficiency : 0.3466954482180013
+FC Power : 104.6534879990859 W
+FC Voltage : 2.7042244961004105 V
+Loss : 0.6727185389025394 V
+PH2 : 0.19174729502964802 atm
+PH2O : 0.2360078335658747 atm
+PO2 : 0.18756429309375236 atm
+Power-Thermal : 133.35151200091414 W
+###########
+I :38.8 A
+
+E : 6.06781562793935 V
+Eta Activation : 0.5810205992959795 V
+Eta Concentration : 0.011452795436611114 V
+Eta Ohmic : 0.08071743478332005 V
+FC Efficiency : 0.34639249748202516
+FC Power : 104.83222543796009 W
+FC Voltage : 2.7018614803597965 V
+Loss : 0.6731908295159107 V
+PH2 : 0.19173324464803362 atm
+PH2O : 0.23599053997054617 atm
+PO2 : 0.18755636025555408 atm
+Power-Thermal : 133.7877745620399 W
+###########
+I :38.9 A
+
+E : 6.067814065199498 V
+Eta Activation : 0.5811931792349198 V
+Eta Concentration : 0.011495980348117756 V
+Eta Ohmic : 0.08097399226350252 V
+FC Efficiency : 0.34608952640599966
+FC Power : 105.01048410210842 W
+FC Voltage : 2.6994983059667974 V
+Loss : 0.67366315184654 V
+PH2 : 0.19171919426641923 atm
+PH2O : 0.23597324637521763 atm
+PO2 : 0.18754842741735575 atm
+Power-Thermal : 134.2245158978916 W
+###########
+I :39.0 A
+
+E : 6.067812502393543 V
+Eta Activation : 0.5813653218242886 V
+Eta Concentration : 0.011539282133681645 V
+Eta Ohmic : 0.08123090583678579 V
+FC Efficiency : 0.34578653248971314
+FC Power : 105.18826318337075 W
+FC Voltage : 2.697134953419763 V
+Loss : 0.674135509794756 V
+PH2 : 0.1917051438848048 atm
+PH2O : 0.23595595277988904 atm
+PO2 : 0.18754049457915747 atm
+Power-Thermal : 134.66173681662926 W
+###########
+I :39.1 A
+
+E : 6.067810939521481 V
+Eta Activation : 0.5815370293046954 V
+Eta Concentration : 0.011582701427627184 V
+Eta Ohmic : 0.08148817651843553 V
+FC Efficiency : 0.3454835132394474
+FC Power : 105.36556186776669 W
+FC Voltage : 2.69477140326769 V
+Loss : 0.6746079072507581 V
+PH2 : 0.1916910935031904 atm
+PH2O : 0.2359386591845605 atm
+PO2 : 0.18753256174095914 atm
+Power-Thermal : 135.09943813223333 W
+###########
+I :39.2 A
+
+E : 6.067809376583306 V
+Eta Activation : 0.5817083038995823 V
+Eta Concentration : 0.011626238869456957 V
+Eta Ohmic : 0.08174580532581624 V
+FC Efficiency : 0.3451804661678242
+FC Power : 105.54237933547395 W
+FC Voltage : 2.6924076361090292 V
+Loss : 0.6750803480948554 V
+PH2 : 0.19167704312157605 atm
+PH2O : 0.23592136558923196 atm
+PO2 : 0.18752462890276086 atm
+Power-Thermal : 135.5376206645261 W
+###########
+I :39.3 A
+
+E : 6.067807813579014 V
+Eta Activation : 0.5818791478153953 V
+Eta Concentration : 0.01166989510390822 V
+Eta Ohmic : 0.0820037932783932 V
+FC Efficiency : 0.34487738879365776
+FC Power : 105.71871476080784 W
+FC Voltage : 2.6900436325905304 V
+Loss : 0.6755528361976968 V
+PH2 : 0.19166299273996165 atm
+PH2O : 0.23590407199390342 atm
+PO2 : 0.18751669606456253 atm
+Power-Thermal : 135.97628523919215 W
+###########
+I :39.4 A
+
+E : 6.067806250508597 V
+Eta Activation : 0.5820495632417596 V
+Eta Concentration : 0.011713670781010214 V
+Eta Ohmic : 0.08226214139773438 V
+FC Efficiency : 0.34457427864180457
+FC Power : 105.89456731219938 W
+FC Voltage : 2.687679373406076 V
+Loss : 0.6760253754205042 V
+PH2 : 0.19164894235834726 atm
+PH2O : 0.2358867783985749 atm
+PO2 : 0.18750876322636426 atm
+Power-Thermal : 136.4154326878006 W
+###########
+I :39.5 A
+
+E : 6.0678046873720515 V
+Eta Activation : 0.5822195523516496 V
+Eta Concentration : 0.011757566556142227 V
+Eta Ohmic : 0.08252085070751242 V
+FC Efficiency : 0.3442711332430167
+FC Power : 106.06993615217347 W
+FC Voltage : 2.685314839295531 V
+Loss : 0.6764979696153042 V
+PH2 : 0.1916348919767329 atm
+PH2O : 0.23586948480324632 atm
+PO2 : 0.18750083038816592 atm
+Power-Thermal : 136.85506384782656 W
+###########
+I :39.6 A
+
+E : 6.067803124169371 V
+Eta Activation : 0.5823891173015561 V
+Eta Concentration : 0.011801583090092466 V
+Eta Ohmic : 0.08277992223350662 V
+FC Efficiency : 0.3439679501337943
+FC Power : 106.24482043732638 W
+FC Voltage : 2.6829500110435953 V
+Loss : 0.6769706226251552 V
+PH2 : 0.1916208415951185 atm
+PH2O : 0.23585219120791778 atm
+PO2 : 0.18749289754996765 atm
+Power-Thermal : 137.29517956267364 W
+###########
+I :39.7 A
+
+E : 6.06780156090055 V
+Eta Activation : 0.5825582602316545 V
+Eta Concentration : 0.011845721049117745 V
+Eta Ohmic : 0.0830393570036049 V
+FC Efficiency : 0.34366472685623906
+FC Power : 106.41921931830299 W
+FC Voltage : 2.6805848694786647 V
+Loss : 0.6774433382843771 V
+PH2 : 0.1916067912135041 atm
+PH2O : 0.23583489761258924 atm
+PO2 : 0.18748496471176931 atm
+Power-Thermal : 137.73578068169704 W
+###########
+I :39.8 A
+
+E : 6.067799997565583 V
+Eta Activation : 0.5827269832659672 V
+Eta Concentration : 0.011889981105003982 V
+Eta Ohmic : 0.08329915604780586 V
+FC Efficiency : 0.34336146095791004
+FC Power : 106.59313193977358 W
+FC Voltage : 2.6782193954716984 V
+Loss : 0.6779161204187769 V
+PH2 : 0.19159274083188974 atm
+PH2O : 0.2358176040172607 atm
+PO2 : 0.18747703187357104 atm
+Power-Thermal : 138.1768680602264 W
+###########
+I :39.9 A
+
+E : 6.067798434164463 V
+Eta Activation : 0.5828952885125276 V
+Eta Concentration : 0.011934363935127588 V
+Eta Ohmic : 0.08355932039822074 V
+FC Efficiency : 0.34305814999167733
+FC Power : 106.76655744040983 W
+FC Voltage : 2.6758535699350836 V
+Loss : 0.678388972845876 V
+PH2 : 0.19157869045027534 atm
+PH2O : 0.23580031042193217 atm
+PO2 : 0.1874690990353727 atm
+Power-Thermal : 138.61844255959016 W
+###########
+I :40.0 A
+
+E : 6.067796870697187 V
+Eta Activation : 0.583063178063538 V
+Eta Concentration : 0.011978870222517618 V
+Eta Ohmic : 0.08381985108907541 V
+FC Efficiency : 0.34275479151558086
+FC Power : 106.93949495286125 W
+FC Voltage : 2.6734873738215312 V
+Loss : 0.6788618993751311 V
+PH2 : 0.19156464006866095 atm
+PH2O : 0.23578301682660363 atm
+PO2 : 0.1874611661971744 atm
+Power-Thermal : 139.06050504713878 W
+###########
+I :40.1 A
+
+E : 6.067795307163745 V
+Eta Activation : 0.5832306539955296 V
+Eta Concentration : 0.012023500655918874 V
+Eta Ohmic : 0.0840807491567124 V
+FC Efficiency : 0.34245138309268475
+FC Power : 107.11194360372996 W
+FC Voltage : 2.6711207881229413 V
+Loss : 0.6793349038081609 V
+PH2 : 0.19155058968704655 atm
+PH2O : 0.2357657232312751 atm
+PO2 : 0.18745323335897612 atm
+Power-Thermal : 139.50305639627007 W
+###########
+I :40.2 A
+
+E : 6.067793743564138 V
+Eta Activation : 0.5833977183695181 V
+Eta Concentration : 0.012068255929855855 V
+Eta Ohmic : 0.08434201563959304 V
+FC Efficiency : 0.3421479222909363
+FC Power : 107.283902513546 W
+FC Voltage : 2.6687537938693033 V
+Loss : 0.679807989938967 V
+PH2 : 0.19153653930543219 atm
+PH2O : 0.23574842963594655 atm
+PO2 : 0.1874453005207778 atm
+Power-Thermal : 139.94609748645402 W
+###########
+I :40.3 A
+
+E : 6.067792179898355 V
+Eta Activation : 0.5835643732311564 V
+Eta Concentration : 0.012113136744697592 V
+Eta Ohmic : 0.08460365157829931 V
+FC Efficiency : 0.3418444066830241
+FC Power : 107.4553707967418 W
+FC Voltage : 2.6663863721275884 V
+Loss : 0.6802811615541533 V
+PH2 : 0.1915224889238178 atm
+PH2O : 0.23573113604061802 atm
+PO2 : 0.18743736768257951 atm
+Power-Thermal : 140.38962920325818 W
+###########
+I :40.4 A
+
+E : 6.067790616166393 V
+Eta Activation : 0.5837306206108893 V
+Eta Concentration : 0.012158143806723426 V
+Eta Ohmic : 0.08486565801553601 V
+FC Efficiency : 0.34154083384623707
+FC Power : 107.62634756162622 W
+FC Voltage : 2.664018504000649 V
+Loss : 0.6807544224331488 V
+PH2 : 0.1915084385422034 atm
+PH2O : 0.23571384244528945 atm
+PO2 : 0.18742943484438118 atm
+Power-Thermal : 140.83365243837378 W
+###########
+I :40.5 A
+
+E : 6.067789052368245 V
+Eta Activation : 0.5838964625241029 V
+Eta Concentration : 0.012203277828189684 V
+Eta Ohmic : 0.08512803599613274 V
+FC Efficiency : 0.34123720136232294
+FC Power : 107.79683191035781 W
+FC Voltage : 2.661650170626119 V
+Loss : 0.6812277763484252 V
+PH2 : 0.19149438816058903 atm
+PH2O : 0.2356965488499609 atm
+PO2 : 0.1874215020061829 atm
+Power-Thermal : 141.2781680896422 W
+###########
+I :40.6 A
+
+E : 6.067787488503907 V
+Eta Activation : 0.5840619009712722 V
+Eta Concentration : 0.01224853952739733 V
+Eta Ohmic : 0.08539078656704598 V
+FC Efficiency : 0.34093350681734985
+FC Power : 107.96682293891836 W
+FC Voltage : 2.659281353175329 V
+Loss : 0.6817012270657156 V
+PH2 : 0.19148033777897464 atm
+PH2O : 0.23567925525463237 atm
+PO2 : 0.18741356916798457 atm
+Power-Thermal : 141.72317706108166 W
+###########
+I :40.7 A
+
+E : 6.06778592457337 V
+Eta Activation : 0.5842269379381092 V
+Eta Concentration : 0.012293929628760527 V
+Eta Ohmic : 0.0856539107773612 V
+FC Efficiency : 0.340629747801566
+FC Power : 108.13631973708517 W
+FC Voltage : 2.6569120328522153 V
+Loss : 0.6821747783442309 V
+PH2 : 0.1914662873973602 atm
+PH2O : 0.2356619616593038 atm
+PO2 : 0.1874056363297863 atm
+Power-Thermal : 142.16868026291485 W
+###########
+I :40.8 A
+
+E : 6.067784360576632 V
+Eta Activation : 0.5843915753957073 V
+Eta Concentration : 0.012339448862876223 V
+Eta Ohmic : 0.08591740967829486 V
+FC Efficiency : 0.3403259219092616
+FC Power : 108.3053213884034 W
+FC Voltage : 2.6545421908922404 V
+Loss : 0.6826484339368784 V
+PH2 : 0.19145223701574582 atm
+PH2O : 0.23564466806397524 atm
+PO2 : 0.18739770349158796 atm
+Power-Thermal : 142.6146786115966 W
+###########
+I :40.9 A
+
+E : 6.067782796513688 V
+Eta Activation : 0.5845558153006835 V
+Eta Concentration : 0.012385097966594727 V
+Eta Ohmic : 0.08618128432319669 V
+FC Efficiency : 0.34002202673862997
+FC Power : 108.47382697015773 W
+FC Voltage : 2.652171808561314 V
+Loss : 0.6831221975904749 V
+PH2 : 0.19143818663413142 atm
+PH2O : 0.2356273744686467 atm
+PO2 : 0.1873897706533897 atm
+Power-Thermal : 143.06117302984228 W
+###########
+I :41.0 A
+
+E : 6.067781232384528 V
+Eta Activation : 0.5847196595953221 V
+Eta Concentration : 0.012430877683091245 V
+Eta Ohmic : 0.08644553576755132 V
+FC Efficiency : 0.33971805989162873
+FC Power : 108.64183555334289 W
+FC Voltage : 2.6498008671547044 V
+Loss : 0.6835960730459647 V
+PH2 : 0.19142413625251706 atm
+PH2O : 0.23561008087331817 atm
+PO2 : 0.18738183781519135 atm
+Power-Thermal : 143.50816444665713 W
+###########
+I :41.1 A
+
+E : 6.06777966818915 V
+Eta Activation : 0.5848831102077119 V
+Eta Concentration : 0.012476788761938489 V
+Eta Ohmic : 0.08671016506898095 V
+FC Efficiency : 0.33941401897384527
+FC Power : 108.80934620263533 W
+FC Voltage : 2.647429347995993 V
+Loss : 0.6840700640386314 V
+PH2 : 0.19141008587090266 atm
+PH2O : 0.23559278727798963 atm
+PO2 : 0.18737390497699308 atm
+Power-Thermal : 143.9556537973647 W
+###########
+I :41.2 A
+
+E : 6.067778103927547 V
+Eta Activation : 0.5850461690518854 V
+Eta Concentration : 0.012522831959180334 V
+Eta Ohmic : 0.08697517328724702 V
+FC Efficiency : 0.3391099015943568
+FC Power : 108.97635797636251 W
+FC Voltage : 2.645057232435983 V
+Loss : 0.6845441742983128 V
+PH2 : 0.19139603548928827 atm
+PH2O : 0.2355754936826611 atm
+PO2 : 0.18736597213879475 atm
+Power-Thermal : 144.40364202363753 W
+###########
+I :41.3 A
+
+E : 6.0677765395997145 V
+Eta Activation : 0.5852088380279556 V
+Eta Concentration : 0.01256900803740649 V
+Eta Ohmic : 0.08724056148425256 V
+FC Efficiency : 0.338805705365595
+FC Power : 109.14286992647277 W
+FC Voltage : 2.642684501851641 V
+Loss : 0.6850184075496146 V
+PH2 : 0.1913819851076739 atm
+PH2O : 0.23555820008733255 atm
+PO2 : 0.18735803930059647 atm
+Power-Thermal : 144.85213007352723 W
+###########
+I :41.4 A
+
+E : 6.067774975205645 V
+Eta Activation : 0.5853711190222493 V
+Eta Concentration : 0.012615317765828322 V
+Eta Ohmic : 0.08750633072404417 V
+FC Efficiency : 0.33850142790320975
+FC Power : 109.3088810985045 W
+FC Voltage : 2.6403111376450363 V
+Loss : 0.6854927675121217 V
+PH2 : 0.1913679347260595 atm
+PH2O : 0.23554090649200402 atm
+PO2 : 0.18735010646239814 atm
+Power-Thermal : 145.3011189014955 W
+###########
+I :41.5 A
+
+E : 6.067773410745335 V
+Eta Activation : 0.5855330139074413 V
+Eta Concentration : 0.012661761920355704 V
+Eta Ohmic : 0.08777248207281428 V
+FC Efficiency : 0.3381970668259332
+FC Power : 109.47439053155458 W
+FC Voltage : 2.637937121242279 V
+Loss : 0.6859672579006113 V
+PH2 : 0.1913538843444451 atm
+PH2O : 0.23552361289667548 atm
+PO2 : 0.18734217362419986 atm
+Power-Thermal : 145.75060946844545 W
+###########
+I :41.6 A
+
+E : 6.067771846218778 V
+Eta Activation : 0.5856945245426847 V
+Eta Concentration : 0.01270834128367504 V
+Eta Ohmic : 0.08803901659890316 V
+FC Efficiency : 0.33789261975544405
+FC Power : 109.6393972582465 W
+FC Voltage : 2.635562434092464 V
+Loss : 0.6864418824252628 V
+PH2 : 0.19133983396283075 atm
+PH2O : 0.23550631930134694 atm
+PO2 : 0.18733424078600155 atm
+Power-Thermal : 146.20060274175353 W
+###########
+I :41.7 A
+
+E : 6.067770281625968 V
+Eta Activation : 0.5858556527737425 V
+Eta Concentration : 0.012755056645328399 V
+Eta Ohmic : 0.08830593537280115 V
+FC Efficiency : 0.3375880843162318
+FC Power : 109.80390030469755 W
+FC Voltage : 2.633187057666608 V
+Loss : 0.6869166447918721 V
+PH2 : 0.19132578358121635 atm
+PH2O : 0.23548902570601837 atm
+PO2 : 0.18732630794780322 atm
+Power-Thermal : 146.65109969530246 W
+###########
+I :41.8 A
+
+E : 6.067768716966899 V
+Eta Activation : 0.5860164004331136 V
+Eta Concentration : 0.012801908801793806 V
+Eta Ohmic : 0.08857323946715073 V
+FC Efficiency : 0.33728345813546257
+FC Power : 109.96789869048621 W
+FC Voltage : 2.630810973456608 V
+Loss : 0.6873915487020582 V
+PH2 : 0.19131173319960196 atm
+PH2O : 0.23547173211068984 atm
+PO2 : 0.18731837510960495 atm
+Power-Thermal : 147.10210130951378 W
+###########
+I :41.9 A
+
+E : 6.067767152241567 V
+Eta Activation : 0.5861767693401617 V
+Eta Concentration : 0.012848898556566764 V
+Eta Ohmic : 0.08884092995674878 V
+FC Efficiency : 0.33697873884284363
+FC Power : 110.13139142861814 W
+FC Voltage : 2.6284341629741803 V
+Loss : 0.6878665978534773 V
+PH2 : 0.19129768281798756 atm
+PH2O : 0.2354544385153613 atm
+PO2 : 0.1873104422714066 atm
+Power-Thermal : 147.55360857138186 W
+###########
+I :42.0 A
+
+E : 6.067765587449965 V
+Eta Activation : 0.5863367613012397 V
+Eta Concentration : 0.012896026720242875 V
+Eta Ohmic : 0.08910900791854869 V
+FC Efficiency : 0.3366739240704882
+FC Power : 110.29437752549194 W
+FC Voltage : 2.626056607749808 V
+Loss : 0.6883417959400313 V
+PH2 : 0.1912836324363732 atm
+PH2O : 0.23543714492003276 atm
+PO2 : 0.18730250943320834 atm
+Power-Thermal : 148.00562247450807 W
+###########
+I :42.1 A
+
+E : 6.067764022592089 V
+Eta Activation : 0.5864963781098125 V
+Eta Concentration : 0.012943294110601779 V
+Eta Ohmic : 0.08937747443166248 V
+FC Efficiency : 0.33636901145278275
+FC Power : 110.45685598086479 W
+FC Voltage : 2.623678289331705 V
+Loss : 0.6888171466520767 V
+PH2 : 0.1912695820547588 atm
+PH2O : 0.23541985132470422 atm
+PO2 : 0.18729457659501 atm
+Power-Thermal : 148.45814401913523 W
+###########
+I :42.2 A
+
+E : 6.06776245766793 V
+Eta Activation : 0.5866556215465811 V
+Eta Concentration : 0.012990701552692293 V
+Eta Ohmic : 0.08964633057736307 V
+FC Efficiency : 0.3360639986262497
+FC Power : 110.61882578781638 W
+FC Voltage : 2.621299189284748 V
+Loss : 0.6892926536766365 V
+PH2 : 0.1912555316731444 atm
+PH2O : 0.23540255772937568 atm
+PO2 : 0.18728664375681173 atm
+Power-Thermal : 148.91117421218365 W
+###########
+I :42.3 A
+
+E : 6.067760892677486 V
+Eta Activation : 0.586814493379602 V
+Eta Concentration : 0.013038249878918813 V
+Eta Ohmic : 0.08991557743908644 V
+FC Efficiency : 0.3357588832294167
+FC Power : 110.78028593271375 W
+FC Voltage : 2.6189192891894506 V
+Loss : 0.6897683206976072 V
+PH2 : 0.19124148129153004 atm
+PH2O : 0.23538526413404715 atm
+PO2 : 0.1872787109186134 atm
+Power-Thermal : 149.36471406728626 W
+###########
+I :42.4 A
+
+E : 6.06775932762075 V
+Eta Activation : 0.586972995364408 V
+Eta Concentration : 0.013085939929129015 V
+Eta Ohmic : 0.09018521610243381 V
+FC Efficiency : 0.335453662902679
+FC Power : 110.94123539517399 W
+FC Voltage : 2.616538570640896 V
+Loss : 0.6902441513959707 V
+PH2 : 0.19122743090991565 atm
+PH2O : 0.2353679705387186 atm
+PO2 : 0.18727077808041512 atm
+Power-Thermal : 149.81876460482601 W
+###########
+I :42.5 A
+
+E : 6.067757762497717 V
+Eta Activation : 0.5871311292441241 V
+Eta Concentration : 0.013133772550702869 V
+Eta Ohmic : 0.09045524765517388 V
+FC Efficiency : 0.33514833528816823
+FC Power : 111.10167314802776 W
+FC Voltage : 2.614157015247712 V
+Loss : 0.6907201494500009 V
+PH2 : 0.19121338052830122 atm
+PH2O : 0.23535067694339 atm
+PO2 : 0.18726284524221679 atm
+Power-Thermal : 150.27332685197226 W
+###########
+I :42.6 A
+
+E : 6.06775619730838 V
+Eta Activation : 0.5872888967495868 V
+Eta Concentration : 0.013181748598642977 V
+Eta Ohmic : 0.09072567318724496 V
+FC Efficiency : 0.33484289802961603
+FC Power : 111.26159815728083 W
+FC Voltage : 2.6117746046310053 V
+Loss : 0.6911963185354748 V
+PH2 : 0.19119933014668683 atm
+PH2O : 0.23533338334806148 atm
+PO2 : 0.1872549124040185 atm
+Power-Thermal : 150.7284018427192 W
+###########
+I :42.7 A
+
+E : 6.0677546320527345 V
+Eta Activation : 0.587446299599457 V
+Eta Concentration : 0.013229868935666264 V
+Eta Ohmic : 0.0909964937907573 V
+FC Efficiency : 0.3345373487722219
+FC Power : 111.42100938207624 W
+FC Voltage : 2.609391320423331 V
+Loss : 0.6916726623258806 V
+PH2 : 0.19118527976507244 atm
+PH2O : 0.23531608975273294 atm
+PO2 : 0.18724697956582018 atm
+Power-Thermal : 151.1839906179238 W
+###########
+I :42.8 A
+
+E : 6.0677530667307735 V
+Eta Activation : 0.5876033395003353 V
+Eta Concentration : 0.013278134432297068 V
+Eta Ohmic : 0.09126771055999519 V
+FC Efficiency : 0.3342316851625174
+FC Power : 111.5799057746548 W
+FC Voltage : 2.607007144267636 V
+Loss : 0.6921491844926275 V
+PH2 : 0.19117122938345807 atm
+PH2O : 0.2352987961574044 atm
+PO2 : 0.1872390467276219 atm
+Power-Thermal : 151.6400942253452 W
+###########
+I :42.9 A
+
+E : 6.067751501342493 V
+Eta Activation : 0.5877600181468742 V
+Eta Concentration : 0.013326545966961662 V
+Eta Ohmic : 0.09153932459141939 V
+FC Efficiency : 0.3339259048482329
+FC Power : 111.73828628031569 W
+FC Voltage : 2.6046220578162167 V
+Loss : 0.6926258887052553 V
+PH2 : 0.19115717900184367 atm
+PH2O : 0.23528150256207586 atm
+PO2 : 0.18723111388942357 atm
+Power-Thermal : 152.09671371968432 W
+###########
+I :43.0 A
+
+E : 6.067749935887887 V
+Eta Activation : 0.5879163372218895 V
+Eta Concentration : 0.01337510442608413 V
+Eta Ohmic : 0.09181133698366914 V
+FC Efficiency : 0.3336200054781632
+FC Power : 111.89614983737594 W
+FC Voltage : 2.602236042729673 V
+Loss : 0.6931027786316428 V
+PH2 : 0.19114312862022928 atm
+PH2O : 0.2352642089667473 atm
+PO2 : 0.1872231810512253 atm
+Power-Thermal : 152.55385016262406 W
+###########
+I :43.1 A
+
+E : 6.0677483703669495 V
+Eta Activation : 0.5880722983964697 V
+Eta Concentration : 0.013423810704183779 V
+Eta Ohmic : 0.09208374883756448 V
+FC Efficiency : 0.3333139847020333
+FC Power : 112.05349537712955 W
+FC Voltage : 2.5998490806758596 V
+Loss : 0.693579857938218 V
+PH2 : 0.1911290782386149 atm
+PH2O : 0.23524691537141876 atm
+PO2 : 0.18721524821302696 atm
+Power-Thermal : 153.01150462287046 W
+###########
+I :43.2 A
+
+E : 6.067746804779675 V
+Eta Activation : 0.5882279033300857 V
+Eta Concentration : 0.013472665703974027 V
+Eta Ohmic : 0.0923565612561087 V
+FC Efficiency : 0.3330078401703633
+FC Power : 112.21032182380561 W
+FC Voltage : 2.5974611533288336 V
+Loss : 0.6940571302901684 V
+PH2 : 0.19111502785700052 atm
+PH2O : 0.23522962177609022 atm
+PO2 : 0.18720731537482868 atm
+Power-Thermal : 153.4696781761944 W
+###########
+I :43.3 A
+
+E : 6.067745239126059 V
+Eta Activation : 0.5883831536706975 V
+Eta Concentration : 0.013521670336462756 V
+Eta Ohmic : 0.0926297753444903 V
+FC Efficiency : 0.3327015695343341
+FC Power : 112.36662809452599 W
+FC Voltage : 2.595072242367806 V
+Loss : 0.6945345993516506 V
+PH2 : 0.19110097747538612 atm
+PH2O : 0.23521232818076168 atm
+PO2 : 0.18719938253663038 atm
+Power-Thermal : 153.92837190547402 W
+###########
+I :43.4 A
+
+E : 6.067743673406093 V
+Eta Activation : 0.5885380510548603 V
+Eta Concentration : 0.013570825521054278 V
+Eta Ohmic : 0.09290339221008548 V
+FC Efficiency : 0.33239517044565287
+FC Power : 112.52241309926241 W
+FC Voltage : 2.5926823294760926 V
+Loss : 0.6950122687860001 V
+PH2 : 0.19108692709377176 atm
+PH2O : 0.23519503458543314 atm
+PO2 : 0.18719144969843204 atm
+Power-Thermal : 154.3875869007376 W
+###########
+I :43.5 A
+
+E : 6.067742107619774 V
+Eta Activation : 0.5886925971078305 V
+Eta Concentration : 0.013620132185652806 V
+Eta Ohmic : 0.09317741296246035 V
+FC Efficiency : 0.3320886405564175
+FC Power : 112.67767574079245 W
+FC Voltage : 2.5902913963400565 V
+Loss : 0.6954901422559436 V
+PH2 : 0.19107287671215736 atm
+PH2O : 0.2351777409901046 atm
+PO2 : 0.18718351686023377 atm
+Power-Thermal : 154.84732425920757 W
+###########
+I :43.6 A
+
+E : 6.067740541767096 V
+Eta Activation : 0.5888467934436681 V
+Eta Concentration : 0.013669591266767573 V
+Eta Ohmic : 0.09345183871337318 V
+FC Efficiency : 0.331781977518981
+FC Power : 112.83241491465505 W
+FC Voltage : 2.5878994246480516 V
+Loss : 0.6959682234238088 V
+PH2 : 0.19105882633054297 atm
+PH2O : 0.23516044739477607 atm
+PO2 : 0.18717558402203543 atm
+Power-Thermal : 155.30758508534498 W
+###########
+I :43.7 A
+
+E : 6.067738975848052 V
+Eta Activation : 0.5890006416653404 V
+Eta Concentration : 0.013719203709619548 V
+Eta Ohmic : 0.09372667057677674 V
+FC Efficiency : 0.3314751789858165
+FC Power : 112.98662950910543 W
+FC Voltage : 2.585506396089369 V
+Loss : 0.6964465159517367 V
+PH2 : 0.19104477594892857 atm
+PH2O : 0.23514315379944753 atm
+PO2 : 0.18716765118383716 atm
+Power-Thermal : 155.7683704908946 W
+###########
+I :43.8 A
+
+E : 6.067737409862639 V
+Eta Activation : 0.5891541433648227 V
+Eta Concentration : 0.013768970468249821 V
+Eta Ohmic : 0.0940019096688206 V
+FC Efficiency : 0.3311682426093811
+FC Power : 113.14031840506897 W
+FC Voltage : 2.583112292353173 V
+Loss : 0.6969250235018932 V
+PH2 : 0.1910307255673142 atm
+PH2O : 0.235125860204119 atm
+PO2 : 0.18715971834563883 atm
+Power-Thermal : 156.22968159493104 W
+###########
+I :43.9 A
+
+E : 6.067735843810849 V
+Eta Activation : 0.5893073001231994 V
+Eta Concentration : 0.013818892505629721 V
+Eta Ohmic : 0.09427755710785347 V
+FC Efficiency : 0.3308611660419789
+FC Power : 113.29348047609442 W
+FC Voltage : 2.5807170951274356 V
+Loss : 0.6974037497366826 V
+PH2 : 0.1910166751856998 atm
+PH2O : 0.23510856660879045 atm
+PO2 : 0.18715178550744055 atm
+Power-Thermal : 156.69151952390558 W
+###########
+I :44.0 A
+
+E : 6.067734277692676 V
+Eta Activation : 0.5894601135107622 V
+Eta Concentration : 0.013868970793772566 V
+Eta Ohmic : 0.09455361401442544 V
+FC Efficiency : 0.3305539469356249
+FC Power : 113.44611458830647 W
+FC Voltage : 2.5783207860978745 V
+Loss : 0.6978826983189602 V
+PH2 : 0.19100262480408542 atm
+PH2O : 0.2350912730134619 atm
+PO2 : 0.18714385266924222 atm
+Power-Thermal : 157.15388541169352 W
+###########
+I :44.1 A
+
+E : 6.067732711508116 V
+Eta Activation : 0.5896125850871088 V
+Eta Concentration : 0.013919206313847248 V
+Eta Ohmic : 0.09483008151129034 V
+FC Efficiency : 0.3302465829419082
+FC Power : 113.5982196003576 W
+FC Voltage : 2.575923346946884 V
+Loss : 0.6983618729122464 V
+PH2 : 0.19098857442247105 atm
+PH2O : 0.23507397941813335 atm
+PO2 : 0.18713591983104394 atm
+Power-Thermal : 157.61678039964244 W
+###########
+I :44.2 A
+
+E : 6.067731145257163 V
+Eta Activation : 0.589764716401239 V
+Eta Concentration : 0.01396960005629359 V
+Eta Ohmic : 0.09510696072340805 V
+FC Efficiency : 0.3299390717118538
+FC Power : 113.74979436337874 W
+FC Voltage : 2.57352475935246 V
+Loss : 0.6988412771809406 V
+PH2 : 0.19097452404085663 atm
+PH2O : 0.23505668582280478 atm
+PO2 : 0.1871279869928456 atm
+Power-Thermal : 158.0802056366213 W
+###########
+I :44.3 A
+
+E : 6.067729578939812 V
+Eta Activation : 0.5899165089916515 V
+Eta Concentration : 0.014020153020939485 V
+Eta Ohmic : 0.09538425277794696 V
+FC Efficiency : 0.3296314108957849
+FC Power : 113.9008377209295 W
+FC Voltage : 2.571125004987122 V
+Loss : 0.6993209147905379 V
+PH2 : 0.19096047365924224 atm
+PH2O : 0.23503939222747622 atm
+PO2 : 0.18712005415464733 atm
+Power-Thermal : 158.5441622790705 W
+###########
+I :44.4 A
+
+E : 6.067728012556055 V
+Eta Activation : 0.5900679643864376 V
+Eta Concentration : 0.014070866217119948 V
+Eta Ohmic : 0.09566195880428616 V
+FC Efficiency : 0.3293235981431841
+FC Power : 114.05134850894751 W
+FC Voltage : 2.568724065516836 V
+Loss : 0.6998007894078437 V
+PH2 : 0.19094642327762784 atm
+PH2O : 0.23502209863214768 atm
+PO2 : 0.187112121316449 atm
+Power-Thermal : 159.0086514910525 W
+###########
+I :44.5 A
+
+E : 6.067726446105888 V
+Eta Activation : 0.5902190841033761 V
+Eta Concentration : 0.014121740663798026 V
+Eta Ohmic : 0.09594007993401786 V
+FC Efficiency : 0.32901563110255483
+FC Power : 114.20132555569678 W
+FC Voltage : 2.566321922599928 V
+Loss : 0.700280904701192 V
+PH2 : 0.19093237289601345 atm
+PH2O : 0.23500480503681914 atm
+PO2 : 0.18710418847825072 atm
+Power-Thermal : 159.4736744443032 W
+###########
+I :44.6 A
+
+E : 6.0677248795893055 V
+Eta Activation : 0.5903698696500248 V
+Eta Concentration : 0.014172777389687627 V
+Eta Ohmic : 0.09621861730094972 V
+FC Efficiency : 0.32870750742128135
+FC Power : 114.35076768171538 W
+FC Voltage : 2.563918557885995 V
+Loss : 0.7007612643406621 V
+PH2 : 0.19091832251439908 atm
+PH2O : 0.2349875114414906 atm
+PO2 : 0.1870962556400524 atm
+Power-Thermal : 159.93923231828464 W
+###########
+I :44.7 A
+
+E : 6.067723313006303 V
+Eta Activation : 0.5905203225238118 V
+Eta Concentration : 0.014223977433378363 V
+Eta Ohmic : 0.0964975720411074 V
+FC Efficiency : 0.32839922474548905
+FC Power : 114.49967369976223 W
+FC Voltage : 2.5615139530148148 V
+Loss : 0.7012418719982976 V
+PH2 : 0.19090427213278469 atm
+PH2O : 0.23497021784616207 atm
+PO2 : 0.1870883228018541 atm
+Power-Thermal : 160.40532630023782 W
+###########
+I :44.8 A
+
+E : 6.067721746356872 V
+Eta Activation : 0.5906704442121278 V
+Eta Concentration : 0.014275341843462328 V
+Eta Ohmic : 0.09677694529273649 V
+FC Efficiency : 0.3280907807199024
+FC Power : 114.6480424147627 W
+FC Voltage : 2.559108089615239 V
+Loss : 0.7017227313483266 V
+PH2 : 0.1908902217511703 atm
+PH2O : 0.23495292425083353 atm
+PO2 : 0.18708038996365578 atm
+Power-Thermal : 160.8719575852373 W
+###########
+I :44.9 A
+
+E : 6.067720179641008 V
+Eta Activation : 0.5908202361924135 V
+Eta Concentration : 0.014326871678663006 V
+Eta Ohmic : 0.09705673819630557 V
+FC Efficiency : 0.32778217298770485
+FC Power : 114.79587262375398 W
+FC Voltage : 2.5567009493040977 V
+Loss : 0.7022038460673821 V
+PH2 : 0.19087617136955592 atm
+PH2O : 0.234935630655505 atm
+PO2 : 0.1870724571254575 atm
+Power-Thermal : 161.339127376246 W
+###########
+I :45.0 A
+
+E : 6.067718612858708 V
+Eta Activation : 0.59096969993225 V
+Eta Concentration : 0.014378568007966152 V
+Eta Ohmic : 0.09733695189450792 V
+FC Efficiency : 0.32747339919039586
+FC Power : 114.94316311582894 W
+FC Voltage : 2.5542925136850876 V
+Loss : 0.7026852198347241 V
+PH2 : 0.19086212098794153 atm
+PH2O : 0.23491833706017645 atm
+PO2 : 0.1870645242872592 atm
+Power-Thermal : 161.80683688417108 W
+###########
+I :45.1 A
+
+E : 6.067717046009962 V
+Eta Activation : 0.5911188368894447 V
+Eta Concentration : 0.014430431910752887 V
+Eta Ohmic : 0.09761758753226446 V
+FC Efficiency : 0.3271644569676477
+FC Power : 115.0899126720791 W
+FC Voltage : 2.551882764347652 V
+Loss : 0.703166856332462 V
+PH2 : 0.19084807060632714 atm
+PH2O : 0.23490104346484791 atm
+PO2 : 0.18705659144906087 atm
+Power-Thermal : 162.27508732792091 W
+###########
+I :45.2 A
+
+E : 6.067715479094767 V
+Eta Activation : 0.5912676485121191 V
+Eta Concentration : 0.014482464476934926 V
+Eta Ohmic : 0.09789864625672573 V
+FC Efficiency : 0.3268553439571626
+FC Power : 115.23612006553725 W
+FC Voltage : 2.5494716828658683 V
+Loss : 0.7036487592457797 V
+PH2 : 0.19083402022471277 atm
+PH2O : 0.23488374986951938 atm
+PO2 : 0.1870486586108626 atm
+Power-Thermal : 162.74387993446277 W
+###########
+I :45.3 A
+
+E : 6.067713912113117 V
+Eta Activation : 0.591416136238794 V
+Eta Concentration : 0.014534666807091987 V
+Eta Ohmic : 0.09818012921727455 V
+FC Efficiency : 0.32654605779452744
+FC Power : 115.38178406111831 W
+FC Voltage : 2.547059250797314 V
+Loss : 0.7041309322631606 V
+PH2 : 0.19081996984309837 atm
+PH2O : 0.2348664562741908 atm
+PO2 : 0.18704072577266426 atm
+Power-Thermal : 163.2132159388817 W
+###########
+I :45.4 A
+
+E : 6.067712345065007 V
+Eta Activation : 0.591564301498474 V
+Eta Concentration : 0.01458704001261149 V
+Eta Ohmic : 0.09846203756552849 V
+FC Efficiency : 0.3262365961130688
+FC Power : 115.52690341555994 W
+FC Voltage : 2.544645449681937 V
+Loss : 0.704613379076614 V
+PH2 : 0.19080591946148398 atm
+PH2O : 0.23484916267886227 atm
+PO2 : 0.18703279293446598 atm
+Power-Thermal : 163.68309658444008 W
+###########
+I :45.5 A
+
+E : 6.067710777950429 V
+Eta Activation : 0.591712145710731 V
+Eta Concentration : 0.014639585215830532 V
+Eta Ohmic : 0.09874437245534211 V
+FC Efficiency : 0.32592695654370657
+FC Power : 115.67147687736146 W
+FC Voltage : 2.542230261040911 V
+Loss : 0.7050961033819036 V
+PH2 : 0.19079186907986959 atm
+PH2O : 0.23483186908353373 atm
+PO2 : 0.18702486009626765 atm
+Power-Thermal : 164.15352312263857 W
+###########
+I :45.6 A
+
+E : 6.0677092107693795 V
+Eta Activation : 0.5918596702857888 V
+Eta Concentration : 0.01469230355018017 V
+Eta Ohmic : 0.09902713504280951 V
+FC Efficiency : 0.3256171367148061
+FC Power : 115.81550318672225 W
+FC Voltage : 2.5398136663754878 V
+Loss : 0.7055791088787784 V
+PH2 : 0.19077781869825522 atm
+PH2O : 0.2348145754882052 atm
+PO2 : 0.18701692725806937 atm
+Power-Thermal : 164.62449681327777 W
+###########
+I :45.7 A
+
+E : 6.067707643521853 V
+Eta Activation : 0.5920068766246023 V
+Eta Concentration : 0.014745196160332168 V
+Eta Ohmic : 0.09931032648626677 V
+FC Efficiency : 0.3253071342520316
+FC Power : 115.9589810754792 W
+FC Voltage : 2.5373956471658468 V
+Loss : 0.7060623992712013 V
+PH2 : 0.19076376831664082 atm
+PH2O : 0.23479728189287666 atm
+PO2 : 0.18700899441987104 atm
+Power-Thermal : 165.09601892452082 W
+###########
+I :45.8 A
+
+E : 6.067706076207843 V
+Eta Activation : 0.59215376611894 V
+Eta Concentration : 0.014798264202348064 V
+Eta Ohmic : 0.0995939479462943 V
+FC Efficiency : 0.3249969467781963
+FC Power : 116.10190926704284 W
+FC Voltage : 2.5349761848699313 V
+Loss : 0.7065459782675824 V
+PH2 : 0.19074971793502643 atm
+PH2O : 0.23477998829754812 atm
+PO2 : 0.18700106158167276 atm
+Power-Thermal : 165.56809073295716 W
+###########
+I :45.9 A
+
+E : 6.067704508827344 V
+Eta Activation : 0.5923003401514652 V
+Eta Concentration : 0.01485150884383086 V
+Eta Ohmic : 0.09987800058571954 V
+FC Efficiency : 0.324686571913111
+FC Power : 116.24428647633201 W
+FC Voltage : 2.532555260922266 V
+Loss : 0.7070298495810156 V
+PH2 : 0.190735667553412 atm
+PH2O : 0.23476269470221953 atm
+PO2 : 0.18699312874347443 atm
+Power-Thermal : 166.04071352366802 W
+###########
+I :46.0 A
+
+E : 6.067702941380349 V
+Eta Activation : 0.5924466000958128 V
+Eta Concentration : 0.014904931264079097 V
+Eta Ohmic : 0.10016248556961914 V
+FC Efficiency : 0.32437600727343513
+FC Power : 116.38611140970853 W
+FC Voltage : 2.530132856732794 V
+Loss : 0.7075140169295111 V
+PH2 : 0.19072161717179764 atm
+PH2O : 0.234745401106891 atm
+PO2 : 0.18698519590527615 atm
+Power-Thermal : 166.5138885902915 W
+###########
+I :46.1 A
+
+E : 6.067701373866855 V
+Eta Activation : 0.59259254731667 V
+Eta Concentration : 0.014958532654243607 V
+Eta Ohmic : 0.10044740406532165 V
+FC Efficiency : 0.32406525047252294
+FC Power : 116.52738276490982 W
+FC Voltage : 2.5277089536856794 V
+Loss : 0.7079984840362352 V
+PH2 : 0.19070756679018325 atm
+PH2O : 0.23472810751156245 atm
+PO2 : 0.18697726306707782 atm
+Power-Thermal : 166.9876172350902 W
+###########
+I :46.2 A
+
+E : 6.067699806286855 V
+Eta Activation : 0.5927381831698519 V
+Eta Concentration : 0.015012314217486887 V
+Eta Ohmic : 0.10073275724240989 V
+FC Efficiency : 0.3237542991202707
+FC Power : 116.66809923098077 W
+FC Voltage : 2.525283533138112 V
+Loss : 0.7084832546297487 V
+PH2 : 0.19069351640856885 atm
+PH2O : 0.2347108139162339 atm
+PO2 : 0.18696933022887954 atm
+Power-Thermal : 167.46190076901925 W
+###########
+I :46.3 A
+
+E : 6.067698238640343 V
+Eta Activation : 0.5928835090023804 V
+Eta Concentration : 0.015066277169145114 V
+Eta Ohmic : 0.10101854627272344 V
+FC Efficiency : 0.32344315082296127
+FC Power : 116.80825948820424 W
+FC Voltage : 2.522856576419098 V
+Loss : 0.708968332444249 V
+PH2 : 0.19067946602695446 atm
+PH2O : 0.23469352032090537 atm
+PO2 : 0.1869613973906812 atm
+Power-Thermal : 167.93674051179576 W
+###########
+I :46.4 A
+
+E : 6.067696670927315 V
+Eta Activation : 0.5930285261525579 V
+Eta Concentration : 0.01512042273689296 V
+Eta Ohmic : 0.10130477233036121 V
+FC Efficiency : 0.3231318031831097
+FC Power : 116.94786220803105 W
+FC Voltage : 2.5204280648282555 V
+Loss : 0.709453721219812 V
+PH2 : 0.1906654156453401 atm
+PH2O : 0.23467622672557684 atm
+PO2 : 0.18695346455248293 atm
+Power-Thermal : 168.41213779196895 W
+###########
+I :46.5 A
+
+E : 6.067695103147763 V
+Eta Activation : 0.5931732359500439 V
+Eta Concentration : 0.015174752160911175 V
+Eta Ohmic : 0.10159143659168393 V
+FC Efficiency : 0.3228202537993036
+FC Power : 117.08690605300743 W
+FC Voltage : 2.5179979796345684 V
+Loss : 0.7099394247026389 V
+PH2 : 0.1906513652637257 atm
+PH2O : 0.2346589331302483 atm
+PO2 : 0.18694553171428463 atm
+Power-Thermal : 168.8880939469926 W
+###########
+I :46.6 A
+
+E : 6.067693535301682 V
+Eta Activation : 0.5933176397159284 V
+Eta Concentration : 0.015229266694057001 V
+Eta Ohmic : 0.10187854023531658 V
+FC Efficiency : 0.3225085002660477
+FC Power : 117.22538967670303 W
+FC Voltage : 2.515566302075172 V
+Loss : 0.710425446645302 V
+PH2 : 0.1906373148821113 atm
+PH2O : 0.23464163953491973 atm
+PO2 : 0.18693759887608632 atm
+Power-Thermal : 169.364610323297 W
+###########
+I :46.7 A
+
+E : 6.067691967389068 V
+Eta Activation : 0.5934617387628063 V
+Eta Concentration : 0.015283967602037573 V
+Eta Ohmic : 0.10216608444215096 V
+FC Efficiency : 0.32219654017360183
+FC Power : 117.36331172363623 W
+FC Voltage : 2.5131330133540946 V
+Loss : 0.7109117908069947 V
+PH2 : 0.19062326450049694 atm
+PH2O : 0.2346243459395912 atm
+PO2 : 0.18692966603788802 atm
+Power-Thermal : 169.8416882763638 W
+###########
+I :46.8 A
+
+E : 6.067690399409914 V
+Eta Activation : 0.5936055343948489 V
+Eta Concentration : 0.015338856163586193 V
+Eta Ohmic : 0.10245407039534823 V
+FC Efficiency : 0.32188437110782014
+FC Power : 117.50067082919865 W
+FC Voltage : 2.510698094640997 V
+Loss : 0.7113984609537833 V
+PH2 : 0.19060921411888254 atm
+PH2O : 0.23460705234426266 atm
+PO2 : 0.1869217331996897 atm
+Power-Thermal : 170.31932917080135 W
+###########
+I :46.9 A
+
+E : 6.067688831364214 V
+Eta Activation : 0.5937490279078771 V
+Eta Concentration : 0.015393933670641761 V
+Eta Ohmic : 0.10274249928034154 V
+FC Efficiency : 0.32157199064998876
+FC Power : 117.63746561957888 W
+FC Voltage : 2.5082615270699122 V
+Loss : 0.7118854608588604 V
+PH2 : 0.19059516373726815 atm
+PH2O : 0.23458975874893412 atm
+PO2 : 0.1869138003614914 atm
+Power-Thermal : 170.79753438042113 W
+###########
+I :47.0 A
+
+E : 6.067687263251964 V
+Eta Activation : 0.593892220589431 V
+Eta Concentration : 0.015449201428531165 V
+Eta Ohmic : 0.10303137228483832 V
+FC Efficiency : 0.3212593963766617
+FC Power : 117.77369471168419 W
+FC Voltage : 2.5058232917379613 V
+Loss : 0.7123727943028004 V
+PH2 : 0.19058111335565378 atm
+PH2O : 0.23457246515360558 atm
+PO2 : 0.18690586752329308 atm
+Power-Thermal : 171.27630528831583 W
+###########
+I :47.1 A
+
+E : 6.067685695073156 V
+Eta Activation : 0.594035113718842 V
+Eta Concentration : 0.015504660756154942 V
+Eta Ohmic : 0.10332069059882305 V
+FC Efficiency : 0.32094658585949437
+FC Power : 117.90935671306104 W
+FC Voltage : 2.503383369704056 V
+Loss : 0.7128604650738201 V
+PH2 : 0.1905670629740394 atm
+PH2O : 0.23455517155827704 atm
+PO2 : 0.1868979346850948 atm
+Power-Thermal : 171.75564328693898 W
+###########
+I :47.2 A
+
+E : 6.0676841268277855 V
+Eta Activation : 0.5941777085673013 V
+Eta Concentration : 0.015560312986176144 V
+Eta Ohmic : 0.10361045541455978 V
+FC Efficiency : 0.32063355666507676
+FC Power : 118.04445022181469 W
+FC Voltage : 2.500941741987599 V
+Loss : 0.7133484769680373 V
+PH2 : 0.190553012592425 atm
+PH2O : 0.2345378779629485 atm
+PO2 : 0.18689000184689647 atm
+Power-Thermal : 172.23554977818534 W
+###########
+I :47.3 A
+
+E : 6.067682558515849 V
+Eta Activation : 0.5943200063979293 V
+Eta Concentration : 0.015616159465212437 V
+Eta Ohmic : 0.10390066792659462 V
+FC Efficiency : 0.32032030635476505
+FC Power : 118.17897382652701 W
+FC Voltage : 2.4984983895671675 V
+Loss : 0.7138368337897363 V
+PH2 : 0.1905389622108106 atm
+PH2O : 0.23452058436761997 atm
+PO2 : 0.1868820690086982 atm
+Power-Thermal : 172.71602617347298 W
+###########
+I :47.4 A
+
+E : 6.067680990137338 V
+Eta Activation : 0.5944620084658432 V
+Eta Concentration : 0.015672201554031668 V
+Eta Ohmic : 0.10419132933175834 V
+FC Efficiency : 0.3200068324845091
+FC Power : 118.31292610617272 W
+FC Voltage : 2.4960532933791715 V
+Loss : 0.7143255393516332 V
+PH2 : 0.19052491182919623 atm
+PH2O : 0.23450329077229143 atm
+PO2 : 0.18687413617049986 atm
+Power-Thermal : 173.19707389382728 W
+###########
+I :47.5 A
+
+E : 6.067679421692246 V
+Eta Activation : 0.5946037160182251 V
+Eta Concentration : 0.01572844062775078 V
+Eta Ohmic : 0.10448244082916897 V
+FC Efficiency : 0.3196931326046822
+FC Power : 118.44630563003476 W
+FC Voltage : 2.493606434316521 V
+Loss : 0.7148145974751449 V
+PH2 : 0.19051086144758184 atm
+PH2O : 0.23448599717696286 atm
+PO2 : 0.18686620333230158 atm
+Power-Thermal : 173.67869436996526 W
+###########
+I :47.6 A
+
+E : 6.0676778531805695 V
+Eta Activation : 0.5947451302943889 V
+Eta Concentration : 0.015784878076038275 V
+Eta Ohmic : 0.10477400362023444 V
+FC Efficiency : 0.3193792042599053
+FC Power : 118.57911095761764 W
+FC Voltage : 2.4911577932272615 V
+Loss : 0.7153040119906616 V
+PH2 : 0.19049681106596741 atm
+PH2O : 0.2344687035816343 atm
+PO2 : 0.18685827049410325 atm
+Power-Thermal : 174.16088904238237 W
+###########
+I :47.7 A
+
+E : 6.067676284602303 V
+Eta Activation : 0.5948862525258456 V
+Eta Concentration : 0.01584151530332026 V
+Eta Ohmic : 0.10506601890865505 V
+FC Efficiency : 0.3190650449888716
+FC Power : 118.71134063855959 W
+FC Voltage : 2.4887073509131987 V
+Loss : 0.7157937867378209 V
+PH2 : 0.19048276068435302 atm
+PH2O : 0.23445140998630576 atm
+PO2 : 0.18685033765590495 atm
+Power-Thermal : 174.64365936144046 W
+###########
+I :47.8 A
+
+E : 6.067674715957441 V
+Eta Activation : 0.5950270839363689 V
+Eta Concentration : 0.015898353728990143 V
+Eta Ohmic : 0.10535848790042618 V
+FC Efficiency : 0.31875065232416855
+FC Power : 118.842993212543 W
+FC Voltage : 2.486255088128515 V
+Loss : 0.7162839255657852 V
+PH2 : 0.19046871030273865 atm
+PH2O : 0.23443411639097722 atm
+PO2 : 0.18684240481770664 atm
+Power-Thermal : 175.127006787457 W
+###########
+I :47.9 A
+
+E : 6.0676731472459755 V
+Eta Activation : 0.5951676257420604 V
+Eta Concentration : 0.015955394787622083 V
+Eta Ohmic : 0.10565141180384084 V
+FC Efficiency : 0.3184360237920973
+FC Power : 118.97406720920338 W
+FC Voltage : 2.483800985578359 V
+Loss : 0.7167744323335233 V
+PH2 : 0.19045465992112426 atm
+PH2O : 0.23441682279564865 atm
+PO2 : 0.18683447197950834 atm
+Power-Thermal : 175.61093279079662 W
+###########
+I :48.0 A
+
+E : 6.067671578467904 V
+Eta Activation : 0.5953078791514133 V
+Eta Concentration : 0.01601263992918823 V
+Eta Ohmic : 0.10594479182949235 V
+FC Efficiency : 0.31812115691249154
+FC Power : 119.10456114803685 W
+FC Voltage : 2.4813450239174344 V
+Loss : 0.7172653109100938 V
+PH2 : 0.19044060953950986 atm
+PH2O : 0.23439952920032012 atm
+PO2 : 0.18682653914131003 atm
+Power-Thermal : 176.09543885196317 W
+###########
+I :48.1 A
+
+E : 6.0676700096232175 V
+Eta Activation : 0.5954478453653751 V
+Eta Concentration : 0.016070090619279886 V
+Eta Ohmic : 0.10623862919027678 V
+FC Efficiency : 0.3178060491985331
+FC Power : 119.23447353830566 W
+FC Voltage : 2.4788871837485584 V
+Loss : 0.7177565651749318 V
+PH2 : 0.19042655915789547 atm
+PH2O : 0.23438223560499158 atm
+PO2 : 0.18681860630311176 atm
+Power-Thermal : 176.58052646169438 W
+###########
+I :48.2 A
+
+E : 6.067668440711913 V
+Eta Activation : 0.5955875255774115 V
+Eta Concentration : 0.016127748339332667 V
+Eta Ohmic : 0.10653292510139592 V
+FC Efficiency : 0.3174906981565658
+FC Power : 119.36380287894248 W
+FC Voltage : 2.476427445621213 V
+Loss : 0.71824819901814 V
+PH2 : 0.1904125087762811 atm
+PH2O : 0.23436494200966304 atm
+PO2 : 0.18681067346491345 atm
+Power-Thermal : 177.06619712105757 W
+###########
+I :48.3 A
+
+E : 6.067666871733985 V
+Eta Activation : 0.5957269209735669 V
+Eta Concentration : 0.01618561458685568 V
+Eta Ohmic : 0.10682768078035959 V
+FC Efficiency : 0.31717510128590687
+FC Power : 119.49254765845255 W
+FC Voltage : 2.4739657900300736 V
+Loss : 0.7187402163407822 V
+PH2 : 0.1903984583946667 atm
+PH2O : 0.2343476484143345 atm
+PO2 : 0.18680274062671515 atm
+Power-Thermal : 177.55245234154745 W
+###########
+I :48.4 A
+
+E : 6.0676653026894245 V
+Eta Activation : 0.595866032732528 V
+Eta Concentration : 0.016243690875664935 V
+Eta Ohmic : 0.1071228974469885 V
+FC Efficiency : 0.3168592560786561
+FC Power : 119.62070635481425 W
+FC Voltage : 2.4715021974135176 V
+Loss : 0.7192326210551814 V
+PH2 : 0.19038440801305231 atm
+PH2O : 0.23433035481900596 atm
+PO2 : 0.18679480778851684 atm
+Power-Thermal : 178.03929364518575 W
+###########
+I :48.5 A
+
+E : 6.067663733578229 V
+Eta Activation : 0.5960048620256824 V
+Eta Concentration : 0.016301978736120954 V
+Eta Ohmic : 0.10741857632341673 V
+FC Efficiency : 0.3165431600195036
+FC Power : 119.74827743537823 W
+FC Voltage : 2.4690366481521284 V
+Loss : 0.7197254170852201 V
+PH2 : 0.19037035763143795 atm
+PH2O : 0.23431306122367743 atm
+PO2 : 0.18678687495031854 atm
+Power-Thermal : 178.5267225646218 W
+###########
+I :48.6 A
+
+E : 6.067662164400392 V
+Eta Activation : 0.5961434100171792 V
+Eta Concentration : 0.01636047971537072 V
+Eta Ohmic : 0.10771471863409462 V
+FC Efficiency : 0.31622681058553453
+FC Power : 119.87525935676445 W
+FC Voltage : 2.4665691225671695 V
+Loss : 0.7202186083666445 V
+PH2 : 0.19035630724982355 atm
+PH2O : 0.2342957676283489 atm
+PO2 : 0.18677894211212023 atm
+Power-Thermal : 179.01474064323557 W
+###########
+I :48.7 A
+
+E : 6.067660595155909 V
+Eta Activation : 0.5962816778639893 V
+Eta Concentration : 0.01641919537759412 V
+Eta Ohmic : 0.10801132560579113 V
+FC Efficiency : 0.3159102052460302
+FC Power : 120.00165056475703 W
+FC Voltage : 2.4640996009190355 V
+Loss : 0.7207121988473746 V
+PH2 : 0.19034225686820916 atm
+PH2O : 0.23427847403302035 atm
+PO2 : 0.18677100927392193 atm
+Power-Thermal : 179.503349435243 W
+###########
+I :48.8 A
+
+E : 6.067659025844771 V
+Eta Activation : 0.5964196667159642 V
+Eta Concentration : 0.01647812730425486 V
+Eta Ohmic : 0.10830839846759689 V
+FC Efficiency : 0.315593341462268
+FC Power : 120.12744949419769 W
+FC Voltage : 2.4616280634056906 V
+Loss : 0.721206192487816 V
+PH2 : 0.1903282064865948 atm
+PH2O : 0.23426118043769179 atm
+PO2 : 0.18676307643572362 atm
+Power-Thermal : 179.9925505058023 W
+###########
+I :48.9 A
+
+E : 6.067657456466975 V
+Eta Activation : 0.5965573777158937 V
+Eta Concentration : 0.01653727709435608 V
+Eta Ohmic : 0.10860593845092655 V
+FC Efficiency : 0.31527621668731964
+FC Power : 120.25265456887746 W
+FC Voltage : 2.4591544901610933 V
+Loss : 0.7217005932611763 V
+PH2 : 0.1903141561049804 atm
+PH2O : 0.23424388684236325 atm
+PO2 : 0.18675514359752532 atm
+Power-Thermal : 180.48234543112255 W
+###########
+I :49.0 A
+
+E : 6.067655887022515 V
+Eta Activation : 0.5966948119995634 V
+Eta Concentration : 0.016596646364700655 V
+Eta Ohmic : 0.10890394678952171 V
+FC Efficiency : 0.3149588283658443
+FC Power : 120.3772642014257 W
+FC Voltage : 2.456678861253586 V
+Loss : 0.7221954051537859 V
+PH2 : 0.190300105723366 atm
+PH2O : 0.2342265932470347 atm
+PO2 : 0.18674721075932701 atm
+Power-Thermal : 180.97273579857432 W
+###########
+I :49.1 A
+
+E : 6.067654317511386 V
+Eta Activation : 0.5968319706958132 V
+Eta Concentration : 0.016656236750156372 V
+Eta Ohmic : 0.10920242471945348 V
+FC Efficiency : 0.31464117393388086
+FC Power : 120.5012767931977 W
+FC Voltage : 2.4542011566842707 V
+Loss : 0.7226906321654231 V
+PH2 : 0.1902860553417516 atm
+PH2O : 0.23420929965170617 atm
+PO2 : 0.1867392779211287 atm
+Power-Thermal : 181.46372320680234 W
+###########
+I :49.2 A
+
+E : 6.067652747933581 V
+Eta Activation : 0.596968854926592 V
+Eta Concentration : 0.016716049903926087 V
+Eta Ohmic : 0.10950137347912514 V
+FC Efficiency : 0.3143232508186365
+FC Power : 120.62469073415996 W
+FC Voltage : 2.451721356385365 V
+Loss : 0.7231862783096432 V
+PH2 : 0.19027200496013724 atm
+PH2O : 0.23419200605637763 atm
+PO2 : 0.1867313450829304 atm
+Power-Thermal : 181.95530926584007 W
+###########
+I :49.3 A
+
+E : 6.067651178289094 V
+Eta Activation : 0.597105465807015 V
+Eta Concentration : 0.016776087497822893 V
+Eta Ohmic : 0.1098007943092751 V
+FC Efficiency : 0.314005056438273
+FC Power : 120.7475044027735 W
+FC Voltage : 2.4492394402185296 V
+Loss : 0.723682347614113 V
+PH2 : 0.19025795457852285 atm
+PH2O : 0.2341747124610491 atm
+PO2 : 0.1867234122447321 atm
+Power-Thermal : 182.4474955972265 W
+###########
+I :49.4 A
+
+E : 6.067649608577921 V
+Eta Activation : 0.5972418044454191 V
+Eta Concentration : 0.016836351222550523 V
+Eta Ohmic : 0.11010068845297942 V
+FC Efficiency : 0.3136865882016892
+FC Power : 120.86971616587488 W
+FC Voltage : 2.446755387973176 V
+Loss : 0.724178844120949 V
+PH2 : 0.19024390419690843 atm
+PH2O : 0.2341574188657205 atm
+PO2 : 0.18671547940653377 atm
+Power-Thermal : 182.94028383412513 W
+###########
+I :49.5 A
+
+E : 6.067648038800055 V
+Eta Activation : 0.5973778719434164 V
+Eta Concentration : 0.01689684278798902 V
+Eta Ohmic : 0.11040105715565456 V
+FC Efficiency : 0.31336784350830194
+FC Power : 120.99132437855539 W
+FC Voltage : 2.4442691793647553 V
+Loss : 0.7246757718870599 V
+PH2 : 0.19022985381529403 atm
+PH2O : 0.23414012527039196 atm
+PO2 : 0.18670754656833546 atm
+Power-Thermal : 183.43367562144462 W
+###########
+I :49.6 A
+
+E : 6.067646468955491 V
+Eta Activation : 0.5975136693959504 V
+Eta Concentration : 0.016957563923485842 V
+Eta Ohmic : 0.11070190166506012 V
+FC Efficiency : 0.3130488197478217
+FC Power : 121.11232738403729 W
+FC Voltage : 2.4417807940330096 V
+Loss : 0.7251731349844963 V
+PH2 : 0.19021580343367966 atm
+PH2O : 0.23412283167506343 atm
+PO2 : 0.18669961373013716 atm
+Power-Thermal : 183.92767261596273 W
+###########
+I :49.7 A
+
+E : 6.0676448990442235 V
+Eta Activation : 0.5976491978913474 V
+Eta Concentration : 0.01701851637815253 V
+Eta Ohmic : 0.11100322323130166 V
+FC Efficiency : 0.3127295143000276
+FC Power : 121.23272351354873 W
+FC Voltage : 2.4392902115402157 V
+Loss : 0.7256709375008016 V
+PH2 : 0.19020175305206527 atm
+PH2O : 0.2341055380797349 atm
+PO2 : 0.18669168089193885 atm
+Power-Thermal : 184.4222764864513 W
+###########
+I :49.8 A
+
+E : 6.067643329066246 V
+Eta Activation : 0.5977844585113729 V
+Eta Concentration : 0.01707970192116698 V
+Eta Ohmic : 0.1113050231068334 V
+FC Efficiency : 0.31240992453453575
+FC Power : 121.35251108619507 W
+FC Voltage : 2.436797411369379 V
+Loss : 0.7261691835393733 V
+PH2 : 0.19018770267045088 atm
+PH2O : 0.23408824448440635 atm
+PO2 : 0.18668374805374058 atm
+Power-Thermal : 184.91748891380493 W
+###########
+I :49.9 A
+
+E : 6.067641759021552 V
+Eta Activation : 0.5979194523312803 V
+Eta Concentration : 0.017141122342081632 V
+Eta Ohmic : 0.11160730254646102 V
+FC Efficiency : 0.3120900478105689
+FC Power : 121.47168840882964 W
+FC Voltage : 2.4343023729224376 V
+Loss : 0.726667877219823 V
+PH2 : 0.19017365228883648 atm
+PH2O : 0.2340709508890778 atm
+PO2 : 0.18667581521554227 atm
+Power-Thermal : 185.41331159117038 W
+###########
+I :50.0 A
+
+E : 6.06764018891014 V
+Eta Activation : 0.5980541804198667 V
+Eta Concentration : 0.017202779451137473 V
+Eta Ohmic : 0.11191006280734431 V
+FC Efficiency : 0.3117698814767176
+FC Power : 121.59025377591988 W
+FC Voltage : 2.4318050755183975 V
+Loss : 0.7271670226783484 V
+PH2 : 0.19015960190722211 atm
+PH2O : 0.23405365729374927 atm
+PO2 : 0.18666788237734397 atm
+Power-Thermal : 185.90974622408015 W
+###########
+I :50.1 A
+
+E : 6.067638618731999 V
+Eta Activation : 0.5981886438395219 V
+Eta Concentration : 0.017264675079584197 V
+Eta Ohmic : 0.11221330514900003 V
+FC Efficiency : 0.311449422870701
+FC Power : 121.70820546941255 W
+FC Voltage : 2.429305498391468 V
+Loss : 0.7276666240681061 V
+PH2 : 0.19014555152560772 atm
+PH2O : 0.2340363636984207 atm
+PO2 : 0.18665994953914566 atm
+Power-Thermal : 186.4067945305875 W
+###########
+I :50.2 A
+
+E : 6.067637048487127 V
+Eta Activation : 0.5983228436462812 V
+Eta Concentration : 0.017326811080006565 V
+Eta Ohmic : 0.11251703083330482 V
+FC Efficiency : 0.3111286693191236
+FC Power : 121.82554175859605 W
+FC Voltage : 2.426803620689164 V
+Loss : 0.7281666855595925 V
+PH2 : 0.19013150114399333 atm
+PH2O : 0.23401907010309217 atm
+PO2 : 0.18665201670094736 atm
+Power-Thermal : 186.904458241404 W
+###########
+I :50.3 A
+
+E : 6.067635478175516 V
+Eta Activation : 0.5984567808898745 V
+Eta Concentration : 0.01738918932665708 V
+Eta Ohmic : 0.1128212411244977 V
+FC Efficiency : 0.31080761813722685
+FC Power : 121.94226089995959 W
+FC Voltage : 2.4242994214703697 V
+Loss : 0.7286672113410293 V
+PH2 : 0.19011745076237896 atm
+PH2O : 0.23400177650776363 atm
+PO2 : 0.18664408386274906 atm
+Power-Thermal : 187.4027391000404 W
+###########
+I :50.4 A
+
+E : 6.067633907797163 V
+Eta Activation : 0.5985904566137785 V
+Eta Concentration : 0.017451811715795258 V
+Eta Ohmic : 0.1131259372891831 V
+FC Efficiency : 0.3104862666286382
+FC Power : 122.05836113705027 W
+FC Voltage : 2.4217928797033785 V
+Loss : 0.7291682056187568 V
+PH2 : 0.19010340038076456 atm
+PH2O : 0.2339844829124351 atm
+PO2 : 0.18663615102455075 atm
+Power-Thermal : 187.90163886294974 W
+###########
+I :50.5 A
+
+E : 6.067632337352059 V
+Eta Activation : 0.5987238718552639 V
+Eta Concentration : 0.017514680166033494 V
+Eta Ohmic : 0.11343112059633365 V
+FC Efficiency : 0.3101646120851158
+FC Power : 122.17384070032712 W
+FC Voltage : 2.4192839742639034 V
+Loss : 0.729669672617631 V
+PH2 : 0.19008934999915017 atm
+PH2O : 0.23396718931710656 atm
+PO2 : 0.18662821818635245 atm
+Power-Thermal : 188.40115929967288 W
+###########
+I :50.6 A
+
+E : 6.067630766840201 V
+Eta Activation : 0.5988570276454455 V
+Eta Concentration : 0.017577796618689752 V
+Eta Ohmic : 0.11373679231729288 V
+FC Efficiency : 0.3098426517862899
+FC Power : 122.2886978070129 W
+FC Voltage : 2.416772683933061 V
+Loss : 0.730171616581428 V
+PH2 : 0.1900752996175358 atm
+PH2O : 0.23394989572177802 atm
+PO2 : 0.18662028534815414 atm
+Power-Thermal : 188.90130219298712 W
+###########
+I :50.7 A
+
+E : 6.067629196261583 V
+Eta Activation : 0.5989899250093318 V
+Eta Concentration : 0.01764116303814731 V
+Eta Ohmic : 0.11404295372577809 V
+FC Efficiency : 0.30952038299939705
+FC Power : 122.40293066094156 W
+FC Voltage : 2.414258987395297 V
+Loss : 0.7306740417732572 V
+PH2 : 0.1900612492359214 atm
+PH2O : 0.23393260212644948 atm
+PO2 : 0.18661235250995584 atm
+Power-Thermal : 189.40206933905847 W
+###########
+I :50.8 A
+
+E : 6.067627625616199 V
+Eta Activation : 0.5991225649658711 V
+Eta Concentration : 0.017704781412221537 V
+Eta Ohmic : 0.11434960609788314 V
+FC Efficiency : 0.3091978029790153
+FC Power : 122.51653745240503 W
+FC Voltage : 2.4117428632363196 V
+Loss : 0.7311769524759758 V
+PH2 : 0.19004719885430701 atm
+PH2O : 0.23391530853112094 atm
+PO2 : 0.18660441967175753 atm
+Power-Thermal : 189.90346254759498 W
+###########
+I :50.9 A
+
+E : 6.067626054904042 V
+Eta Activation : 0.5992549485280014 V
+Eta Concentration : 0.01776865375253413 V
+Eta Ohmic : 0.11465675071208144 V
+FC Efficiency : 0.3088749089667893
+FC Power : 122.62951635799469 W
+FC Voltage : 2.4092242899409566 V
+Loss : 0.731680352992617 V
+PH2 : 0.19003314847269262 atm
+PH2O : 0.2338980149357924 atm
+PO2 : 0.18659648683355923 atm
+Power-Thermal : 190.40548364200532 W
+###########
+I :51.0 A
+
+E : 6.067624484125107 V
+Eta Activation : 0.5993870767026959 V
+Eta Concentration : 0.017832782094894757 V
+Eta Ohmic : 0.11496438884922869 V
+FC Efficiency : 0.30855169819115513
+FC Power : 122.74186554044151 W
+FC Voltage : 2.40670324589101 V
+Loss : 0.7321842476468193 V
+PH2 : 0.19001909809107825 atm
+PH2O : 0.23388072134046387 atm
+PO2 : 0.18658855399536092 atm
+Power-Thermal : 190.9081344595585 W
+###########
+I :51.1 A
+
+E : 6.067622913279389 V
+Eta Activation : 0.5995189504910101 V
+Eta Concentration : 0.017897168499690363 V
+Eta Ohmic : 0.11527252179256567 V
+FC Efficiency : 0.30822816786705876
+FC Power : 122.8535831484523 W
+FC Voltage : 2.4041797093630586 V
+Loss : 0.7326886407832661 V
+PH2 : 0.19000504770946383 atm
+PH2O : 0.23386342774513527 atm
+PO2 : 0.1865806211571626 atm
+Power-Thermal : 191.41141685154773 W
+###########
+I :51.2 A
+
+E : 6.067621342366882 V
+Eta Activation : 0.5996505708881289 V
+Eta Concentration : 0.01796181505228244 V
+Eta Ohmic : 0.11558115082772114 V
+FC Efficiency : 0.3079043151956692
+FC Power : 122.96466731654246 W
+FC Voltage : 2.40165365852622 V
+Loss : 0.7331935367681325 V
+PH2 : 0.18999099732784944 atm
+PH2O : 0.23384613414980673 atm
+PO2 : 0.18657268831896429 atm
+Power-Thermal : 191.91533268345756 W
+###########
+I :51.3 A
+
+E : 6.067619771387581 V
+Eta Activation : 0.5997819388834111 V
+Eta Concentration : 0.018026723863412274 V
+Eta Ohmic : 0.11589027724271474 V
+FC Efficiency : 0.30758013736408846
+FC Power : 123.07511616486636 W
+FC Voltage : 2.39912507143989 V
+Loss : 0.7336989399895382 V
+PH2 : 0.18997694694623504 atm
+PH2O : 0.2338288405544782 atm
+PO2 : 0.18656475548076598 atm
+Power-Thermal : 192.41988383513365 W
+###########
+I :51.4 A
+
+E : 6.067618200341479 V
+Eta Activation : 0.5999130554604362 V
+Eta Concentration : 0.018091897069614445 V
+Eta Ohmic : 0.11619990232795988 V
+FC Efficiency : 0.3072556315450547
+FC Power : 123.18492779904334 W
+FC Voltage : 2.396593926051427 V
+Loss : 0.7342048548580105 V
+PH2 : 0.18996289656462068 atm
+PH2O : 0.23381154695914963 atm
+PO2 : 0.1865568226425677 atm
+Power-Thermal : 192.92507220095666 W
+###########
+I :51.5 A
+
+E : 6.067616629228572 V
+Eta Activation : 0.6000439215970482 V
+Eta Concentration : 0.018157336833638845 V
+Eta Ohmic : 0.11651002737626663 V
+FC Efficiency : 0.30693079489664143
+FC Power : 123.29410030998088 W
+FC Voltage : 2.3940602001938034 V
+Loss : 0.7347112858069537 V
+PH2 : 0.18994884618300628 atm
+PH2O : 0.2337942533638211 atm
+PO2 : 0.1865488898043694 atm
+Power-Thermal : 193.43089969001915 W
+###########
+I :51.6 A
+
+E : 6.067615058048852 V
+Eta Activation : 0.6001745382654011 V
+Eta Concentration : 0.018223045344881308 V
+Eta Ohmic : 0.11682065368284446 V
+FC Efficiency : 0.30660562456195095
+FC Power : 123.40263177369403 W
+FC Voltage : 2.3915238715832174 V
+Loss : 0.7352182372931269 V
+PH2 : 0.1899347958013919 atm
+PH2O : 0.23377695976849255 atm
+PO2 : 0.1865409569661711 atm
+Power-Thermal : 193.937368226306 W
+###########
+I :51.7 A
+
+E : 6.0676134868023155 V
+Eta Activation : 0.6003049064320012 V
+Eta Concentration : 0.0182890248198231 V
+Eta Ohmic : 0.11713178254530533 V
+FC Efficiency : 0.30628011766880353
+FC Power : 123.51052025112173 W
+FC Voltage : 2.3889849178166678 V
+Loss : 0.7357257137971296 V
+PH2 : 0.18992074541977752 atm
+PH2O : 0.23375966617316402 atm
+PO2 : 0.1865330241279728 atm
+Power-Thermal : 194.4444797488783 W
+###########
+I :51.8 A
+
+E : 6.067611915488955 V
+Eta Activation : 0.6004350270577534 V
+Eta Concentration : 0.018355277502479592 V
+Eta Ohmic : 0.11744341526366643 V
+FC Efficiency : 0.30595427132941766
+FC Power : 123.61776378793792 W
+FC Voltage : 2.386443316369458 V
+Loss : 0.7362337198238994 V
+PH2 : 0.18990669503816313 atm
+PH2O : 0.23374237257783548 atm
+PO2 : 0.1865250912897745 atm
+Power-Thermal : 194.95223621206208 W
+###########
+I :51.9 A
+
+E : 6.0676103441087665 V
+Eta Activation : 0.6005649010980019 V
+Eta Concentration : 0.018421805664858217 V
+Eta Ohmic : 0.11775555314035327 V
+FC Efficiency : 0.3056280826400898
+FC Power : 123.72436041436114 W
+FC Voltage : 2.3838990445927 V
+Loss : 0.7367422599032133 V
+PH2 : 0.18989264465654873 atm
+PH2O : 0.23372507898250694 atm
+PO2 : 0.18651715845157618 atm
+Power-Thermal : 195.4606395856389 W
+###########
+I :52.0 A
+
+E : 6.067608772661743 V
+Eta Activation : 0.6006945295025744 V
+Eta Concentration : 0.01848861160742591 V
+Eta Ohmic : 0.11806819748020249 V
+FC Efficiency : 0.3053015486808628
+FC Power : 123.83030814495794 W
+FC Voltage : 2.3813520797107297 V
+Loss : 0.7372513385902028 V
+PH2 : 0.18987859427493434 atm
+PH2O : 0.2337077853871784 atm
+PO2 : 0.18650922561337788 atm
+Power-Thermal : 195.96969185504207 W
+###########
+I :52.1 A
+
+E : 6.067607201147881 V
+Eta Activation : 0.6008239132158246 V
+Eta Concentration : 0.01855569765958649 V
+Eta Ohmic : 0.11838134959046467 V
+FC Efficiency : 0.30497466651519256
+FC Power : 123.93560497844396 W
+FC Voltage : 2.378802398818502 V
+Loss : 0.7377609604658758 V
+PH2 : 0.18986454389331997 atm
+PH2O : 0.23369049179184986 atm
+PO2 : 0.18650129277517957 atm
+Power-Thermal : 196.47939502155606 W
+###########
+I :52.2 A
+
+E : 6.067605629567172 V
+Eta Activation : 0.600953053176673 V
+Eta Concentration : 0.018623066180167982 V
+Eta Ohmic : 0.11869501078080756 V
+FC Efficiency : 0.3046474331896063
+FC Power : 124.04024889748013 W
+FC Voltage : 2.3762499788789295 V
+Loss : 0.7382711301376486 V
+PH2 : 0.18985049351170558 atm
+PH2O : 0.23367319819652133 atm
+PO2 : 0.18649335993698127 atm
+Power-Thermal : 196.9897511025199 W
+###########
+I :52.3 A
+
+E : 6.0676040579196115 V
+Eta Activation : 0.6010819503186503 V
+Eta Concentration : 0.018690719557920312 V
+Eta Ohmic : 0.11900918236331878 V
+FC Efficiency : 0.3043198457333543
+FC Power : 124.14423786846457 W
+FC Voltage : 2.373694796720164 V
+Loss : 0.7387818522398895 V
+PH2 : 0.18983644313009118 atm
+PH2O : 0.2336559046011928 atm
+PO2 : 0.18648542709878296 atm
+Power-Thermal : 197.50076213153542 W
+###########
+I :52.4 A
+
+E : 6.067602486205193 V
+Eta Activation : 0.601210605569936 V
+Eta Concentration : 0.01875866021202354 V
+Eta Ohmic : 0.11932386565250896 V
+FC Efficiency : 0.3039919011580578
+FC Power : 124.24756984132138 W
+FC Voltage : 2.3711368290328507 V
+Loss : 0.7392931314344685 V
+PH2 : 0.18982239274847681 atm
+PH2O : 0.23363861100586422 atm
+PO2 : 0.18647749426058466 atm
+Power-Thermal : 198.01243015867863 W
+###########
+I :52.5 A
+
+E : 6.067600914423913 V
+Eta Activation : 0.6013390198534025 V
+Eta Concentration : 0.018826890592606855 V
+Eta Ohmic : 0.11963906196531433 V
+FC Efficiency : 0.30366359645734536
+FC Power : 124.35024274928294 W
+FC Voltage : 2.368576052367294 V
+Loss : 0.7398049724113238 V
+PH2 : 0.18980834236686242 atm
+PH2O : 0.23362131741053568 atm
+PO2 : 0.18646956142238635 atm
+Power-Thermal : 198.52475725071707 W
+###########
+I :52.6 A
+
+E : 6.067599342575764 V
+Eta Activation : 0.6014671940866525 V
+Eta Concentration : 0.01889541318127887 V
+Eta Ohmic : 0.11995477262110017 V
+FC Efficiency : 0.3033349286064879
+FC Power : 124.45225450866988 W
+FC Voltage : 2.366012443130606 V
+Loss : 0.7403173798890316 V
+PH2 : 0.18979429198524803 atm
+PH2O : 0.23360402381520715 atm
+PO2 : 0.18646162858418805 atm
+Power-Thermal : 199.03774549133016 W
+###########
+I :52.7 A
+
+E : 6.06759777066074 V
+Eta Activation : 0.6015951291820609 V
+Eta Concentration : 0.01896423049166912 V
+Eta Ohmic : 0.12027099894166353 V
+FC Efficiency : 0.3030058945620221
+FC Power : 124.55360301866483 W
+FC Voltage : 2.3634459775837726 V
+Loss : 0.7408303586153935 V
+PH2 : 0.18978024160363363 atm
+PH2O : 0.2335867302198786 atm
+PO2 : 0.18645369574598974 atm
+Power-Thermal : 199.55139698133522 W
+###########
+I :52.8 A
+
+E : 6.067596198678837 V
+Eta Activation : 0.6017228260468133 V
+Eta Concentration : 0.01903334506998138 V
+Eta Ohmic : 0.12058774225123614 V
+FC Efficiency : 0.30267649126136964
+FC Power : 124.65428616108247 W
+FC Voltage : 2.3608766318386833 V
+Loss : 0.7413439133680307 V
+PH2 : 0.18976619122201926 atm
+PH2O : 0.23356943662455007 atm
+PO2 : 0.18644576290779144 atm
+Power-Thermal : 200.06571383891753 W
+###########
+I :52.9 A
+
+E : 6.067594626630049 V
+Eta Activation : 0.6018502855829464 V
+Eta Concentration : 0.01910275949555895 V
+Eta Ohmic : 0.12090500387648755 V
+FC Efficiency : 0.3023467156224468
+FC Power : 124.75430180013399 W
+FC Voltage : 2.358304381855085 V
+Loss : 0.7418580489549929 V
+PH2 : 0.18975214084040484 atm
+PH2O : 0.23355214302922148 atm
+PO2 : 0.1864378300695931 atm
+Power-Thermal : 200.58069819986602 W
+###########
+I :53.0 A
+
+E : 6.067593054514368 V
+Eta Activation : 0.6019775086873862 V
+Eta Concentration : 0.019172476381462248 V
+Eta Ohmic : 0.12122278514652818 V
+FC Efficiency : 0.30201656454326725
+FC Power : 124.8536477821867 W
+FC Voltage : 2.355729203437485 V
+Loss : 0.7423727702153766 V
+PH2 : 0.18973809045879045 atm
+PH2O : 0.23353484943389294 atm
+PO2 : 0.18642989723139483 atm
+Power-Thermal : 201.09635221781332 W
+###########
+I :53.1 A
+
+E : 6.06759148233179 V
+Eta Activation : 0.6021044962519856 V
+Eta Concentration : 0.019242498375059026 V
+Eta Ohmic : 0.12154108739291197 V
+FC Efficiency : 0.3016860349015393
+FC Power : 124.95232193551955 W
+FC Voltage : 2.3531510722320066 V
+Loss : 0.7428880820199566 V
+PH2 : 0.18972404007717605 atm
+PH2O : 0.2335175558385644 atm
+PO2 : 0.18642196439319653 atm
+Power-Thermal : 201.61267806448046 W
+###########
+I :53.2 A
+
+E : 6.067589910082311 V
+Eta Activation : 0.6022312491635653 V
+Eta Concentration : 0.019312828158627632 V
+Eta Ohmic : 0.12185991194963992 V
+FC Efficiency : 0.3013551235542495
+FC Power : 125.05032207007136 W
+FC Voltage : 2.350569963723146 V
+Loss : 0.7434039892718329 V
+PH2 : 0.1897099896955617 atm
+PH2O : 0.23350026224323586 atm
+PO2 : 0.18641403155499822 atm
+Power-Thermal : 202.12967792992868 W
+###########
+I :53.3 A
+
+E : 6.0675883377659225 V
+Eta Activation : 0.6023577683039488 V
+Eta Concentration : 0.019383468449973504 V
+Eta Ohmic : 0.12217926015316263 V
+FC Efficiency : 0.30102382733724325
+FC Power : 125.14764597718552 W
+FC Voltage : 2.347985853230498 V
+Loss : 0.743920496907085 V
+PH2 : 0.1896959393139473 atm
+PH2O : 0.23348296864790732 atm
+PO2 : 0.18640609871679992 atm
+Power-Thermal : 202.64735402281448 W
+###########
+I :53.4 A
+
+E : 6.067586765382619 V
+Eta Activation : 0.6024840545500012 V
+Eta Concentration : 0.019454422003059354 V
+Eta Ohmic : 0.12249913334238359 V
+FC Efficiency : 0.30069214306479464
+FC Power : 125.24429142934827 W
+FC Voltage : 2.3453987159053984 V
+Loss : 0.7444376098954442 V
+PH2 : 0.1896818889323329 atm
+PH2O : 0.23346567505257879 atm
+PO2 : 0.1863981658786016 atm
+Power-Thermal : 203.16570857065173 W
+###########
+I :53.5 A
+
+E : 6.0675851929323965 V
+Eta Activation : 0.6026101087736662 V
+Eta Concentration : 0.019525691608649434 V
+Eta Ohmic : 0.12281953285866216 V
+FC Efficiency : 0.30036006752916755
+FC Power : 125.34025617992164 W
+FC Voltage : 2.342808526727507 V
+Loss : 0.7449553332409778 V
+PH2 : 0.18966783855071853 atm
+PH2O : 0.23344838145725025 atm
+PO2 : 0.1863902330404033 atm
+Power-Thermal : 203.68474382007838 W
+###########
+I :53.6 A
+
+E : 6.067583620415249 V
+Eta Activation : 0.6027359318420029 V
+Eta Concentration : 0.019597280094968184 V
+Eta Ohmic : 0.12314046004581668 V
+FC Efficiency : 0.30002759750016794
+FC Power : 125.43553796287021 W
+FC Voltage : 2.34021526050131 V
+Loss : 0.7454736719827878 V
+PH2 : 0.18965378816910414 atm
+PH2O : 0.2334310878619217 atm
+PO2 : 0.186382300202205 atm
+Power-Thermal : 204.20446203712982 W
+###########
+I :53.7 A
+
+E : 6.06758204783117 V
+Eta Activation : 0.6028615246172215 V
+Eta Concentration : 0.01966919032837361 V
+Eta Ohmic : 0.12346191625012723 V
+FC Efficiency : 0.29969472972468686
+FC Power : 125.53013449248238 W
+FC Voltage : 2.337618891852558 V
+Loss : 0.7459926311957223 V
+PH2 : 0.18963973778748974 atm
+PH2O : 0.23341379426659314 atm
+PO2 : 0.1863743673640067 atm
+Power-Thermal : 204.72486550751768 W
+###########
+I :53.8 A
+
+E : 6.067580475180154 V
+Eta Activation : 0.6029868879567206 V
+Eta Concentration : 0.019741425214046024 V
+Eta Ohmic : 0.12378390282033915 V
+FC Efficiency : 0.299361460926234
+FC Power : 125.62404346308485 W
+FC Voltage : 2.3350193952246254 V
+Loss : 0.7465122159911057 V
+PH2 : 0.18962568740587535 atm
+PH2O : 0.2333965006712646 atm
+PO2 : 0.1863664345258084 atm
+Power-Thermal : 205.24595653691517 W
+###########
+I :53.9 A
+
+E : 6.067578902462195 V
+Eta Activation : 0.6031120227131215 V
+Eta Concentration : 0.019813987696692292 V
+Eta Ohmic : 0.12410642110766573 V
+FC Efficiency : 0.29902778780446126
+FC Power : 125.71726254875159 W
+FC Voltage : 2.3324167448747977 V
+Loss : 0.7470324315174794 V
+PH2 : 0.18961163702426098 atm
+PH2O : 0.23337920707593607 atm
+PO2 : 0.1863585016876101 atm
+Power-Thermal : 205.76773745124842 W
+###########
+I :54.0 A
+
+E : 6.067577329677288 V
+Eta Activation : 0.6032369297343054 V
+Eta Concentration : 0.019886880761266067 V
+Eta Ohmic : 0.12442947246579145 V
+FC Efficiency : 0.29869370703467596
+FC Power : 125.80978940300554 W
+FC Voltage : 2.329810914870473 V
+Loss : 0.747553282961363 V
+PH2 : 0.1895975866426466 atm
+PH2O : 0.23336191348060753 atm
+PO2 : 0.18635056884941179 atm
+Power-Thermal : 206.29021059699448 W
+###########
+I :54.1 A
+
+E : 6.067575756825427 V
+Eta Activation : 0.6033616098634469 V
+Eta Concentration : 0.019960107433704657 V
+Eta Ohmic : 0.12475305825087502 V
+FC Efficiency : 0.2983592152673454
+FC Power : 125.9016216585144 W
+FC Voltage : 2.327201879085294 V
+Loss : 0.7480747755480266 V
+PH2 : 0.1895835362610322 atm
+PH2O : 0.233344619885279 atm
+PO2 : 0.18634263601121348 atm
+Power-Thermal : 206.81337834148562 W
+###########
+I :54.2 A
+
+E : 6.067574183906608 V
+Eta Activation : 0.6034860639390495 V
+Eta Concentration : 0.020033670781682725 V
+Eta Ohmic : 0.12507717982155245 V
+FC Efficiency : 0.29802430912758776
+FC Power : 125.99275692677902 W
+FC Voltage : 2.3245896111951847 V
+Loss : 0.7485969145422846 V
+PH2 : 0.18956948587941783 atm
+PH2O : 0.23332732628995045 atm
+PO2 : 0.18633470317301518 atm
+Power-Thermal : 207.33724307322103 W
+###########
+I :54.3 A
+
+E : 6.067572610920822 V
+Eta Activation : 0.6036102927949798 V
+Eta Concentration : 0.020107573915383436 V
+Eta Ohmic : 0.12540183853894019 V
+FC Efficiency : 0.2976889852146544
+FC Power : 126.08319279781475 W
+FC Voltage : 2.321974084674305 V
+Loss : 0.7491197052493034 V
+PH2 : 0.18955543549780343 atm
+PH2O : 0.23331003269462192 atm
+PO2 : 0.18632677033481687 atm
+Power-Thermal : 207.86180720218525 W
+###########
+I :54.4 A
+
+E : 6.067571037868065 V
+Eta Activation : 0.6037342972605018 V
+Eta Concentration : 0.020181819988287476 V
+Eta Ohmic : 0.1257270357666382 V
+FC Efficiency : 0.2973532401014009
+FC Power : 126.17292683982645 W
+FC Voltage : 2.3193552727909275 V
+Loss : 0.7496431530154275 V
+PH2 : 0.18954138511618904 atm
+PH2O : 0.23329273909929338 atm
+PO2 : 0.18631883749661857 atm
+Power-Thermal : 208.38707316017357 W
+###########
+I :54.5 A
+
+E : 6.06756946474833 V
+Eta Activation : 0.6038580781603107 V
+Eta Concentration : 0.020256412197980456 V
+Eta Ohmic : 0.12605277287073327 V
+FC Efficiency : 0.29701707033374464
+FC Power : 126.26195659887485 W
+FC Voltage : 2.316733148603208 V
+Loss : 0.7501672632290244 V
+PH2 : 0.18952733473457464 atm
+PH2O : 0.23327544550396484 atm
+PO2 : 0.18631090465842026 atm
+Power-Thermal : 208.91304340112518 W
+###########
+I :54.6 A
+
+E : 6.067567891561615 V
+Eta Activation : 0.6039816363145661 V
+Eta Concentration : 0.020331353786979273 V
+Eta Ohmic : 0.1263790512198017 V
+FC Efficiency : 0.2966804724301128
+FC Power : 126.35027959853645 W
+FC Voltage : 2.31410768495488 V
+Loss : 0.750692041321347 V
+PH2 : 0.18951328435296022 atm
+PH2O : 0.23325815190863625 atm
+PO2 : 0.18630297182022196 atm
+Power-Thermal : 209.43972040146357 W
+###########
+I :54.7 A
+
+E : 6.06756631830791 V
+Eta Activation : 0.6041049725389255 V
+Eta Concentration : 0.02040664804357788 V
+Eta Ohmic : 0.1267058721849127 V
+FC Efficiency : 0.2963434428808756
+FC Power : 126.43789333955442 W
+FC Voltage : 2.3114788544708302 V
+Loss : 0.751217492767416 V
+PH2 : 0.18949923397134585 atm
+PH2O : 0.2332408583133077 atm
+PO2 : 0.18629503898202365 atm
+Power-Thermal : 209.9671066604456 W
+###########
+I :54.8 A
+
+E : 6.067564744987211 V
+Eta Activation : 0.6042280876445778 V
+Eta Concentration : 0.020482298302713014 V
+Eta Ohmic : 0.12703323713963163 V
+FC Efficiency : 0.29600597814776913
+FC Power : 126.52479529948243 W
+FC Voltage : 2.3088466295525993 V
+Loss : 0.7517436230869224 V
+PH2 : 0.18948518358973146 atm
+PH2O : 0.23322356471797917 atm
+PO2 : 0.18628710614382535 atm
+Power-Thermal : 210.49520470051758 W
+###########
+I :54.9 A
+
+E : 6.067563171599514 V
+Eta Activation : 0.604350982438274 V
+Eta Concentration : 0.020558307946850575 V
+Eta Ohmic : 0.12736114746002306 V
+FC Efficiency : 0.29566807466330464
+FC Power : 126.61098293232031 W
+FC Voltage : 2.306210982373776 V
+Loss : 0.7522704378451476 V
+PH2 : 0.18947113320811707 atm
+PH2O : 0.23320627112265063 atm
+PO2 : 0.18627917330562704 atm
+Power-Thermal : 211.0240170676797 W
+###########
+I :55.0 A
+
+E : 6.0675615981448106 V
+Eta Activation : 0.6044736577223617 V
+Eta Concentration : 0.020634680406893105 V
+Eta Ohmic : 0.12768960452465367 V
+FC Efficiency : 0.2953297288301626
+FC Power : 126.69645366813977 W
+FC Voltage : 2.3035718848752684 V
+Loss : 0.7527979426539084 V
+PH2 : 0.1894570828265027 atm
+PH2O : 0.23318897752732207 atm
+PO2 : 0.18627124046742874 atm
+Power-Thermal : 211.55354633186025 W
+###########
+I :55.1 A
+
+E : 6.067560024623097 V
+Eta Activation : 0.6045961142948161 V
+Eta Concentration : 0.02071141916310899 V
+Eta Ohmic : 0.12801860971459592 V
+FC Efficiency : 0.2949909370205759
+FC Power : 126.7812049127031 W
+FC Voltage : 2.300929308760492 V
+Loss : 0.753326143172521 V
+PH2 : 0.1894430324448883 atm
+PH2O : 0.23317168393199353 atm
+PO2 : 0.18626330762923043 atm
+Power-Thermal : 212.08379508729692 W
+###########
+I :55.2 A
+
+E : 6.067558451034365 V
+Eta Activation : 0.604718352949271 V
+Eta Concentration : 0.020788527746084168 V
+Eta Ohmic : 0.12834816441343064 V
+FC Efficiency : 0.2946516955756969
+FC Power : 126.86523404707208 W
+FC Voltage : 2.298283225490436 V
+Loss : 0.7538550451087859 V
+PH2 : 0.1894289820632739 atm
+PH2O : 0.233154390336665 atm
+PO2 : 0.18625537479103213 atm
+Power-Thermal : 212.61476595292794 W
+###########
+I :55.3 A
+
+E : 6.067556877378611 V
+Eta Activation : 0.6048403744750513 V
+Eta Concentration : 0.02086600973769678 V
+Eta Ohmic : 0.1286782700072506 V
+FC Efficiency : 0.2943120008049509
+FC Power : 126.94853842720752 W
+FC Voltage : 2.295633606278617 V
+Loss : 0.7543846542199988 V
+PH2 : 0.18941493168165954 atm
+PH2O : 0.23313709674133645 atm
+PO2 : 0.18624744195283383 atm
+Power-Thermal : 213.14646157279248 W
+###########
+I :55.4 A
+
+E : 6.06755530365583 V
+Eta Activation : 0.6049621796572042 V
+Eta Concentration : 0.020943868772115543 V
+Eta Ohmic : 0.1290089278846637 V
+FC Efficiency : 0.29397184898537343
+FC Power : 127.03111538355957 W
+FC Voltage : 2.292980422085913 V
+Loss : 0.7549149763139834 V
+PH2 : 0.18940088130004515 atm
+PH2O : 0.23311980314600791 atm
+PO2 : 0.18623950911463552 atm
+Power-Thermal : 213.67888461644043 W
+###########
+I :55.5 A
+
+E : 6.067553729866014 V
+Eta Activation : 0.6050837692765294 V
+Eta Concentration : 0.021022108536822612 V
+Eta Ohmic : 0.12934013943679584 V
+FC Efficiency : 0.2936312363609326
+FC Power : 127.11296222064772 W
+FC Voltage : 2.2903236436152743 V
+Loss : 0.7554460172501479 V
+PH2 : 0.18938683091843075 atm
+PH2O : 0.23310250955067938 atm
+PO2 : 0.18623157627643722 atm
+Power-Thermal : 214.2120377793523 W
+###########
+I :55.6 A
+
+E : 6.067552156009159 V
+Eta Activation : 0.6052051441096096 V
+Eta Concentration : 0.021100732773661486 V
+Eta Ohmic : 0.1296719060572944 V
+FC Efficiency : 0.2932901591418374
+FC Power : 127.19407621663207 W
+FC Voltage : 2.287663241306332 V
+Loss : 0.7559777829405655 V
+PH2 : 0.18937278053681636 atm
+PH2O : 0.23308521595535084 atm
+PO2 : 0.1862236434382389 atm
+Power-Thermal : 214.74592378336797 W
+###########
+I :55.7 A
+
+E : 6.067550582085258 V
+Eta Activation : 0.6053263049288418 V
+Eta Concentration : 0.021179745279910806 V
+Eta Ohmic : 0.13000422914233153 V
+FC Efficiency : 0.2929486135038253
+FC Power : 127.27445462287194 W
+FC Voltage : 2.2849991853298373 V
+Loss : 0.7565102793510842 V
+PH2 : 0.189358730155202 atm
+PH2O : 0.2330679223600223 atm
+PO2 : 0.1862157106000406 atm
+Power-Thermal : 215.2805453771281 W
+###########
+I :55.8 A
+
+E : 6.067549008094307 V
+Eta Activation : 0.6054472525024661 V
+Eta Concentration : 0.02125914990938486 V
+Eta Ohmic : 0.1303371100906069 V
+FC Efficiency : 0.2926065955874382
+FC Power : 127.3540946634766 W
+FC Voltage : 2.282331445582018 V
+Loss : 0.7570435125024578 V
+PH2 : 0.1893446797735876 atm
+PH2O : 0.23305062876469376 atm
+PO2 : 0.1862077777618423 atm
+Power-Thermal : 215.8159053365234 W
+###########
+I :55.9 A
+
+E : 6.067547434036299 V
+Eta Activation : 0.6055679875945961 V
+Eta Concentration : 0.02133895057356149 V
+Eta Ohmic : 0.13067055030335156 V
+FC Efficiency : 0.292264101497276
+FC Power : 127.43299353484228 W
+FC Voltage : 2.279659991678753 V
+Loss : 0.7575774884715092 V
+PH2 : 0.1893306293919732 atm
+PH2O : 0.2330333351693652 atm
+PO2 : 0.186199844923644 atm
+Power-Thermal : 216.35200646515773 W
+###########
+I :56.0 A
+
+E : 6.067545859911228 V
+Eta Activation : 0.6056885109652492 V
+Eta Concentration : 0.0214191512427382 V
+Eta Ohmic : 0.13100455118433052 V
+FC Efficiency : 0.29192112730123576
+FC Power : 127.51114840517978 W
+FC Voltage : 2.276984792949639 V
+Loss : 0.7581122133923179 V
+PH2 : 0.18931657901035884 atm
+PH2O : 0.23301604157403666 atm
+PO2 : 0.1861919120854457 atm
+Power-Thermal : 216.88885159482024 W
+###########
+I :56.1 A
+
+E : 6.06754428571909 V
+Eta Activation : 0.6058088233703738 V
+Eta Concentration : 0.02149975594721752 V
+Eta Ohmic : 0.13133911413984659 V
+FC Efficiency : 0.2915776690297308
+FC Power : 127.58855641402963 W
+FC Voltage : 2.2743058184319005 V
+Loss : 0.7586476934574379 V
+PH2 : 0.18930252862874444 atm
+PH2O : 0.23299874797870812 atm
+PO2 : 0.1861839792472474 atm
+Power-Thermal : 217.42644358597042 W
+###########
+I :56.2 A
+
+E : 6.067542711459877 V
+Eta Activation : 0.6059289255618804 V
+Eta Concentration : 0.021580768778522264 V
+Eta Ohmic : 0.13167424057874308 V
+FC Efficiency : 0.2912337226748908
+FC Power : 127.66521467176516 W
+FC Voltage : 2.2716230368641486 V
+Loss : 0.7591839349191457 V
+PH2 : 0.18928847824713005 atm
+PH2O : 0.23298145438337958 atm
+PO2 : 0.18617604640904908 atm
+Power-Thermal : 217.96478532823488 W
+###########
+I :56.3 A
+
+E : 6.067541137133585 V
+Eta Activation : 0.6060488182876689 V
+Eta Concentration : 0.021662193890641803 V
+Eta Ohmic : 0.1320099319124076 V
+FC Efficiency : 0.29088928418974275
+FC Power : 127.74112025908362 W
+FC Voltage : 2.2689364166799932 V
+Loss : 0.7597209440907183 V
+PH2 : 0.18927442786551563 atm
+PH2O : 0.232964160788051 atm
+PO2 : 0.18616811357085078 atm
+Power-Thermal : 218.5038797409164 W
+###########
+I :56.4 A
+
+E : 6.067539562740207 V
+Eta Activation : 0.6061685022916574 V
+Eta Concentration : 0.021744035501310134 V
+Eta Ohmic : 0.13234618955477484 V
+FC Efficiency : 0.29054434948737123
+FC Power : 127.81627022648435 W
+FC Voltage : 2.2662459260014955 V
+Loss : 0.7602587273477424 V
+PH2 : 0.18926037748390123 atm
+PH2O : 0.23294686719272245 atm
+PO2 : 0.18616018073265247 atm
+Power-Thermal : 219.04372977351568 W
+###########
+I :56.5 A
+
+E : 6.06753798827974 V
+Eta Activation : 0.6062879783138118 V
+Eta Concentration : 0.021826297893316828 V
+Eta Ohmic : 0.13268301492233014 V
+FC Efficiency : 0.2901989144400572
+FC Power : 127.89066159373321 W
+FC Voltage : 2.2635515326324462 V
+Loss : 0.7607972911294587 V
+PH2 : 0.18924632710228687 atm
+PH2O : 0.2329295735973939 atm
+PO2 : 0.18615224789445417 atm
+Power-Thermal : 219.5843384062668 W
+###########
+I :56.6 A
+
+E : 6.067536413752174 V
+Eta Activation : 0.6064072470901705 V
+Eta Concentration : 0.021908985415851907 V
+Eta Ohmic : 0.13302040943411267 V
+FC Efficiency : 0.28985297487839734
+FC Power : 127.96429134931486 W
+FC Voltage : 2.2608532040514993 V
+Loss : 0.7613366419401351 V
+PH2 : 0.18923227672067247 atm
+PH2O : 0.23291228000206537 atm
+PO2 : 0.18614431505625587 atm
+Power-Thermal : 220.12570865068517 W
+###########
+I :56.7 A
+
+E : 6.067534839157506 V
+Eta Activation : 0.6065263093528757 V
+Eta Concentration : 0.021992102485885574 V
+Eta Ohmic : 0.13335837451171864 V
+FC Efficiency : 0.2895065265903983
+FC Power : 128.03715644986957 W
+FC Voltage : 2.258150907405107 V
+Loss : 0.7618767863504798 V
+PH2 : 0.18921822633905808 atm
+PH2O : 0.23289498640673684 atm
+PO2 : 0.18613638221805756 atm
+Power-Thermal : 220.66784355013044 W
+###########
+I :56.8 A
+
+E : 6.067533264495731 V
+Eta Activation : 0.606645165830199 V
+Eta Concentration : 0.022075653589584 V
+Eta Ohmic : 0.13369691157930472 V
+FC Efficiency : 0.2891595653205503
+FC Power : 128.1092538196166 W
+FC Voltage : 2.2554446095002927 V
+Loss : 0.7624177309990877 V
+PH2 : 0.1892041759574437 atm
+PH2O : 0.2328776928114083 atm
+PO2 : 0.18612844937985926 atm
+Power-Thermal : 221.21074618038338 W
+###########
+I :56.9 A
+
+E : 6.067531689766841 V
+Eta Activation : 0.6067638172465689 V
+Eta Concentration : 0.022159643283762298 V
+Eta Ohmic : 0.13403602206359133 V
+FC Efficiency : 0.2888120867688754
+FC Power : 128.18058034976227 W
+FC Voltage : 2.252734276797228 V
+Loss : 0.7629594825939225 V
+PH2 : 0.18919012557582932 atm
+PH2O : 0.23286039921607976 atm
+PO2 : 0.18612051654166095 atm
+Power-Thermal : 221.75441965023774 W
+###########
+I :57.0 A
+
+E : 6.067530114970832 V
+Eta Activation : 0.6068822643225977 V
+Eta Concentration : 0.0222440761973758 V
+Eta Ohmic : 0.13437570739386592 V
+FC Efficiency : 0.28846408658995315
+FC Power : 128.25113289789314 W
+FC Voltage : 2.2500198754016343 V
+Loss : 0.7635020479138395 V
+PH2 : 0.18917607519421492 atm
+PH2O : 0.23284310562075122 atm
+PO2 : 0.18611258370346265 atm
+Power-Thermal : 222.29886710210687 W
+###########
+I :57.1 A
+
+E : 6.0675285401076975 V
+Eta Activation : 0.6070005077751088 V
+Eta Concentration : 0.02232895703305089 V
+Eta Ohmic : 0.1347159690019863 V
+FC Efficiency : 0.2881155603919188
+FC Power : 128.3209082873528 W
+FC Voltage : 2.2473013710569667 V
+Loss : 0.7640454338101461 V
+PH2 : 0.18916202481260055 atm
+PH2O : 0.23282581202542268 atm
+PO2 : 0.18610465086526434 atm
+Power-Thermal : 222.84409171264724 W
+###########
+I :57.2 A
+
+E : 6.067526965177432 V
+Eta Activation : 0.6071185483171624 V
+Eta Concentration : 0.0224142905686567 V
+Eta Ohmic : 0.13505680832238387 V
+FC Efficiency : 0.2877665037354381
+FC Power : 128.38990330660306 W
+FC Voltage : 2.244578729136417 V
+Loss : 0.764589647208203 V
+PH2 : 0.18914797443098616 atm
+PH2O : 0.23280851843009412 atm
+PO2 : 0.18609671802706604 atm
+Power-Thermal : 223.39009669339697 W
+###########
+I :57.3 A
+
+E : 6.0675253901800295 V
+Eta Activation : 0.6072363866580821 V
+Eta Concentration : 0.022500081658918855 V
+Eta Ohmic : 0.1353982267920671 V
+FC Efficiency : 0.2874169121326525
+FC Power : 128.4581147085677 W
+FC Voltage : 2.24185191463469 V
+Loss : 0.765134695109068 V
+PH2 : 0.18913392404937177 atm
+PH2O : 0.23279122483476558 atm
+PO2 : 0.18608878518886773 atm
+Power-Thermal : 223.93688529143228 W
+###########
+I :57.4 A
+
+E : 6.067523815115484 V
+Eta Activation : 0.6073540235034819 V
+Eta Concentration : 0.022586335237076878 V
+Eta Ohmic : 0.1357402258506248 V
+FC Efficiency : 0.2870667810460982
+FC Power : 128.52553920995908 W
+FC Voltage : 2.239120892159566 V
+Loss : 0.7656805845911836 V
+PH2 : 0.18911987366775737 atm
+PH2O : 0.23277393123943704 atm
+PO2 : 0.18608085235066943 atm
+Power-Thermal : 224.4844607900409 W
+###########
+I :57.5 A
+
+E : 6.067522239983791 V
+Eta Activation : 0.6074714595552902 V
+Eta Concentration : 0.022673056316586303 V
+Eta Ohmic : 0.13608280694022956 V
+FC Efficiency : 0.28671610588759755
+FC Power : 128.5921734905875 W
+FC Voltage : 2.2363856259232606 V
+Loss : 0.7662273228121061 V
+PH2 : 0.189105823286143 atm
+PH2O : 0.2327566376441085 atm
+PO2 : 0.18607291951247112 atm
+Power-Thermal : 225.03282650941253 W
+###########
+I :57.6 A
+
+E : 6.0675206647849445 V
+Eta Activation : 0.6075886955117774 V
+Eta Concentration : 0.022760249992867347 V
+Eta Ohmic : 0.13642597150564084 V
+FC Efficiency : 0.2863648820171175
+FC Power : 128.65801419265057 W
+FC Voltage : 2.233646079733517 V
+Loss : 0.7667749170102856 V
+PH2 : 0.1890917729045286 atm
+PH2O : 0.23273934404877997 atm
+PO2 : 0.18606498667427282 atm
+Power-Thermal : 225.58198580734944 W
+###########
+I :57.7 A
+
+E : 6.067519089518938 V
+Eta Activation : 0.6077057320675796 V
+Eta Concentration : 0.022847921445101352 V
+Eta Ohmic : 0.13676972099420875 V
+FC Efficiency : 0.2860131047416012
+FC Power : 128.72305792000503 W
+FC Voltage : 2.2309022169844894 V
+Loss : 0.7673233745068897 V
+PH2 : 0.18907772252291422 atm
+PH2O : 0.23272205045345143 atm
+PO2 : 0.18605705383607452 atm
+Power-Thermal : 226.13194207999499 W
+###########
+I :57.8 A
+
+E : 6.067517514185765 V
+Eta Activation : 0.6078225699137246 V
+Eta Concentration : 0.02293607593807686 V
+Eta Ohmic : 0.1371140568558771 V
+FC Efficiency : 0.2856607693137656
+FC Power : 128.7873012374181 W
+FC Voltage : 2.228154000647372 V
+Loss : 0.7678727027076786 V
+PH2 : 0.18906367214129985 atm
+PH2O : 0.2327047568581229 atm
+PO2 : 0.1860491209978762 atm
+Power-Thermal : 226.6826987625819 W
+###########
+I :57.9 A
+
+E : 6.067515938785423 V
+Eta Activation : 0.6079392097376571 V
+Eta Concentration : 0.023024718824086708 V
+Eta Ohmic : 0.13745898054318695 V
+FC Efficiency : 0.28530787093086774
+FC Power : 128.85074066979848 W
+FC Voltage : 2.2254013932607686 V
+Loss : 0.7684229091049308 V
+PH2 : 0.18904962175968545 atm
+PH2O : 0.23268746326279435 atm
+PO2 : 0.1860411881596779 atm
+Power-Thermal : 227.23425933020152 W
+###########
+I :58.0 A
+
+E : 6.067514363317902 V
+Eta Activation : 0.6080556522232625 V
+Eta Concentration : 0.023113855544878 V
+Eta Ohmic : 0.13780449351127982 V
+FC Efficiency : 0.2849544047334359
+FC Power : 128.91337270140642 W
+FC Voltage : 2.2226443569208003 V
+Loss : 0.7689740012794204 V
+PH2 : 0.18903557137807103 atm
+PH2O : 0.23267016966746576 atm
+PO2 : 0.1860332553214796 atm
+Power-Thermal : 227.7866272985936 W
+###########
+I :58.1 A
+
+E : 6.067512787783199 V
+Eta Activation : 0.6081718980508929 V
+Eta Concentration : 0.02320349163365672 V
+Eta Ohmic : 0.13815059721790132 V
+FC Efficiency : 0.2846003658039672
+FC Power : 128.97519377504187 W
+FC Voltage : 2.2198828532709443 V
+Loss : 0.769525986902451 V
+PH2 : 0.18902152099645664 atm
+PH2O : 0.23265287607213722 atm
+PO2 : 0.1860253224832813 atm
+Power-Thermal : 228.33980622495815 W
+###########
+I :58.2 A
+
+E : 6.067511212181308 V
+Eta Activation : 0.6082879478973892 V
+Eta Concentration : 0.023293632717148814 V
+Eta Ohmic : 0.13849729312340434 V
+FC Efficiency : 0.2842457491655893
+FC Power : 129.03620029121092 W
+FC Voltage : 2.2171168434915964 V
+Loss : 0.7700788737379423 V
+PH2 : 0.18900747061484224 atm
+PH2O : 0.23263558247680868 atm
+PO2 : 0.186017389645083 atm
+Power-Thermal : 228.89379970878912 W
+###########
+I :58.3 A
+
+E : 6.067509636512224 V
+Eta Activation : 0.6084038024361077 V
+Eta Concentration : 0.02338428451771965 V
+Eta Ohmic : 0.1388445826907528 V
+FC Efficiency : 0.28389054978068234
+FC Power : 129.0963886072675 W
+FC Voltage : 2.2143462882893226 V
+Loss : 0.7706326696445802 V
+PH2 : 0.18899342023322788 atm
+PH2O : 0.23261828888148015 atm
+PO2 : 0.1860094568068847 atm
+Power-Thermal : 229.44861139273252 W
+###########
+I :58.4 A
+
+E : 6.067508060775938 V
+Eta Activation : 0.6085194623369421 V
+Eta Concentration : 0.023475452855553858 V
+Eta Ohmic : 0.1391924673855246 V
+FC Efficiency : 0.283534762549466
+FC Power : 129.15575503653278 W
+FC Voltage : 2.2115711478858353 V
+Loss : 0.7711873825780206 V
+PH2 : 0.18897936985161348 atm
+PH2O : 0.2326009952861516 atm
+PO2 : 0.18600152396868638 atm
+Power-Thermal : 230.00424496346724 W
+###########
+I :58.5 A
+
+E : 6.067506484972448 V
+Eta Activation : 0.6086349282663484 V
+Eta Concentration : 0.023567143650897612 V
+Eta Ohmic : 0.13954094867591546 V
+FC Efficiency : 0.2831783823085436
+FC Power : 129.21429584738846 W
+FC Voltage : 2.2087913820066403 V
+Loss : 0.7717430205931615 V
+PH2 : 0.1889653194699991 atm
+PH2O : 0.23258370169082304 atm
+PO2 : 0.18599359113048808 atm
+Power-Thermal : 230.56070415261158 W
+###########
+I :58.6 A
+
+E : 6.067504909101746 V
+Eta Activation : 0.6087502008873671 V
+Eta Concentration : 0.023659362926365612 V
+Eta Ohmic : 0.1398900280327421 V
+FC Efficiency : 0.2828214038294067
+FC Power : 129.27200726234523 W
+FC Voltage : 2.2060069498693724 V
+Loss : 0.7722995918464748 V
+PH2 : 0.18895126908838472 atm
+PH2O : 0.2325664080954945 atm
+PO2 : 0.18598565829228977 atm
+Power-Thermal : 231.11799273765482 W
+###########
+I :58.7 A
+
+E : 6.067503333163828 V
+Eta Activation : 0.608865280859648 V
+Eta Concentration : 0.02375211680931483 V
+Eta Ohmic : 0.14023970692944585 V
+FC Efficiency : 0.2824638218168955
+FC Power : 129.32888545708377 W
+FC Voltage : 2.2032178101717848 V
+Loss : 0.7728571045984087 V
+PH2 : 0.18893721870677033 atm
+PH2O : 0.23254911450016597 atm
+PO2 : 0.18597772545409147 atm
+Power-Thermal : 231.67611454291628 W
+###########
+I :58.8 A
+
+E : 6.067501757158686 V
+Eta Activation : 0.6089801688394725 V
+Eta Concentration : 0.023845411534287517 V
+Eta Ohmic : 0.14058998684209603 V
+FC Efficiency : 0.2821056309076161
+FC Power : 129.38492655946905 W
+FC Voltage : 2.200423921079406 V
+Loss : 0.773415567215856 V
+PH2 : 0.18892316832515593 atm
+PH2O : 0.23253182090483743 atm
+PO2 : 0.18596979261589316 atm
+Power-Thermal : 232.23507344053095 W
+###########
+I :58.9 A
+
+E : 6.067500181086317 V
+Eta Activation : 0.6090948654797761 V
+Eta Concentration : 0.023939253445525888 V
+Eta Ohmic : 0.1409408692493935 V
+FC Efficiency : 0.2817468256683127
+FC Power : 129.44012664853622 W
+FC Voltage : 2.1976252402128393 V
+Loss : 0.7739749881746956 V
+PH2 : 0.18890911794354157 atm
+PH2O : 0.2325145273095089 atm
+PO2 : 0.18596185977769486 atm
+Power-Thermal : 232.7948733514638 W
+###########
+I :59.0 A
+
+E : 6.067498604946713 V
+Eta Activation : 0.6092093714301721 V
+Eta Concentration : 0.024033648999560904 V
+Eta Ohmic : 0.1412923556326739 V
+FC Efficiency : 0.28138740059418943
+FC Power : 129.494481753446 W
+FC Voltage : 2.1948217246346777 V
+Loss : 0.774535376062407 V
+PH2 : 0.18889506756192717 atm
+PH2O : 0.23249723371418035 atm
+PO2 : 0.18595392693949656 atm
+Power-Thermal : 233.35551824655403 W
+###########
+I :59.1 A
+
+E : 6.067497028739869 V
+Eta Activation : 0.609323687336973 V
+Eta Concentration : 0.024128604767877933 V
+Eta Ohmic : 0.14164444747591148 V
+FC Efficiency : 0.2810273501071867
+FC Power : 129.54798785241096 W
+FC Voltage : 2.1920133308360565 V
+Loss : 0.7750967395807624 V
+PH2 : 0.18888101718031278 atm
+PH2O : 0.2324799401188518 atm
+PO2 : 0.18594599410129825 atm
+Power-Thermal : 233.91701214758908 W
+###########
+I :59.2 A
+
+E : 6.06749545246578 V
+Eta Activation : 0.6094378138432135 V
+Eta Concentration : 0.024224127439662006 V
+Eta Ohmic : 0.14199714626572238 V
+FC Efficiency : 0.2806666685542039
+FC Power : 129.6006408715892 W
+FC Voltage : 2.1892000147227906 V
+Loss : 0.7756590875485978 V
+PH2 : 0.18886696679869838 atm
+PH2O : 0.23246264652352328 atm
+PO2 : 0.18593806126309995 atm
+Power-Thermal : 234.47935912841083 W
+###########
+I :59.3 A
+
+E : 6.0674938761244395 V
+Eta Activation : 0.6095517515886733 V
+Eta Concentration : 0.024320223824625384 V
+Eta Ohmic : 0.14235045349136802 V
+FC Efficiency : 0.28030535020527003
+FC Power : 129.6524366839456 W
+FC Voltage : 2.1863817316011063 V
+Loss : 0.7762224289046666 V
+PH2 : 0.18885291641708402 atm
+PH2O : 0.23244535292819474 atm
+PO2 : 0.18593012842490164 atm
+Power-Thermal : 235.0425633160544 W
+###########
+I :59.4 A
+
+E : 6.067492299715841 V
+Eta Activation : 0.609665501209897 V
+Eta Concentration : 0.024416900855920784 V
+Eta Ohmic : 0.14270437064475888 V
+FC Efficiency : 0.27994338925166123
+FC Power : 129.7033711080797 W
+FC Voltage : 2.183558436162958 V
+Loss : 0.7767867727105766 V
+PH2 : 0.18883886603546962 atm
+PH2O : 0.2324280593328662 atm
+PO2 : 0.18592219558670334 atm
+Power-Thermal : 235.6066288919203 W
+###########
+I :59.5 A
+
+E : 6.06749072323998 V
+Eta Activation : 0.6097790633402183 V
+Eta Concentration : 0.024514165593142897 V
+Eta Ohmic : 0.14305889922045784 V
+FC Efficiency : 0.2795807798039597
+FC Power : 129.7534399070177 W
+FC Voltage : 2.1807300824708857 V
+Loss : 0.7773521281538189 V
+PH2 : 0.18882481565385523 atm
+PH2O : 0.23241076573753763 atm
+PO2 : 0.18591426274850503 atm
+Power-Thermal : 236.17156009298233 W
+###########
+I :59.6 A
+
+E : 6.06748914669685 V
+Eta Activation : 0.6098924386097795 V
+Eta Concentration : 0.024612025225421885 V
+Eta Ohmic : 0.1434140407156837 V
+FC Efficiency : 0.27921751589005456
+FC Power : 129.80263878696854 W
+FC Voltage : 2.1778966239424253 V
+Loss : 0.777918504550885 V
+PH2 : 0.18881076527224086 atm
+PH2O : 0.2323934721422091 atm
+PO2 : 0.18590632991030673 atm
+Power-Thermal : 236.73736121303148 W
+###########
+I :59.7 A
+
+E : 6.067487570086446 V
+Eta Activation : 0.6100056276455539 V
+Eta Concentration : 0.024710487074611934 V
+Eta Ohmic : 0.14376979663031486 V
+FC Efficiency : 0.2788535914530824
+FC Power : 129.85096339604235 W
+FC Voltage : 2.1750580133340427 V
+Loss : 0.7784859113504807 V
+PH2 : 0.18879671489062644 atm
+PH2O : 0.23237617854688053 atm
+PO2 : 0.18589839707210842 atm
+Power-Thermal : 237.30403660395768 W
+###########
+I :59.8 A
+
+E : 6.067485993408762 V
+Eta Activation : 0.6101186310713677 V
+Eta Concentration : 0.02480955859857866 V
+Eta Ohmic : 0.14412616846689255 V
+FC Efficiency : 0.2784890003493035
+FC Power : 129.89840932292913 W
+FC Voltage : 2.1722142027245677 V
+Loss : 0.7790543581368389 V
+PH2 : 0.18878266450901204 atm
+PH2O : 0.23235888495155196 atm
+PO2 : 0.18589046423391012 atm
+Power-Thermal : 237.87159067707086 W
+###########
+I :59.9 A
+
+E : 6.067484416663792 V
+Eta Activation : 0.610231449507919 V
+Eta Concentration : 0.02490924739458885 V
+Eta Ohmic : 0.1444831577306248 V
+FC Efficiency : 0.2781237363459139
+FC Power : 129.9449720955379 W
+FC Voltage : 2.1693651434981285 V
+Loss : 0.7796238546331327 V
+PH2 : 0.18876861412739765 atm
+PH2O : 0.23234159135622343 atm
+PO2 : 0.18588253139571181 atm
+Power-Thermal : 238.4400279044621 W
+###########
+I :60.0 A
+
+E : 6.0674828398515315 V
+Eta Activation : 0.610344083572801 V
+Eta Concentration : 0.025009561202806375 V
+Eta Ohmic : 0.14484076592938971 V
+FC Efficiency : 0.27775779311878795
+FC Power : 129.99064717959277 W
+FC Voltage : 2.1665107863265463 V
+Loss : 0.7801944107049971 V
+PH2 : 0.18875456374578325 atm
+PH2O : 0.2323242977608949 atm
+PO2 : 0.1858745985575135 atm
+Power-Thermal : 239.00935282040726 W
+###########
+I :60.1 A
+
+E : 6.067481262971972 V
+Eta Activation : 0.6104565338805208 V
+Eta Concentration : 0.025110507909898615 V
+Eta Ohmic : 0.14519899457373903 V
+FC Efficiency : 0.27739116425015115
+FC Power : 130.03542997718588 W
+FC Voltage : 2.1636510811511793 V
+Loss : 0.7807660363641585 V
+PH2 : 0.1887405133641689 atm
+PH2O : 0.23230700416556635 atm
+PO2 : 0.1858666657193152 atm
+Power-Thermal : 239.57957002281415 W
+###########
+I :60.2 A
+
+E : 6.06747968602511 V
+Eta Activation : 0.6105688010425216 V
+Eta Concentration : 0.025212095552757153 V
+Eta Ohmic : 0.1455578451769018 V
+FC Efficiency : 0.27702384322618046
+FC Power : 130.0793158252853 W
+FC Voltage : 2.1607859771642075 V
+Loss : 0.7813387417721805 V
+PH2 : 0.1887264629825545 atm
+PH2O : 0.2322897105702378 atm
+PO2 : 0.1858587328811169 atm
+Power-Thermal : 240.15068417471474 W
+###########
+I :60.3 A
+
+E : 6.06747810901094 V
+Eta Activation : 0.6106808856672008 V
+Eta Concentration : 0.025314332322337485 V
+Eta Ohmic : 0.14591731925478782 V
+FC Efficiency : 0.2766558234345269
+FC Power : 130.12229999419537 W
+FC Voltage : 2.15791542278931 V
+Loss : 0.7819125372443261 V
+PH2 : 0.1887124126009401 atm
+PH2O : 0.23227241697490927 atm
+PO2 : 0.1858508000429186 atm
+Power-Thermal : 240.72270000580463 W
+###########
+I :60.4 A
+
+E : 6.067476531929454 V
+Eta Activation : 0.6107927883599327 V
+Eta Concentration : 0.025417226567622134 V
+Eta Ohmic : 0.1462774183259916 V
+FC Efficiency : 0.2762870981617592
+FC Power : 130.16437768596802 W
+FC Voltage : 2.155039365661722 V
+Loss : 0.7824874332535464 V
+PH2 : 0.18869836221932573 atm
+PH2O : 0.23225512337958074 atm
+PO2 : 0.1858428672047203 atm
+Power-Thermal : 241.295622314032 W
+###########
+I :60.5 A
+
+E : 6.06747495478065 V
+Eta Activation : 0.610904509723087 V
+Eta Concentration : 0.02552078679971201 V
+Eta Ohmic : 0.1466381439117955 V
+FC Efficiency : 0.2759176605907278
+FC Power : 130.2055440327645 W
+FC Voltage : 2.1521577526076774 V
+Loss : 0.7830634404345945 V
+PH2 : 0.18868431183771134 atm
+PH2O : 0.2322378297842522 atm
+PO2 : 0.185834934366522 atm
+Power-Thermal : 241.86945596723555 W
+###########
+I :60.6 A
+
+E : 6.067473377564517 V
+Eta Activation : 0.6110160503560491 V
+Eta Concentration : 0.025625021696051107 V
+Eta Ohmic : 0.14699949753617347 V
+FC Efficiency : 0.2755475037978396
+FC Power : 130.24579409516284 W
+FC Voltage : 2.149270529623149 V
+Loss : 0.7836405695882737 V
+PH2 : 0.18867026145609694 atm
+PH2O : 0.23222053618892366 atm
+PO2 : 0.18582700152832368 atm
+Power-Thermal : 242.44420590483722 W
+###########
+I :60.7 A
+
+E : 6.067471800281055 V
+Eta Activation : 0.6111274108552391 V
+Eta Concentration : 0.02572994010478966 V
+Eta Ohmic : 0.14736148072579494 V
+FC Efficiency : 0.2751766207502482
+FC Power : 130.28512286041254 W
+FC Voltage : 2.1463776418519362 V
+Loss : 0.7842188316858237 V
+PH2 : 0.18865621107448258 atm
+PH2O : 0.23220324259359512 atm
+PO2 : 0.18581906869012538 atm
+Power-Thermal : 243.0198771395875 W
+###########
+I :60.8 A
+
+E : 6.067470222930254 V
+Eta Activation : 0.6112385918141326 V
+Eta Concentration : 0.025835551049291288 V
+Eta Ohmic : 0.14772409501002798 V
+FC Efficiency : 0.274805004302948
+FC Power : 130.32352524063006 W
+FC Voltage : 2.1434790335629947 V
+Loss : 0.7847982378734518 V
+PH2 : 0.18864216069286818 atm
+PH2O : 0.23218594899826656 atm
+PO2 : 0.18581113585192707 atm
+Power-Thermal : 243.5964747593699 W
+###########
+I :60.9 A
+
+E : 6.067468645512109 V
+Eta Activation : 0.6113495938232792 V
+Eta Concentration : 0.02594186373278998 V
+Eta Ohmic : 0.1480873419209434 V
+FC Efficiency : 0.2744326471957751
+FC Power : 130.36099607093712 W
+FC Voltage : 2.1405746481270462 V
+Loss : 0.7853787994770126 V
+PH2 : 0.1886281103112538 atm
+PH2O : 0.23216865540293802 atm
+PO2 : 0.18580320301372877 atm
+Power-Thermal : 244.1740039290629 W
+###########
+I :61.0 A
+
+E : 6.067467068026616 V
+Eta Activation : 0.6114604174703213 V
+Eta Concentration : 0.026048887543202733 V
+Eta Ohmic : 0.148451222993318 V
+FC Efficiency : 0.2740595420503084
+FC Power : 130.39753010753674 W
+FC Voltage : 2.1376644279924055 V
+Loss : 0.7859605280068421 V
+PH2 : 0.1886140599296394 atm
+PH2O : 0.23215136180760948 atm
+PO2 : 0.18579527017553046 atm
+Power-Thermal : 244.75246989246332 W
+###########
+I :61.1 A
+
+E : 6.067465490473768 V
+Eta Activation : 0.6115710633400149 V
+Eta Concentration : 0.026156632058104232 V
+Eta Ohmic : 0.1488157397646385 V
+FC Efficiency : 0.2736856813666641
+FC Power : 130.43312202572477 W
+FC Voltage : 2.13474831465998 V
+Loss : 0.7865434351627576 V
+PH2 : 0.18860000954802503 atm
+PH2O : 0.23213406821228094 atm
+PO2 : 0.18578733733733216 atm
+Power-Thermal : 245.33187797427524 W
+###########
+I :61.2 A
+
+E : 6.067463912853559 V
+Eta Activation : 0.6116815320142457 V
+Eta Concentration : 0.02626510704987031 V
+Eta Ohmic : 0.14918089377510504 V
+FC Efficiency : 0.27331105752018636
+FC Power : 130.4677664178362 W
+FC Voltage : 2.131826248657454 V
+Loss : 0.787127532839221 V
+PH2 : 0.18858595916641063 atm
+PH2O : 0.2321167746169524 atm
+PO2 : 0.18577940449913385 atm
+Power-Thermal : 245.91223358216385 W
+###########
+I :61.3 A
+
+E : 6.067462335165984 V
+Eta Activation : 0.6117918240720506 V
+Eta Concentration : 0.026374322490996693 V
+Eta Ohmic : 0.14954668656763487 V
+FC Efficiency : 0.27293566275802217
+FC Power : 130.5014577911207 W
+FC Voltage : 2.128898169512573 V
+Loss : 0.7877128331306822 V
+PH2 : 0.18857190878479624 atm
+PH2O : 0.23209948102162387 atm
+PO2 : 0.18577147166093555 atm
+Power-Thermal : 246.49354220887932 W
+###########
+I :61.4 A
+
+E : 6.0674607574110375 V
+Eta Activation : 0.6119019400896345 V
+Eta Concentration : 0.02648428855960088 V
+Eta Ohmic : 0.14991311968786616 V
+FC Efficiency : 0.2725594891955807
+FC Power : 130.53419056554753 W
+FC Voltage : 2.12596401572553 V
+Loss : 0.7882993483371015 V
+PH2 : 0.18855785840318187 atm
+PH2O : 0.23208218742629533 atm
+PO2 : 0.18576353882273725 atm
+Power-Thermal : 247.07580943445248 W
+###########
+I :61.5 A
+
+E : 6.067459179588712 V
+Eta Activation : 0.6120118806403902 V
+Eta Concentration : 0.02659501564511406 V
+Eta Ohmic : 0.1502801946841614 V
+FC Efficiency : 0.27218252881286975
+FC Power : 130.56595907153363 W
+FC Voltage : 2.123023724740384 V
+Loss : 0.7888870909696657 V
+PH2 : 0.18854380802156745 atm
+PH2O : 0.23206489383096673 atm
+PO2 : 0.18575560598453894 atm
+Power-Thermal : 247.6590409284664 W
+###########
+I :61.6 A
+
+E : 6.0674576016990045 V
+Eta Activation : 0.6121216462949148 V
+Eta Concentration : 0.026706514354171568 V
+Eta Ohmic : 0.1506479131076114 V
+FC Efficiency : 0.2718047734507071
+FC Power : 130.59675754759576 W
+FC Voltage : 2.1200772329155155 V
+Loss : 0.7894760737566978 V
+PH2 : 0.18852975763995306 atm
+PH2O : 0.2320476002356382 atm
+PO2 : 0.18574767314634064 atm
+Power-Thermal : 248.24324245240427 W
+###########
+I :61.7 A
+
+E : 6.067456023741906 V
+Eta Activation : 0.612231237621029 V
+Eta Concentration : 0.02681879551670991 V
+Eta Ohmic : 0.15101627651203867 V
+FC Efficiency : 0.27142621480679713
+FC Power : 130.6265801379192 W
+FC Voltage : 2.117124475493018 V
+Loss : 0.7900663096497776 V
+PH2 : 0.18851570725833866 atm
+PH2O : 0.23203030664030966 atm
+PO2 : 0.18573974030814233 atm
+Power-Thermal : 248.82841986208084 W
+###########
+I :61.8 A
+
+E : 6.067454445717414 V
+Eta Activation : 0.612340655183796 V
+Eta Concentration : 0.026931870192279373 V
+Eta Ohmic : 0.15138528645400154 V
+FC Efficiency : 0.27104684443167043
+FC Power : 130.65542088984242 W
+FC Voltage : 2.1141653865670293 V
+Loss : 0.7906578118300769 V
+PH2 : 0.18850165687672427 atm
+PH2O : 0.23201301304498112 atm
+PO2 : 0.18573180746994403 atm
+Power-Thermal : 249.41457911015763 W
+###########
+I :61.9 A
+
+E : 6.06745286762552 V
+Eta Activation : 0.6124498995455365 V
+Eta Concentration : 0.027045749676581212 V
+Eta Ohmic : 0.15175494449279758 V
+FC Efficiency : 0.2706666537244799
+FC Power : 130.6832737512534 W
+FC Voltage : 2.1111998990509435 V
+Loss : 0.7912505937149154 V
+PH2 : 0.1884876064951099 atm
+PH2O : 0.23199571944965258 atm
+PO2 : 0.18572387463174572 atm
+Power-Thermal : 250.00172624874665 W
+###########
+I :62.0 A
+
+E : 6.06745128946622 V
+Eta Activation : 0.6125589712658496 V
+Eta Concentration : 0.02716044550823901 V
+Eta Ohmic : 0.15212525219046724 V
+FC Efficiency : 0.2702856339286462
+FC Power : 130.7101325678933 W
+FC Voltage : 2.1082279446434407 V
+Loss : 0.7918446689645559 V
+PH2 : 0.1884735561134955 atm
+PH2O : 0.23197842585432404 atm
+PO2 : 0.18571594179354742 atm
+Power-Thermal : 250.58986743210673 W
+###########
+I :62.1 A
+
+E : 6.067449711239508 V
+Eta Activation : 0.6126678709016286 V
+Eta Concentration : 0.02727596947581481 V
+Eta Ohmic : 0.1524962111117979 V
+FC Efficiency : 0.26990377612734634
+FC Power : 130.73599108056405 W
+FC Voltage : 2.1052494537933018 V
+Loss : 0.7924400514892412 V
+PH2 : 0.1884595057318811 atm
+PH2O : 0.23196113225899548 atm
+PO2 : 0.1857080089553491 atm
+Power-Thermal : 251.17900891943597 W
+###########
+I :62.2 A
+
+E : 6.067448132945376 V
+Eta Activation : 0.6127765990070784 V
+Eta Concentration : 0.027392333625080083 V
+Eta Ohmic : 0.15286782282432734 V
+FC Efficiency : 0.2695210712388394
+FC Power : 130.76084292223533 W
+FC Voltage : 2.1022643556629474 V
+Loss : 0.7930367554564858 V
+PH2 : 0.18844545535026674 atm
+PH2O : 0.23194383866366694 atm
+PO2 : 0.1857000761171508 atm
+Power-Thermal : 251.76915707776467 W
+###########
+I :62.3 A
+
+E : 6.067446554583822 V
+Eta Activation : 0.6128851561337334 V
+Eta Concentration : 0.027509550266553245 V
+Eta Ohmic : 0.15324008889834767 V
+FC Efficiency : 0.2691375100116219
+FC Power : 130.78468161504756 W
+FC Voltage : 2.099272578090651 V
+Loss : 0.7936347952986342 V
+PH2 : 0.18843140496865235 atm
+PH2O : 0.2319265450683384 atm
+PO2 : 0.1856921432789525 atm
+Power-Thermal : 252.36031838495245 W
+###########
+I :62.4 A
+
+E : 6.067444976154838 V
+Eta Activation : 0.612993542830474 V
+Eta Concentration : 0.027627631983315214 V
+Eta Ohmic : 0.15361301090690904 V
+FC Efficiency : 0.26875308301940337
+FC Power : 130.80750056720402 W
+FC Voltage : 2.0962740475513466 V
+Loss : 0.7942341857206983 V
+PH2 : 0.18841735458703796 atm
+PH2O : 0.23190925147300986 atm
+PO2 : 0.1856842104407542 atm
+Power-Thermal : 252.95249943279595 W
+###########
+I :62.5 A
+
+E : 6.067443397658417 V
+Eta Activation : 0.6131017596435447 V
+Eta Concentration : 0.027746591639115498 V
+Eta Ohmic : 0.15398659042582327 V
+FC Efficiency : 0.26836778065589734
+FC Power : 130.82929306974998 W
+FC Voltage : 2.0932686891159995 V
+Loss : 0.7948349417084836 V
+PH2 : 0.1884033042054236 atm
+PH2O : 0.23189195787768133 atm
+PO2 : 0.1856762776025559 atm
+Power-Thermal : 253.54570693025002 W
+###########
+I :62.6 A
+
+E : 6.067441819094556 V
+Eta Activation : 0.6132098071165692 V
+Eta Concentration : 0.02786644238678201 V
+Eta Ohmic : 0.1543608290336679 V
+FC Efficiency : 0.267981593129418
+FC Power : 130.8500522932322 W
+FC Voltage : 2.0902564264094603 V
+Loss : 0.7954370785370192 V
+PH2 : 0.1883892538238092 atm
+PH2O : 0.2318746642823528 atm
+PO2 : 0.1856683447643576 atm
+Power-Thermal : 254.1399477067678 W
+###########
+I :62.7 A
+
+E : 6.06744024046325 V
+Eta Activation : 0.6133176857905692 V
+Eta Concentration : 0.027987197676948145 V
+Eta Ohmic : 0.15473572831178967 V
+FC Efficiency : 0.2675945104572711
+FC Power : 130.869771284233 W
+FC Voltage : 2.0872371815667146 V
+Loss : 0.7960406117793071 V
+PH2 : 0.1883752034421948 atm
+PH2O : 0.23185737068702425 atm
+PO2 : 0.18566041192615929 atm
+Power-Thermal : 254.73522871576702 W
+###########
+I :62.8 A
+
+E : 6.0674386617644895 V
+Eta Activation : 0.6134253962039788 V
+Eta Concentration : 0.02810887126711165 V
+Eta Ohmic : 0.1551112898443085 V
+FC Efficiency : 0.26720652245993515
+FC Power : 130.88844296177462 W
+FC Voltage : 2.084210875187494 V
+Loss : 0.7966455573153991 V
+PH2 : 0.1883611530605804 atm
+PH2O : 0.2318400770916957 atm
+PO2 : 0.18565247908796098 atm
+Power-Thermal : 255.33155703822536 W
+###########
+I :62.9 A
+
+E : 6.0674370829982704 V
+Eta Activation : 0.6135329388926628 V
+Eta Concentration : 0.028231477231040754 V
+Eta Ohmic : 0.15548751521812143 V
+FC Efficiency : 0.2668176187550186
+FC Power : 130.90606011358722 W
+FC Voltage : 2.081177426289145 V
+Loss : 0.797251931341825 V
+PH2 : 0.18834710267896604 atm
+PH2O : 0.23182278349636717 atm
+PO2 : 0.18564454624976268 atm
+Power-Thermal : 255.92893988641282 W
+###########
+I :63.0 A
+
+E : 6.067435504164587 V
+Eta Activation : 0.6136403143899325 V
+Eta Concentration : 0.028355029968543326 V
+Eta Ohmic : 0.1558644060229059 V
+FC Efficiency : 0.2664277887509844
+FC Power : 130.92261539223372 W
+FC Voltage : 2.078136752257678 V
+Loss : 0.7978597503813818 V
+PH2 : 0.18833305229735164 atm
+PH2O : 0.2318054899010386 atm
+PO2 : 0.18563661341156437 atm
+Power-Thermal : 256.5273846077663 W
+###########
+I :63.1 A
+
+E : 6.067433925263433 V
+Eta Activation : 0.6137475232265613 V
+Eta Concentration : 0.028479544215616198 V
+Eta Ohmic : 0.15624196385112443 V
+FC Efficiency : 0.2660370216406312
+FC Power : 130.9381013110859 W
+FC Voltage : 2.0750887687969235 V
+Loss : 0.7984690312933019 V
+PH2 : 0.18831900191573725 atm
+PH2O : 0.23178819630571007 atm
+PO2 : 0.18562868057336607 atm
+Power-Thermal : 257.12689868891414 W
+###########
+I :63.2 A
+
+E : 6.067432346294805 V
+Eta Activation : 0.6138545659308008 V
+Eta Concentration : 0.02860503505499263 V
+Eta Ohmic : 0.15662019029802754 V
+FC Efficiency : 0.26564530639432055
+FC Power : 130.95251024014428 W
+FC Voltage : 2.0720333898757004 V
+Loss : 0.799079791283821 V
+PH2 : 0.18830495153412283 atm
+PH2O : 0.2317709027103815 atm
+PO2 : 0.18562074773516776 atm
+Power-Thermal : 257.72748975985576 W
+###########
+I :63.3 A
+
+E : 6.067430767258695 V
+Eta Activation : 0.6139614430283981 V
+Eta Concentration : 0.028731517927106428 V
+Eta Ohmic : 0.156999086961658 V
+FC Efficiency : 0.2652526317529336
+FC Power : 130.96583440169346 W
+FC Voltage : 2.0689705276728825 V
+Loss : 0.7996920479171624 V
+PH2 : 0.18829090115250846 atm
+PH2O : 0.23175360911505297 atm
+PO2 : 0.18561281489696946 atm
+Power-Thermal : 258.32916559830653 W
+###########
+I :63.4 A
+
+E : 6.067429188155097 V
+Eta Activation : 0.6140681550426096 V
+Eta Concentration : 0.028859008641493256 V
+Eta Ohmic : 0.15737865544285504 V
+FC Efficiency : 0.26485898622055215
+FC Power : 130.97806586578747 W
+FC Voltage : 2.065900092520307 V
+Loss : 0.8003058191269579 V
+PH2 : 0.18827685077089407 atm
+PH2O : 0.2317363155197244 atm
+PO2 : 0.18560488205877115 atm
+Power-Thermal : 258.93193413421255 W
+###########
+I :63.5 A
+
+E : 6.067427608984007 V
+Eta Activation : 0.6141747024942188 V
+Eta Concentration : 0.028987523388649475 V
+Eta Ohmic : 0.15775889734525753 V
+FC Efficiency : 0.2644643580568433
+FC Power : 130.98919654555448 W
+FC Voltage : 2.0628219928433777 V
+Loss : 0.8009211232281258 V
+PH2 : 0.18826280038927967 atm
+PH2O : 0.23171902192439586 atm
+PO2 : 0.18559694922057285 atm
+Power-Thermal : 259.53580345444556 W
+###########
+I :63.6 A
+
+E : 6.067426029745416 V
+Eta Activation : 0.6142810859015504 V
+Eta Concentration : 0.029117078752371402 V
+Eta Ohmic : 0.15813981427530824 V
+FC Efficiency : 0.26406873526913666
+FC Power : 130.99921819231332 W
+FC Voltage : 2.059736135099266 V
+Loss : 0.80153797892923 V
+PH2 : 0.18824875000766528 atm
+PH2O : 0.23170172832906732 atm
+PO2 : 0.18558901638237454 atm
+Power-Thermal : 260.1407818076867 W
+###########
+I :63.7 A
+
+E : 6.067424450439322 V
+Eta Activation : 0.6143873057804857 V
+Eta Concentration : 0.029247691722597974 V
+Eta Ohmic : 0.15852140784225763 V
+FC Efficiency : 0.2636721056041814
+FC Power : 131.0081223904936 W
+FC Voltage : 2.0566424237126153 V
+Loss : 0.8021564053453414 V
+PH2 : 0.1882346996260509 atm
+PH2O : 0.2316844347337388 atm
+PO2 : 0.18558108354417624 atm
+Power-Thermal : 260.74687760950644 W
+###########
+I :63.8 A
+
+E : 6.067422871065719 V
+Eta Activation : 0.6144933626444791 V
+Eta Concentration : 0.029379379708782207 V
+Eta Ohmic : 0.1589036796581676 V
+FC Efficiency : 0.2632744565395608
+FC Power : 131.01590055234703 W
+FC Voltage : 2.0535407610085743 V
+Loss : 0.8027764220114288 V
+PH2 : 0.18822064924443652 atm
+PH2O : 0.23166714113841025 atm
+PO2 : 0.18557315070597794 atm
+Power-Thermal : 261.35409944765297 W
+###########
+I :63.9 A
+
+E : 6.067421291624598 V
+Eta Activation : 0.6145992570045724 V
+Eta Concentration : 0.029512160553817345 V
+Eta Ohmic : 0.1592866313379159 V
+FC Efficiency : 0.2628757752747525
+FC Power : 131.02254391244213 W
+FC Voltage : 2.0504310471430696 V
+Loss : 0.8033980488963056 V
+PH2 : 0.18820659886282212 atm
+PH2O : 0.2316498475430817 atm
+PO2 : 0.18556521786777963 atm
+Power-Thermal : 261.9624560875579 W
+###########
+I :64.0 A
+
+E : 6.067419712115955 V
+Eta Activation : 0.6147049893694096 V
+Eta Concentration : 0.029646052548545607 V
+Eta Ohmic : 0.15967026449919922 V
+FC Efficiency : 0.2624760487218183
+FC Power : 131.0280435219317 W
+FC Voltage : 2.0473131800301827 V
+Loss : 0.8040213064171544 V
+PH2 : 0.18819254848120776 atm
+PH2O : 0.23163255394775317 atm
+PO2 : 0.18555728502958133 atm
+Power-Thermal : 262.57195647806833 W
+###########
+I :64.1 A
+
+E : 6.0674181325397845 V
+Eta Activation : 0.6148105602452533 V
+Eta Concentration : 0.029781074446879427 V
+Eta Ohmic : 0.16005458076253773 V
+FC Efficiency : 0.26207526349569643
+FC Power : 131.0323902425783 W
+FC Voltage : 2.0441870552664323 V
+Loss : 0.8046462154546704 V
+PH2 : 0.18817849809959336 atm
+PH2O : 0.23161526035242463 atm
+PO2 : 0.18554935219138302 atm
+Power-Thermal : 263.1826097574217 W
+###########
+I :64.2 A
+
+E : 6.067416552896081 V
+Eta Activation : 0.6149159701359974 V
+Eta Concentration : 0.02991724548156598 V
+Eta Ohmic : 0.1604395817512788 V
+FC Efficiency : 0.2616734059040859
+FC Power : 131.03557474053005 W
+FC Voltage : 2.04105256605187 V
+Loss : 0.8052727973688422 V
+PH2 : 0.18816444771797897 atm
+PH2O : 0.2315979667570961 atm
+PO2 : 0.18554141935318472 atm
+Power-Thermal : 263.79442525946996 W
+###########
+I :64.3 A
+
+E : 6.067414973184838 V
+Eta Activation : 0.6150212195431846 V
+Eta Concentration : 0.03005458538062824 V
+Eta Ohmic : 0.16082526909160083 V
+FC Efficiency : 0.26127046193689357
+FC Power : 131.0375874798296 W
+FC Voltage : 2.03790960310777 V
+Loss : 0.8059010740154136 V
+PH2 : 0.1881503973363646 atm
+PH2O : 0.23158067316176753 atm
+PO2 : 0.1855334865149864 atm
+Power-Thermal : 264.4074125201704 W
+###########
+I :64.4 A
+
+E : 6.06741339340605 V
+Eta Activation : 0.6151263089660179 V
+Eta Concentration : 0.03019311438451808 V
+Eta Ohmic : 0.1612116444125173 V
+FC Efficiency : 0.26086641725522863
+FC Power : 131.03841871564646 W
+FC Voltage : 2.0347580545907835 V
+Loss : 0.8065310677630534 V
+PH2 : 0.1881363469547502 atm
+PH2O : 0.231563379566439 atm
+PO2 : 0.1855255536767881 atm
+Power-Thermal : 265.0215812843536 W
+###########
+I :64.5 A
+
+E : 6.067411813559711 V
+Eta Activation : 0.6152312389013777 V
+Eta Concentration : 0.030332853264018148 V
+Eta Ohmic : 0.16159870934588072 V
+FC Efficiency : 0.2604612571799139
+FC Power : 131.0380584872147 W
+FC Voltage : 2.0315978060033286 V
+Loss : 0.8071628015112765 V
+PH2 : 0.1881222965731358 atm
+PH2O : 0.23154608597111045 atm
+PO2 : 0.1855176208385898 atm
+Power-Thermal : 265.6369415127853 W
+###########
+I :64.6 A
+
+E : 6.067410233645816 V
+Eta Activation : 0.6153360098438352 V
+Eta Concentration : 0.030473823338932622 V
+Eta Ohmic : 0.16198646552638654 V
+FC Efficiency : 0.26005496667949285
+FC Power : 131.03649661046285 W
+FC Voltage : 2.0284287401000443 V
+Loss : 0.8077962987091544 V
+PH2 : 0.18810824619152142 atm
+PH2O : 0.23152879237578192 atm
+PO2 : 0.1855096880003915 atm
+Power-Thermal : 266.2535033895371 W
+###########
+I :64.7 A
+
+E : 6.067408653664358 V
+Eta Activation : 0.6154406222856662 V
+Eta Concentration : 0.030616046497608566 V
+Eta Ohmic : 0.16237491459157719 V
+FC Efficiency : 0.2596475303577049
+FC Power : 131.03372267031935 W
+FC Voltage : 2.025250736790098 V
+Loss : 0.8084315833748519 V
+PH2 : 0.18809419580990705 atm
+PH2O : 0.23151149878045338 atm
+PO2 : 0.1855017551621932 atm
+Power-Thermal : 266.8712773296807 W
+###########
+I :64.8 A
+
+E : 6.067407073615333 V
+Eta Activation : 0.6155450767168659 V
+Eta Concentration : 0.03075954521733273 V
+Eta Ohmic : 0.16276405818184575 V
+FC Efficiency : 0.25923893244039875
+FC Power : 131.02972601267516 W
+FC Voltage : 2.0220636730351105 V
+Loss : 0.8090686801160444 V
+PH2 : 0.18808014542829266 atm
+PH2O : 0.23149420518512484 atm
+PO2 : 0.1854938223239949 atm
+Power-Thermal : 267.4902739873248 W
+###########
+I :64.9 A
+
+E : 6.067405493498733 V
+Eta Activation : 0.6156493736251631 V
+Eta Concentration : 0.030904342585651435 V
+Eta Ohmic : 0.16315389794044044 V
+FC Efficiency : 0.2588291567618536
+FC Power : 131.02449573598554 W
+FC Voltage : 2.018867422742458 V
+Loss : 0.809707614151255 V
+PH2 : 0.18806609504667826 atm
+PH2O : 0.2314769115897963 atm
+PO2 : 0.18548588948579658 atm
+Power-Thermal : 268.11050426401454 W
+###########
+I :65.0 A
+
+E : 6.067403913314554 V
+Eta Activation : 0.6157535134960338 V
+Eta Concentration : 0.031050462322663775 V
+Eta Ohmic : 0.1635444355134681 V
+FC Efficiency : 0.25841818675047773
+FC Power : 131.01802068249222 W
+FC Voltage : 2.0156618566537263 V
+Loss : 0.8103484113321656 V
+PH2 : 0.18805204466506384 atm
+PH2O : 0.2314596179944677 atm
+PO2 : 0.18547795664759828 atm
+Power-Thermal : 268.7319793175078 W
+###########
+I :65.1 A
+
+E : 6.067402333062789 V
+Eta Activation : 0.6158574968127148 V
+Eta Concentration : 0.031197928804342558 V
+Eta Ohmic : 0.16393567254989866 V
+FC Efficiency : 0.2580060054138473
+FC Power : 131.01028942904335 W
+FC Voltage : 2.012446842228009 V
+Loss : 0.810991098166956 V
+PH2 : 0.18803799428344947 atm
+PH2O : 0.23144232439913917 atm
+PO2 : 0.18547002380939998 atm
+Power-Thermal : 269.3547105709566 W
+###########
+I :65.2 A
+
+E : 6.067400752743433 V
+Eta Activation : 0.6159613240562182 V
+Eta Concentration : 0.03134676708693959 V
+Eta Ohmic : 0.16432761070156884 V
+FC Efficiency : 0.2575925953230512
+FC Power : 131.0012902774909 W
+FC Voltage : 2.0092222435197993 V
+Loss : 0.8116357018447267 V
+PH2 : 0.18802394390183508 atm
+PH2O : 0.23142503080381063 atm
+PO2 : 0.18546209097120167 atm
+Power-Thermal : 269.9787097225091 W
+###########
+I :65.3 A
+
+E : 6.067399172356479 V
+Eta Activation : 0.6160649957053442 V
+Eta Concentration : 0.031497002932537 V
+Eta Ohmic : 0.16472025162318601 V
+FC Efficiency : 0.2571779385963004
+FC Power : 130.99101124463965 W
+FC Voltage : 2.005987921051143 V
+Loss : 0.8122822502610673 V
+PH2 : 0.18800989352022068 atm
+PH2O : 0.2314077372084821 atm
+PO2 : 0.18545415813300337 atm
+Power-Thermal : 270.6039887553604 W
+###########
+I :65.4 A
+
+E : 6.0673975919019245 V
+Eta Activation : 0.6161685122366958 V
+Eta Concentration : 0.03164866283580971 V
+Eta Ohmic : 0.16511359697233274 V
+FC Efficiency : 0.25676201688176065
+FC Power : 130.97944005172377 W
+FC Voltage : 2.0027437316777332 V
+Loss : 0.8129307720448382 V
+PH2 : 0.18799584313860632 atm
+PH2O : 0.23139044361315356 atm
+PO2 : 0.18544622529480506 atm
+Power-Thermal : 271.23055994827627 W
+###########
+I :65.5 A
+
+E : 6.067396011379759 V
+Eta Activation : 0.6162718741246908 V
+Eta Concentration : 0.031801774052068105 V
+Eta Ohmic : 0.1655076484094704 V
+FC Efficiency : 0.2563448113395657
+FC Power : 130.96656411338412 W
+FC Voltage : 1.9994895284486125 V
+Loss : 0.8135812965862292 V
+PH2 : 0.18798179275699192 atm
+PH2O : 0.23137315001782502 atm
+PO2 : 0.18543829245660676 atm
+Power-Thermal : 271.8584358866159 W
+###########
+I :65.6 A
+
+E : 6.067394430789981 V
+Eta Activation : 0.6163750818415757 V
+Eta Concentration : 0.031956364626655895 V
+Eta Ohmic : 0.16590240759794328 V
+FC Efficiency : 0.25592630262296234
+FC Power : 130.95237052611736 W
+FC Voltage : 1.9962251604591064 V
+Loss : 0.8142338540661749 V
+PH2 : 0.18796774237537753 atm
+PH2O : 0.23135585642249645 atm
+PO2 : 0.18543035961840845 atm
+Power-Thermal : 272.48762947388263 W
+###########
+I :65.7 A
+
+E : 6.067392850132581 V
+Eta Activation : 0.61647813585744 V
+Eta Concentration : 0.032112463425781744 V
+Eta Ohmic : 0.16629787620398287 V
+FC Efficiency : 0.25550647085853306
+FC Power : 130.93684605616386 W
+FC Voltage : 1.992950472696558 V
+Loss : 0.8148884754872047 V
+PH2 : 0.18795369199376313 atm
+PH2O : 0.23133856282716792 atm
+PO2 : 0.18542242678021015 atm
+Power-Thermal : 273.1181539438362 W
+###########
+I :65.8 A
+
+E : 6.0673912694075565 V
+Eta Activation : 0.6165810366402272 V
+Eta Concentration : 0.03227010016886991 V
+Eta Ohmic : 0.16669405589671157 V
+FC Efficiency : 0.2550852956254504
+FC Power : 130.91997712680617 W
+FC Voltage : 1.9896653058785132 V
+Loss : 0.8155451927058087 V
+PH2 : 0.18793964161214877 atm
+PH2O : 0.23132126923183938 atm
+PO2 : 0.18541449394201184 atm
+Power-Thermal : 273.75002287319387 W
+###########
+I :65.9 A
+
+E : 6.067389688614899 V
+Eta Activation : 0.6166837846557501 V
+Eta Concentration : 0.03242930546252062 V
+Eta Ohmic : 0.16709094834814714 V
+FC Efficiency : 0.25466275593369336
+FC Power : 130.9017498050371 W
+FC Voltage : 1.9863694962828085 V
+Loss : 0.816204038466418 V
+PH2 : 0.18792559123053437 atm
+PH2O : 0.23130397563651084 atm
+PO2 : 0.18540656110381354 atm
+Power-Thermal : 274.38325019496295 W
+###########
+I :66.0 A
+
+E : 6.0673881077546055 V
+Eta Activation : 0.6167863803677021 V
+Eta Concentration : 0.03259011083617663 V
+Eta Ohmic : 0.1674885552332064 V
+FC Efficiency : 0.25423883020117694
+FC Power : 130.88214978756588 W
+FC Voltage : 1.9830628755691802 V
+Loss : 0.816865046437085 V
+PH2 : 0.18791154084891998 atm
+PH2O : 0.2312866820411823 atm
+PO2 : 0.18539862826561523 atm
+Power-Thermal : 275.01785021243415 W
+###########
+I :66.1 A
+
+E : 6.0673865268266685 V
+Eta Activation : 0.6168888242376703 V
+Eta Concentration : 0.03275254877960091 V
+Eta Ohmic : 0.16788687822970955 V
+FC Efficiency : 0.2538134962297135
+FC Power : 130.86116238611567 W
+FC Voltage : 1.9797452705917653 V
+Loss : 0.8175282512469807 V
+PH2 : 0.1878974904673056 atm
+PH2O : 0.23126938844585376 atm
+PO2 : 0.18539069542741693 atm
+Power-Thermal : 275.6538376138843 W
+###########
+I :66.2 A
+
+E : 6.067384945831082 V
+Eta Activation : 0.6169911167251493 V
+Eta Concentration : 0.03291665278227596 V
+Eta Ohmic : 0.16828591901838438 V
+FC Efficiency : 0.25338673117974786
+FC Power : 130.8387725119746 W
+FC Voltage : 1.9764165032020333 V
+Loss : 0.8181936885258096 V
+PH2 : 0.18788344008569122 atm
+PH2O : 0.23125209485052522 atm
+PO2 : 0.18538276258921862 atm
+Power-Thermal : 276.2912274880254 W
+###########
+I :66.3 A
+
+E : 6.06738336476784 V
+Eta Activation : 0.6170932582875518 V
+Eta Concentration : 0.03308245737484469 V
+Eta Ohmic : 0.16868567928287 V
+FC Efficiency : 0.25295851154378296
+FC Power : 130.81496465975192 W
+FC Voltage : 1.9730763900415074 V
+Loss : 0.8188613949452666 V
+PH2 : 0.18786938970407682 atm
+PH2O : 0.2312348012551967 atm
+PO2 : 0.18537482975102032 atm
+Power-Thermal : 276.9300353402481 W
+###########
+I :66.4 A
+
+E : 6.067381783636937 V
+Eta Activation : 0.6171952493802242 V
+Eta Concentration : 0.03324999817272143 V
+Eta Ohmic : 0.16908616070972135 V
+FC Efficiency : 0.2525288131184105
+FC Power : 130.78972289028718 W
+FC Voltage : 1.969724742323602 V
+Loss : 0.819531408262667 V
+PH2 : 0.18785533932246243 atm
+PH2O : 0.23121750765986815 atm
+PO2 : 0.18536689691282202 atm
+Power-Thermal : 277.5702771097129 W
+###########
+I :66.5 A
+
+E : 6.067380202438368 V
+Eta Activation : 0.6172970904564554 V
+Eta Concentration : 0.03341931192201001 V
+Eta Ohmic : 0.169487364988413 V
+FC Efficiency : 0.25209761097486877
+FC Power : 130.76303081266443 W
+FC Voltage : 1.9663613656039765 V
+Loss : 0.8202037673668784 V
+PH2 : 0.18784128894084806 atm
+PH2O : 0.23120021406453958 atm
+PO2 : 0.1853589640746237 atm
+Power-Thermal : 278.21196918733557 W
+###########
+I :66.6 A
+
+E : 6.067378621172129 V
+Eta Activation : 0.617398781967492 V
+Eta Concentration : 0.03359043654787798 V
+Eta Ohmic : 0.16988929381134354 V
+FC Efficiency : 0.2516648794280207
+FC Power : 130.73487156526818 W
+FC Voltage : 1.9629860595385615 V
+Loss : 0.8208785123267135 V
+PH2 : 0.18782723855923367 atm
+PH2O : 0.23118292046921105 atm
+PO2 : 0.18535103123642543 atm
+Power-Thermal : 278.8551284347318 W
+###########
+I :66.7 A
+
+E : 6.067377039838209 V
+Eta Activation : 0.6175003243625499 V
+Eta Concentration : 0.033763411205545435 V
+Eta Ohmic : 0.17029194887383967 V
+FC Efficiency : 0.25123059200365816
+FC Power : 130.70522779582322 W
+FC Voltage : 1.9595986176285338 V
+Loss : 0.8215556844419349 V
+PH2 : 0.18781318817761924 atm
+PH2O : 0.23116562687388248 atm
+PO2 : 0.1853430983982271 atm
+Power-Thermal : 279.49977220417685 W
+###########
+I :66.8 A
+
+E : 6.067375458436606 V
+Eta Activation : 0.6176017180888245 V
+Eta Concentration : 0.03393827633406047 V
+Eta Ohmic : 0.17069533187416017 V
+FC Efficiency : 0.2507947214040232
+FC Power : 130.67408164035223 W
+FC Voltage : 1.9561988269513808 V
+Loss : 0.8222353262970451 V
+PH2 : 0.18779913779600485 atm
+PH2O : 0.23114833327855394 atm
+PO2 : 0.1853351655600288 atm
+Power-Thermal : 280.1459183596478 W
+###########
+I :66.9 A
+
+E : 6.067373876967314 V
+Eta Activation : 0.6177029635915067 V
+Eta Concentration : 0.034115073713045854 V
+Eta Ohmic : 0.17109944451350034 V
+FC Efficiency : 0.2503572394714166
+FC Power : 130.64141470097462 W
+FC Voltage : 1.9527864678770497 V
+Loss : 0.8229174818180529 V
+PH2 : 0.18778508741439048 atm
+PH2O : 0.23113103968322538 atm
+PO2 : 0.1853272327218305 atm
+Power-Thermal : 280.79358529902544 W
+###########
+I :67.0 A
+
+E : 6.067372295430325 V
+Eta Activation : 0.6178040613137906 V
+Eta Concentration : 0.034293846522615835 V
+Eta Ohmic : 0.17150428849599583 V
+FC Efficiency : 0.24991811714978385
+FC Power : 130.60720802247704 W
+FC Voltage : 1.9493613137683141 V
+Loss : 0.8236021963324023 V
+PH2 : 0.1877710370327761 atm
+PH2O : 0.23111374608789684 atm
+PO2 : 0.1853192998836322 atm
+Power-Thermal : 281.442791977523 W
+###########
+I :67.1 A
+
+E : 6.067370713825636 V
+Eta Activation : 0.6179050116968886 V
+Eta Concentration : 0.03447463940667877 V
+Eta Ohmic : 0.1719098655287273 V
+FC Efficiency : 0.2494773244441234
+FC Power : 130.5714420675653 W
+FC Voltage : 1.9459231306641627 V
+Loss : 0.8242895166322947 V
+PH2 : 0.1877569866511617 atm
+PH2O : 0.2310964524925683 atm
+PO2 : 0.18531136704543388 atm
+Power-Thermal : 282.0935579324347 W
+###########
+I :67.2 A
+
+E : 6.06736913215324 V
+Eta Activation : 0.6180058151800414 V
+Eta Concentration : 0.03465749853985675 V
+Eta Ohmic : 0.17231617732172425 V
+FC Efficiency : 0.24903483037758048
+FC Power : 130.5340966907126 W
+FC Voltage : 1.9424716769451278 V
+Loss : 0.8249794910416224 V
+PH2 : 0.18774293626954733 atm
+PH2O : 0.23107915889723976 atm
+PO2 : 0.18530343420723558 atm
+Power-Thermal : 282.7459033092874 W
+###########
+I :67.3 A
+
+E : 6.067367550413131 V
+Eta Activation : 0.6181064722005307 V
+Eta Concentration : 0.034842471698273945 V
+Eta Ohmic : 0.17272322558796904 V
+FC Efficiency : 0.24859060294605928
+FC Power : 130.49515111050434 W
+FC Voltage : 1.9390067029792624 V
+Loss : 0.8256721694867737 V
+PH2 : 0.18772888588793293 atm
+PH2O : 0.23106186530191122 atm
+PO2 : 0.18529550136903727 atm
+Power-Thermal : 283.3998488894957 W
+###########
+I :67.4 A
+
+E : 6.067365968605303 V
+Eta Activation : 0.6182069831936902 V
+Eta Concentration : 0.03502960833448502 V
+Eta Ohmic : 0.17313101204340184 V
+FC Efficiency : 0.2481446090701818
+FC Power : 130.454583880376 W
+FC Voltage : 1.9355279507474181 V
+Loss : 0.826367603571577 V
+PH2 : 0.18771483550631854 atm
+PH2O : 0.23104457170658269 atm
+PO2 : 0.18528756853083897 atm
+Power-Thermal : 284.05541611962406 W
+###########
+I :67.5 A
+
+E : 6.067364386729751 V
+Eta Activation : 0.6183073485929176 V
+Eta Concentration : 0.03521895965683707 V
+Eta Ohmic : 0.17353953840692393 V
+FC Efficiency : 0.24769681454440484
+FC Power : 130.41237285762915 W
+FC Voltage : 1.9320351534463578 V
+Loss : 0.8270658466566786 V
+PH2 : 0.18770078512470414 atm
+PH2O : 0.23102727811125415 atm
+PO2 : 0.18527963569264067 atm
+Power-Thermal : 284.7126271423709 W
+###########
+I :67.6 A
+
+E : 6.06736280478647 V
+Eta Activation : 0.6184075688296861 V
+Eta Concentration : 0.0354105787135845 V
+Eta Ohmic : 0.1739488064004026 V
+FC Efficiency : 0.24724718398309023
+FC Power : 130.3684951706038 W
+FC Voltage : 1.928528035068104 V
+Loss : 0.8277669539436732 V
+PH2 : 0.18768673474308978 atm
+PH2O : 0.2310099845159256 atm
+PO2 : 0.18527170285444236 atm
+Power-Thermal : 285.37150482939614 W
+###########
+I :67.7 A
+
+E : 6.0673612227754505 V
+Eta Activation : 0.6185076443335549 V
+Eta Concentration : 0.035604520482102026 V
+Eta Ohmic : 0.17435881774867515 V
+FC Efficiency : 0.24679568076330644
+FC Power : 130.32292718387163 W
+FC Voltage : 1.9250063099537904 V
+Loss : 0.828470982564332 V
+PH2 : 0.18767268436147538 atm
+PH2O : 0.23099269092059707 atm
+PO2 : 0.18526377001624406 atm
+Power-Thermal : 286.03207281612845 W
+###########
+I :67.8 A
+
+E : 6.06735964069669 V
+Eta Activation : 0.6186075755321818 V
+Eta Concentration : 0.03580084196357103 V
+Eta Ohmic : 0.1747695741795532 V
+FC Efficiency : 0.246342266964123
+FC Power : 130.27564446130683 W
+FC Voltage : 1.9214696823201596 V
+Loss : 0.829177991675306 V
+PH2 : 0.187658633979861 atm
+PH2O : 0.2309753973252685 atm
+PO2 : 0.18525583717804575 atm
+Power-Thermal : 286.6943555386932 W
+###########
+I :67.9 A
+
+E : 6.067358058550182 V
+Eta Activation : 0.6187073628513335 V
+Eta Concentration : 0.035999602283547975 V
+Eta Ohmic : 0.17518107742382683 V
+FC Efficiency : 0.24588690330213342
+FC Power : 130.22662172687592 W
+FC Voltage : 1.9179178457566408 V
+Loss : 0.8298880425587083 V
+PH2 : 0.18764458359824662 atm
+PH2O : 0.23095810372993997 atm
+PO2 : 0.18524790433984745 atm
+Power-Thermal : 287.3583782731241 W
+###########
+I :68.0 A
+
+E : 6.067356476335921 V
+Eta Activation : 0.6188070067148972 V
+Eta Concentration : 0.03620086279885773 V
+Eta Ohmic : 0.1755933292152688 V
+FC Efficiency : 0.24542954906292339
+FC Power : 130.17583282297457 W
+FC Voltage : 1.9143504826908027 V
+Loss : 0.8306011987290237 V
+PH2 : 0.18763053321663223 atm
+PH2O : 0.23094081013461143 atm
+PO2 : 0.18523997150164914 atm
+Power-Thermal : 288.02416717702545 W
+###########
+I :68.1 A
+
+E : 6.0673548940539 V
+Eta Activation : 0.6189065075448908 V
+Eta Concentration : 0.03640468721129658 V
+Eta Ohmic : 0.17600633129063914 V
+FC Efficiency : 0.2449701620281752
+FC Power : 130.1232506661261 W
+FC Voltage : 1.9107672638197668 V
+Loss : 0.8313175260468266 V
+PH2 : 0.18761648283501783 atm
+PH2O : 0.2309235165392829 atm
+PO2 : 0.18523203866345084 atm
+Power-Thermal : 288.6917493338739 W
+###########
+I :68.2 A
+
+E : 6.067353311704116 V
+Eta Activation : 0.6190058657614759 V
+Eta Concentration : 0.03661114168867114 V
+Eta Ohmic : 0.1764200853896892 V
+FC Efficiency : 0.24450869839806846
+FC Power : 130.0688471998365 W
+FC Voltage : 1.907167847504934 V
+Loss : 0.8320370928398363 V
+PH2 : 0.18760243245340344 atm
+PH2O : 0.23090622294395435 atm
+PO2 : 0.18522410582525256 atm
+Power-Thermal : 289.36115280016355 W
+###########
+I :68.3 A
+
+E : 6.067351729286559 V
+Eta Activation : 0.619105081782966 V
+Eta Concentration : 0.036820294993748774 V
+Eta Ohmic : 0.17683459325516576 V
+FC Efficiency : 0.24404511270860973
+FC Power : 130.01259334438475 W
+FC Voltage : 1.9035518791271562 V
+Loss : 0.8327599700318805 V
+PH2 : 0.18758838207178907 atm
+PH2O : 0.23088892934862582 atm
+PO2 : 0.18521617298705426 atm
+Power-Thermal : 290.03240665561526 W
+###########
+I :68.4 A
+
+E : 6.067350146801226 V
+Eta Activation : 0.6192041560258389 V
+Eta Concentration : 0.037032218621749116 V
+Eta Ohmic : 0.17724985663281592 V
+FC Efficiency : 0.24357935774348802
+FC Power : 129.95445894330575 W
+FC Voltage : 1.8999189903992066 V
+Loss : 0.8334862312804039 V
+PH2 : 0.18757433169017465 atm
+PH2O : 0.23087163575329722 atm
+PO2 : 0.18520824014885592 atm
+Power-Thermal : 290.7055410566943 W
+###########
+I :68.5 A
+
+E : 6.06734856424811 V
+Eta Activation : 0.6193030889047477 V
+Eta Concentration : 0.037246986947063354 V
+Eta Ohmic : 0.1776658772713908 V
+FC Efficiency : 0.24311138444001293
+FC Power : 129.8944127062989 W
+FC Voltage : 1.896268798632101 V
+Loss : 0.8342159531232018 V
+PH2 : 0.18756028130856026 atm
+PH2O : 0.23085434215796868 atm
+PO2 : 0.18520030731065762 atm
+Power-Thermal : 291.3805872937011 W
+###########
+I :68.6 A
+
+E : 6.067346981627207 V
+Eta Activation : 0.6194018808325301 V
+Eta Concentration : 0.03746467737995581 V
+Eta Ohmic : 0.17808265692265013 V
+FC Efficiency : 0.24264114178865717
+FC Power : 129.83242214827467 W
+FC Voltage : 1.892600905951526 V
+Loss : 0.8349492151351361 V
+PH2 : 0.18754623092694586 atm
+PH2O : 0.23083704856264015 atm
+PO2 : 0.18519237447245931 atm
+Power-Thermal : 292.0575778517253 W
+###########
+I :68.7 A
+
+E : 6.067345398938508 V
+Eta Activation : 0.619500532220221 V
+Eta Concentration : 0.03768537053407319 V
+Eta Ohmic : 0.17850019734136674 V
+FC Efficiency : 0.24216857672566725
+FC Power : 129.76845352421606 W
+FC Voltage : 1.8889148984602047 V
+Loss : 0.8356861000956608 V
+PH2 : 0.1875321805453315 atm
+PH2O : 0.2308197549673116 atm
+PO2 : 0.185184441634261 atm
+Power-Thermal : 292.736546475784 W
+###########
+I :68.8 A
+
+E : 6.067343816182012 V
+Eta Activation : 0.6195990434770597 V
+Eta Concentration : 0.03790915040566902 V
+Eta Ohmic : 0.1789185002853304 V
+FC Efficiency : 0.2416936340181687
+FC Power : 129.70247175951005 W
+FC Voltage : 1.885210345341716 V
+Loss : 0.8364266941680591 V
+PH2 : 0.1875181301637171 atm
+PH2O : 0.23080246137198307 atm
+PO2 : 0.1851765087960627 atm
+Power-Thermal : 293.41752824048996 W
+###########
+I :68.9 A
+
+E : 6.067342233357707 V
+Eta Activation : 0.619697415010505 V
+Eta Concentration : 0.038136104565540355 V
+Eta Ohmic : 0.17933756751535299 V
+FC Efficiency : 0.2412162561411173
+FC Power : 129.63444037535928 W
+FC Voltage : 1.881486797900715 V
+Loss : 0.8371710870913984 V
+PH2 : 0.1875040797821027 atm
+PH2O : 0.23078516777665453 atm
+PO2 : 0.1851685759578644 atm
+Power-Thermal : 294.10055962464077 W
+###########
+I :69.0 A
+
+E : 6.067340650465592 V
+Eta Activation : 0.6197956472262411 V
+Eta Concentration : 0.03836632436477393 V
+Eta Ohmic : 0.1797574007952719 V
+FC Efficiency : 0.24073638314540483
+FC Power : 129.56432140885687 W
+FC Voltage : 1.8777437885341577 V
+Loss : 0.837919372386287 V
+PH2 : 0.18749002940048834 atm
+PH2O : 0.230767874181326 atm
+PO2 : 0.1851606431196661 atm
+Power-Thermal : 294.78567859114315 W
+###########
+I :69.1 A
+
+E : 6.06733906750566 V
+Eta Activation : 0.6198937405281902 V
+Eta Concentration : 0.038599905155512364 V
+Eta Ohmic : 0.18017800189195504 V
+FC Efficiency : 0.24025395251632967
+FC Power : 129.49207532725137 W
+FC Voltage : 1.8739808296273717 V
+Loss : 0.8386716475756577 V
+PH2 : 0.18747597901887395 atm
+PH2O : 0.23075058058599743 atm
+PO2 : 0.1851527102814678 atm
+Power-Thermal : 295.4729246727486 W
+###########
+I :69.2 A
+
+E : 6.067337484477906 V
+Eta Activation : 0.619991695318522 V
+Eta Concentration : 0.038836946528074644 V
+Eta Ohmic : 0.1805993725753053 V
+FC Efficiency : 0.23976889902158915
+FC Power : 129.41766093589297 W
+FC Voltage : 1.8701974123683955 V
+Loss : 0.8394280144219021 V
+PH2 : 0.18746192863725955 atm
+PH2O : 0.2307332869906689 atm
+PO2 : 0.1851447774432695 atm
+Power-Thermal : 296.1623390641071 W
+###########
+I :69.3 A
+
+E : 6.067335901382322 V
+Eta Activation : 0.6200895119976644 V
+Eta Concentration : 0.03907755256590726 V
+Eta Ohmic : 0.18102151461826435 V
+FC Efficiency : 0.23928115454783863
+FC Power : 129.3410352792887 W
+FC Voltage : 1.8663930054731415 V
+Loss : 0.840188579181836 V
+PH2 : 0.18744787825564516 atm
+PH2O : 0.23071599339534035 atm
+PO2 : 0.18513684460507118 atm
+Power-Thermal : 296.8539647207113 W
+###########
+I :69.4 A
+
+E : 6.067334318218903 V
+Eta Activation : 0.6201871909643131 V
+Eta Concentration : 0.03932183211999989 V
+Eta Ohmic : 0.1814444297968176 V
+FC Efficiency : 0.23879064792477564
+FC Power : 129.26215353463957 W
+FC Voltage : 1.8625670538132502 V
+Loss : 0.8409534528811305 V
+PH2 : 0.1874338278740308 atm
+PH2O : 0.2306986998000118 atm
+PO2 : 0.18512891176687288 atm
+Power-Thermal : 297.54784646536046 W
+###########
+I :69.5 A
+
+E : 6.067332734987643 V
+Eta Activation : 0.6202847326154417 V
+Eta Concentration : 0.03956989910457534 V
+Eta Ohmic : 0.18186811988999835 V
+FC Efficiency : 0.23829730473558539
+FC Power : 129.18096889716085 W
+FC Voltage : 1.858718976937566 V
+Loss : 0.8417227516100153 V
+PH2 : 0.1874197774924164 atm
+PH2O : 0.23068140620468328 atm
+PO2 : 0.18512097892867457 atm
+Power-Thermal : 298.2440311028392 W
+###########
+I :69.6 A
+
+E : 6.0673311516885375 V
+Eta Activation : 0.6203821373463108 V
+Eta Concentration : 0.03982187281606554 V
+Eta Ohmic : 0.18229258667989207 V
+FC Efficiency : 0.23780104711246092
+FC Power : 129.09743245641278 W
+FC Voltage : 1.8548481674771953 V
+Loss : 0.8424965968422684 V
+PH2 : 0.187405727110802 atm
+PH2O : 0.23066411260935474 atm
+PO2 : 0.18511304609047627 atm
+Power-Thermal : 298.9425675435872 W
+###########
+I :69.7 A
+
+E : 6.067329568321579 V
+Eta Activation : 0.6204794055504799 V
+Eta Concentration : 0.040077878277608614 V
+Eta Ohmic : 0.1827178319516415 V
+FC Efficiency : 0.2373017935157601
+FC Power : 129.01149306277816 W
+FC Voltage : 1.850953989422929 V
+Loss : 0.84327511577973 V
+PH2 : 0.18739167672918763 atm
+PH2O : 0.2306468190140262 atm
+PO2 : 0.18510511325227796 atm
+Power-Thermal : 299.6435069372219 W
+###########
+I :69.8 A
+
+E : 6.067327984886763 V
+Eta Activation : 0.6205765376198147 V
+Eta Concentration : 0.04033804661155707 V
+Eta Ohmic : 0.18314385749345008 V
+FC Efficiency : 0.23679945849521203
+FC Power : 128.92309718313325 W
+FC Voltage : 1.8470357762626541 V
+Loss : 0.8440584417248218 V
+PH2 : 0.18737762634757324 atm
+PH2O : 0.23062952541869766 atm
+PO2 : 0.18509718041407966 atm
+Power-Thermal : 300.34690281686676 W
+###########
+I :69.9 A
+
+E : 6.067326401384083 V
+Eta Activation : 0.6206735339444982 V
+Eta Concentration : 0.040602515442776474 V
+Eta Ohmic : 0.1835706650965874 V
+FC Efficiency : 0.2362939524313811
+FC Power : 128.83218874463762 W
+FC Voltage : 1.8430928289647728 V
+Loss : 0.8448467144838621 V
+PH2 : 0.18736357596595885 atm
+PH2O : 0.23061223182336912 atm
+PO2 : 0.18508924757588138 atm
+Power-Thermal : 301.0528112553624 W
+###########
+I :70.0 A
+
+E : 6.0673248178135335 V
+Eta Activation : 0.6207703949130409 V
+Eta Concentration : 0.040871429335838566 V
+Eta Ohmic : 0.1839982565553928 V
+FC Efficiency : 0.23578518125540665
+FC Power : 128.73870896545205 W
+FC Voltage : 1.839124413792172 V
+Loss : 0.8456400808042722 V
+PH2 : 0.18734952558434445 atm
+PH2O : 0.23059493822804059 atm
+PO2 : 0.18508131473768308 atm
+Power-Thermal : 301.761291034548 W
+###########
+I :70.1 A
+
+E : 6.067323234175108 V
+Eta Activation : 0.6208671209122882 V
+Eta Concentration : 0.04114494026958733 V
+Eta Ohmic : 0.18442663366728043 V
+FC Efficiency : 0.23527304614478559
+FC Power : 128.64259617104585 W
+FC Voltage : 1.8351297599293277 V
+Loss : 0.846438694849156 V
+PH2 : 0.18733547520273008 atm
+PH2O : 0.23057764463271202 atm
+PO2 : 0.18507338189948477 atm
+Power-Thermal : 302.47240382895416 W
+###########
+I :70.2 A
+
+E : 6.067321650468802 V
+Eta Activation : 0.6209637123274324 V
+Eta Concentration : 0.04142320815297727 V
+Eta Ohmic : 0.18485579823274362 V
+FC Efficiency : 0.23475744319269684
+FC Power : 128.5437855945931 W
+FC Voltage : 1.8311080569030356 V
+Loss : 0.8472427187131533 V
+PH2 : 0.18732142482111566 atm
+PH2O : 0.23056035103738345 atm
+PO2 : 0.18506544906128644 atm
+Power-Thermal : 303.18621440540693 W
+###########
+I :70.3 A
+
+E : 6.067320066694609 V
+Eta Activation : 0.62106016954202 V
+Eta Concentration : 0.04170640138656768 V
+Eta Ohmic : 0.18528575205535905 V
+FC Efficiency : 0.23423826304806103
+FC Power : 128.4422091597738 W
+FC Voltage : 1.8270584517748762 V
+Loss : 0.8480523229839467 V
+PH2 : 0.18730737443950127 atm
+PH2O : 0.23054305744205492 atm
+PO2 : 0.18505751622308814 atm
+Power-Thermal : 303.9027908402262 W
+###########
+I :70.4 A
+
+E : 6.067318482852523 V
+Eta Activation : 0.6211564929379627 V
+Eta Concentration : 0.04199469747461057 V
+Eta Ohmic : 0.1857164969417917 V
+FC Efficiency : 0.23371539052316637
+FC Power : 128.33779524408112 W
+FC Voltage : 1.8229800460806977 V
+Loss : 0.848867687354365 V
+PH2 : 0.18729332405788687 atm
+PH2O : 0.23052576384672635 atm
+PO2 : 0.18504958338488983 atm
+Power-Thermal : 304.6222047559189 W
+###########
+I :70.5 A
+
+E : 6.067316898942537 V
+Eta Activation : 0.6212526828955449 V
+Eta Concentration : 0.04228828369330168 V
+Eta Ohmic : 0.18614803470179897 V
+FC Efficiency : 0.233188704165296
+FC Power : 128.23046842049627 W
+FC Voltage : 1.8188718924893088 V
+Loss : 0.8496890012906456 V
+PH2 : 0.1872792736762725 atm
+PH2O : 0.2305084702513978 atm
+PO2 : 0.18504165054669153 atm
+Power-Thermal : 305.3445315795038 W
+###########
+I :70.6 A
+
+E : 6.067315314964649 V
+Eta Activation : 0.6213487397934356 V
+Eta Concentration : 0.042587357821496113 V
+Eta Ohmic : 0.1865803671482354 V
+FC Efficiency : 0.23265807578830935
+FC Power : 128.12014917510618 W
+FC Voltage : 1.814732991148813 V
+Loss : 0.8505164647631671 V
+PH2 : 0.1872652232946581 atm
+PH2O : 0.23049117665606927 atm
+PO2 : 0.18503371770849322 atm
+Power-Thermal : 306.0698508248938 W
+###########
+I :70.7 A
+
+E : 6.0673137309188485 V
+Eta Activation : 0.6214446640086948 V
+Eta Concentration : 0.04289212894102724 V
+Eta Ohmic : 0.18701349609705742 V
+FC Efficiency : 0.23212336995960914
+FC Power : 128.00675359792606 W
+FC Voltage : 1.8105622856849513 V
+Loss : 0.8513502890467795 V
+PH2 : 0.18725117291304372 atm
+PH2O : 0.23047388306074074 atm
+PO2 : 0.18502578487029492 atm
+Power-Thermal : 306.79824640207397 W
+###########
+I :70.8 A
+
+E : 6.067312146805133 V
+Eta Activation : 0.6215404559167836 V
+Eta Concentration : 0.043202818314740855 V
+Eta Ohmic : 0.18744742336732723 V
+FC Efficiency : 0.2315844434372916
+FC Power : 127.89019304380992 W
+FC Voltage : 1.8063586588108747 V
+Loss : 0.8521906975988517 V
+PH2 : 0.18723712253142935 atm
+PH2O : 0.2304565894654122 atm
+PO2 : 0.1850178520320966 atm
+Power-Thermal : 307.5298069561901 W
+###########
+I :70.9 A
+
+E : 6.067310562623494 V
+Eta Activation : 0.6216361158915742 V
+Eta Concentration : 0.04351966035147977 V
+Eta Ohmic : 0.18788215078121803 V
+FC Efficiency : 0.23104114455155564
+FC Power : 127.77037375990132 W
+FC Voltage : 1.8021209275021342 V
+Loss : 0.8530379270242721 V
+PH2 : 0.18722307214981496 atm
+PH2O : 0.23043929587008366 atm
+PO2 : 0.1850099191938983 atm
+Power-Thermal : 308.2646262400987 W
+###########
+I :71.0 A
+
+E : 6.067308978373928 V
+Eta Activation : 0.6217316443053575 V
+Eta Concentration : 0.04384290366856005 V
+Eta Ohmic : 0.18831768016401826 V
+FC Efficiency : 0.23049331252362165
+FC Power : 127.64719647558168 W
+FC Voltage : 1.797847837684249 V
+Loss : 0.8538922281379359 V
+PH2 : 0.18720902176820056 atm
+PH2O : 0.23042200227475512 atm
+PO2 : 0.1850019863557 atm
+Power-Thermal : 309.00280352441837 W
+###########
+I :71.1 A
+
+E : 6.067307394056428 V
+Eta Activation : 0.6218270415288523 V
+Eta Concentration : 0.044172812263803804 V
+Eta Ohmic : 0.1887540133441361 V
+FC Efficiency : 0.2299407767144189
+FC Power : 127.52055595028244 W
+FC Voltage : 1.7935380583724676 V
+Loss : 0.8547538671367921 V
+PH2 : 0.18719497138658617 atm
+PH2O : 0.23040470867942658 atm
+PO2 : 0.1849940535175017 atm
+Power-Thermal : 309.7444440497176 W
+###########
+I :71.2 A
+
+E : 6.06730580967099 V
+Eta Activation : 0.6219223079312147 V
+Eta Concentration : 0.04450966681096916 V
+Eta Ohmic : 0.18919115215310445 V
+FC Efficiency : 0.22938335579417285
+FC Power : 127.39034047385184 W
+FC Voltage : 1.7891901751945483 V
+Loss : 0.8556231268952883 V
+PH2 : 0.1871809210049718 atm
+PH2O : 0.23038741508409805 atm
+PO2 : 0.1849861206793034 atm
+Power-Thermal : 310.4896595261482 W
+###########
+I :71.3 A
+
+E : 6.067304225217605 V
+Eta Activation : 0.622017443880047 V
+Eta Concentration : 0.044853766094504546 V
+Eta Ohmic : 0.1896290984255848 V
+FC Efficiency : 0.22882085682268244
+FC Power : 127.2564313133666 W
+FC Voltage : 1.784802683216923 V
+Loss : 0.8565003084001364 V
+PH2 : 0.1871668706233574 atm
+PH2O : 0.2303701214887695 atm
+PO2 : 0.1849781878411051 atm
+Power-Thermal : 311.2385686866334 W
+###########
+I :71.4 A
+
+E : 6.067302640696269 V
+Eta Activation : 0.6221124497414049 V
+Eta Concentration : 0.045205428602004966 V
+Eta Ohmic : 0.1900678539993728 V
+FC Efficiency : 0.2282530742285072
+FC Power : 127.11870209934027 W
+FC Voltage : 1.7803739789823565 V
+Loss : 0.8573857323427826 V
+PH2 : 0.187152820241743 atm
+PH2O : 0.23035282789344094 atm
+PO2 : 0.18497025500290679 atm
+Power-Thermal : 311.9912979006598 W
+###########
+I :71.5 A
+
+E : 6.0673010561069765 V
+Eta Activation : 0.6222073258798075 V
+Eta Concentration : 0.04556499429563792 V
+Eta Ohmic : 0.19050742071540178 V
+FC Efficiency : 0.2276797886734282
+FC Power : 126.97701814317092 W
+FC Voltage : 1.7759023516527401 V
+Loss : 0.8582797408908472 V
+PH2 : 0.18713876986012865 atm
+PH2O : 0.2303355342981124 atm
+PO2 : 0.1849623221647085 atm
+Power-Thermal : 312.7479818568291 W
+###########
+I :71.6 A
+
+E : 6.06729947144972 V
+Eta Activation : 0.6223020726582462 V
+Eta Concentration : 0.04593282658723306 V
+Eta Ohmic : 0.1909478004177482 V
+FC Efficiency : 0.22710076578635677
+FC Power : 126.83123567636453 W
+FC Voltage : 1.771385973133583 V
+Loss : 0.8591826996632275 V
+PH2 : 0.18712471947851425 atm
+PH2O : 0.23031824070278387 atm
+PO2 : 0.1849543893265102 atm
+Power-Thermal : 313.50876432363543 W
+###########
+I :71.7 A
+
+E : 6.067297886724497 V
+Eta Activation : 0.6223966904381926 V
+Eta Concentration : 0.04630931454579618 V
+Eta Ohmic : 0.1913889949536362 V
+FC Efficiency : 0.22651575474825278
+FC Power : 126.68120100050787 W
+FC Voltage : 1.7668228870363718 V
+Loss : 0.8600949999376251 V
+PH2 : 0.18711066909689986 atm
+PH2O : 0.23030094710745533 atm
+PO2 : 0.1849464564883119 atm
+Power-Thermal : 314.27379899949216 W
+###########
+I :71.8 A
+
+E : 6.067296301931298 V
+Eta Activation : 0.6224911795796055 V
+Eta Concentration : 0.0466948753710611 V
+Eta Ohmic : 0.1918310061734416 V
+FC Efficiency : 0.2259244867065073
+FC Power : 126.52674953511236 W
+FC Voltage : 1.762210996310757 V
+Loss : 0.8610170611241083 V
+PH2 : 0.18709661871528546 atm
+PH2O : 0.2302836535121268 atm
+PO2 : 0.1849385236501136 atm
+Power-Thermal : 315.04325046488765 W
+###########
+I :71.9 A
+
+E : 6.067294717070119 V
+Eta Activation : 0.6225855404409432 V
+Eta Concentration : 0.0470899571725071 V
+Eta Ohmic : 0.19227383593069733 V
+FC Efficiency : 0.22532667299351042
+FC Power : 126.36770474822053 W
+FC Voltage : 1.7575480493493814 V
+Loss : 0.8619493335441476 V
+PH2 : 0.18708256833367104 atm
+PH2O : 0.2302663599167982 atm
+PO2 : 0.18493059081191526 atm
+Power-Thermal : 315.8172952517795 W
+###########
+I :72.0 A
+
+E : 6.067293132140955 V
+Eta Activation : 0.6226797733791672 V
+Eta Concentration : 0.04749504210025572 V
+Eta Ohmic : 0.19271748608209763 V
+FC Efficiency : 0.22472200311966056
+FC Power : 126.2038769520014 W
+FC Voltage : 1.7528316243333526 V
+Loss : 0.8628923015615205 V
+PH2 : 0.18706851795205667 atm
+PH2O : 0.23024906632146966 atm
+PO2 : 0.18492265797371696 atm
+Power-Thermal : 316.5961230479986 W
+###########
+I :72.1 A
+
+E : 6.067291547143797 V
+Eta Activation : 0.6227738787497541 V
+Eta Concentration : 0.047910649882707844 V
+Eta Ohmic : 0.19316195848750278 V
+FC Efficiency : 0.22411014250563752
+FC Power : 126.03506194232043 W
+FC Voltage : 1.7480591115439728 V
+Loss : 0.8638464871199648 V
+PH2 : 0.18705446757044228 atm
+PH2O : 0.23023177272614112 atm
+PO2 : 0.18491472513551865 atm
+Power-Thermal : 317.37993805767957 W
+###########
+I :72.2 A
+
+E : 6.067289962078642 V
+Eta Activation : 0.6228678569067023 V
+Eta Concentration : 0.04833734183602248 V
+Eta Ohmic : 0.1936072550099442 V
+FC Efficiency : 0.22349072991221763
+FC Power : 125.8610394573645 W
+FC Voltage : 1.7432276933152977 V
+Loss : 0.8648124537526689 V
+PH2 : 0.18704041718882788 atm
+PH2O : 0.23021447913081258 atm
+PO2 : 0.18490679229732035 atm
+Power-Thermal : 318.16896054263555 W
+###########
+I :72.3 A
+
+E : 6.067288376945484 V
+Eta Activation : 0.6229617082025399 V
+Eta Concentration : 0.0487757254230323 V
+Eta Ohmic : 0.19405337751562812 V
+FC Efficiency : 0.22286337451788232
+FC Power : 125.68157142561455 W
+FC Voltage : 1.7383343212394822 V
+Loss : 0.8657908111412004 V
+PH2 : 0.18702636680721352 atm
+PH2O : 0.23019718553548404 atm
+PO2 : 0.18489885945912204 atm
+Power-Thermal : 318.96342857438543 W
+###########
+I :72.4 A
+
+E : 6.0672867917443165 V
+Eta Activation : 0.6230554329883342 V
+Eta Concentration : 0.0492264594544995 V
+Eta Ohmic : 0.19450032787394164 V
+FC Efficiency : 0.22222765258467173
+FC Power : 125.49639996761583 W
+FC Voltage : 1.7333756901604396 V
+Loss : 0.8667822203167754 V
+PH2 : 0.18701231642559912 atm
+PH2O : 0.2301798919401555 atm
+PO2 : 0.18489092662092374 atm
+Power-Thermal : 319.7636000323842 W
+###########
+I :72.5 A
+
+E : 6.067285206475134 V
+Eta Activation : 0.6231490316136975 V
+Eta Concentration : 0.04969026004447149 V
+Eta Ohmic : 0.19494810795745618 V
+FC Efficiency : 0.221583103640642
+FC Power : 125.30524510878305 W
+FC Voltage : 1.7283482083970076 V
+Loss : 0.8677873996156252 V
+PH2 : 0.18699826604398473 atm
+PH2O : 0.23016259834482697 atm
+PO2 : 0.18488299378272544 atm
+Power-Thermal : 320.569754891217 W
+###########
+I :72.6 A
+
+E : 6.067283621137928 V
+Eta Activation : 0.6232425044267978 V
+Eta Concentration : 0.050167907454866364 V
+Eta Ohmic : 0.19539671964193328 V
+FC Efficiency : 0.2209292260923001
+FC Power : 125.1078021515477 W
+FC Voltage : 1.723247963519941 V
+Loss : 0.8688071315235975 V
+PH2 : 0.18698421566237036 atm
+PH2O : 0.23014530474949843 atm
+PO2 : 0.18487506094452713 atm
+Power-Thermal : 321.3821978484523 W
+###########
+I :72.7 A
+
+E : 6.067282035732697 V
+Eta Activation : 0.623335851774365 V
+Eta Concentration : 0.050660253993534445 V
+Eta Ohmic : 0.19584616480632852 V
+FC Efficiency : 0.2202654721617381
+FC Power : 124.90373864403523 W
+FC Voltage : 1.7180706828615575 V
+Loss : 0.869842270574228 V
+PH2 : 0.18697016528075597 atm
+PH2O : 0.23012801115416986 atm
+PO2 : 0.18486712810632883 atm
+Power-Thermal : 322.2012613559648 W
+###########
+I :72.8 A
+
+E : 6.0672804502594335 V
+Eta Activation : 0.6234290740016992 V
+Eta Concentration : 0.05116823316656772 V
+Eta Ohmic : 0.1962964453327965 V
+FC Efficiency : 0.21959124201975858
+FC Power : 124.69269086849972 W
+FC Voltage : 1.712811687754117 V
+Loss : 0.8708937525010634 V
+PH2 : 0.18695611489914157 atm
+PH2O : 0.23011071755884133 atm
+PO2 : 0.18485919526813052 atm
+Power-Thermal : 323.0273091315003 W
+###########
+I :72.9 A
+
+E : 6.067278864718131 V
+Eta Activation : 0.6235221714526784 V
+Eta Concentration : 0.05169287033173564 V
+Eta Ohmic : 0.196747563106696 V
+FC Efficiency : 0.21890587695674119
+FC Power : 124.47425975514219 W
+FC Voltage : 1.7074658402625813 V
+Loss : 0.87196260489111 V
+PH2 : 0.18694206451752718 atm
+PH2O : 0.2300934239635128 atm
+PO2 : 0.18485126242993222 atm
+Power-Thermal : 323.8607402448579 W
+###########
+I :73.0 A
+
+E : 6.067277279108784 V
+Eta Activation : 0.6236151444697671 V
+Eta Concentration : 0.05223529515854648 V
+Eta Ohmic : 0.1971995200165939 V
+FC Efficiency : 0.2182086513954162
+FC Power : 124.24800610454999 W
+FC Voltage : 1.7020274808842464 V
+Loss : 0.8730499596449075 V
+PH2 : 0.1869280141359128 atm
+PH2O : 0.23007613036818425 atm
+PO2 : 0.1848433295917339 atm
+Power-Thermal : 324.70199389545 W
+###########
+I :73.1 A
+
+E : 6.067275693431386 V
+Eta Activation : 0.6237079933940226 V
+Eta Concentration : 0.05279675627552678 V
+Eta Ohmic : 0.19765231795427088 V
+FC Efficiency : 0.21749876350157488
+FC Power : 124.01344497332798 W
+FC Voltage : 1.6964903553122843 V
+Loss : 0.8741570676238203 V
+PH2 : 0.18691396375429842 atm
+PH2O : 0.2300588367728557 atm
+PO2 : 0.18483539675353564 atm
+Power-Thermal : 325.551555026672 W
+###########
+I :73.2 A
+
+E : 6.067274107685932 V
+Eta Activation : 0.6238007185651044 V
+Eta Concentration : 0.05337863858226086 V
+Eta Ohmic : 0.19810595881472579 V
+FC Efficiency : 0.2167753240865994
+FC Power : 123.77003904048482 W
+FC Voltage : 1.6908475278754755 V
+Loss : 0.8752853159620911 V
+PH2 : 0.18689991337268402 atm
+PH2O : 0.23004154317752717 atm
+PO2 : 0.18482746391533733 atm
+Power-Thermal : 326.4099609595152 W
+###########
+I :73.3 A
+
+E : 6.0672725218724155 V
+Eta Activation : 0.6238933203212803 V
+Eta Concentration : 0.053982483829986334 V
+Eta Ohmic : 0.19856044449618004 V
+FC Efficiency : 0.21603734341476685
+FC Power : 123.5171907239588 W
+FC Voltage : 1.6850912786351815 V
+Loss : 0.8764362486474467 V
+PH2 : 0.18688586299106966 atm
+PH2O : 0.23002424958219864 atm
+PO2 : 0.18481953107713903 atm
+Power-Thermal : 327.2778092760412 W
+###########
+I :73.4 A
+
+E : 6.067270935990832 V
+Eta Activation : 0.6239857989994355 V
+Eta Concentration : 0.05461001524043887 V
+Eta Ohmic : 0.1990157769000833 V
+FC Efficiency : 0.21528371542192865
+FC Power : 123.25423275336261 W
+FC Voltage : 1.6792129802910436 V
+Loss : 0.8776115911399577 V
+PH2 : 0.18687181260945526 atm
+PH2O : 0.2300069559868701 atm
+PO2 : 0.18481159823894072 atm
+Power-Thermal : 328.1557672466374 W
+###########
+I :73.5 A
+
+E : 6.067269350041174 V
+Eta Activation : 0.6240781549350781 V
+Eta Concentration : 0.055263167152762985 V
+Eta Ohmic : 0.19947195793111736 V
+FC Efficiency : 0.2145131987110746
+FC Power : 122.98041682105907 W
+FC Voltage : 1.6732029499463819 V
+Loss : 0.8788132800189585 V
+PH2 : 0.18685776222784087 atm
+PH2O : 0.22998966239154156 atm
+PO2 : 0.18480366540074242 atm
+Power-Thermal : 329.04458317894097 W
+###########
+I :73.6 A
+
+E : 6.067267764023438 V
+Eta Activation : 0.6241703884623486 V
+Eta Concentration : 0.055944120983463644 V
+Eta Ohmic : 0.19992898949720173 V
+FC Efficiency : 0.2137243935010727
+FC Power : 122.69489982109583 W
+FC Voltage : 1.6670502693083673 V
+Loss : 0.880043498943014 V
+PH2 : 0.18684371184622647 atm
+PH2O : 0.229972368796213 atm
+PO2 : 0.1847957325625441 atm
+Power-Thermal : 329.94510017890417 W
+###########
+I :73.7 A
+
+E : 6.067266177937615 V
+Eta Activation : 0.6242624999140264 V
+Eta Concentration : 0.05665534918459702 V
+Eta Ohmic : 0.20038687350949802 V
+FC Efficiency : 0.21291571344833438
+FC Power : 122.39672703290951 W
+FC Voltage : 1.6607425648970082 V
+Loss : 0.8813047226081214 V
+PH2 : 0.18682966146461205 atm
+PH2O : 0.22995507520088443 atm
+PO2 : 0.18478779972434578 atm
+Power-Thermal : 330.85827296709056 W
+###########
+I :73.8 A
+
+E : 6.067264591783701 V
+Eta Activation : 0.6243544896215374 V
+Eta Concentration : 0.05739966943475521 V
+Eta Ohmic : 0.2008456118824149 V
+FC Efficiency : 0.21208535090899533
+FC Power : 122.08481139725407 W
+FC Voltage : 1.6542657370901637 V
+Loss : 0.8825997709387075 V
+PH2 : 0.18681561108299768 atm
+PH2O : 0.2299377816055559 atm
+PO2 : 0.18477986688614748 atm
+Power-Thermal : 331.78518860274596 W
+###########
+I :73.9 A
+
+E : 6.06726300556169 V
+Eta Activation : 0.6244463579149608 V
+Eta Concentration : 0.058180312061466226 V
+Eta Ohmic : 0.20130520653361325 V
+FC Efficiency : 0.21123123371942162
+FC Power : 121.75790774054903 W
+FC Voltage : 1.6476036230114888 V
+Loss : 0.8839318765100403 V
+PH2 : 0.1868015607013833 atm
+PH2O : 0.22992048801022735 atm
+PO2 : 0.18477193404794917 atm
+Power-Thermal : 332.727092259451 W
+###########
+I :74.0 A
+
+E : 6.067261419271577 V
+Eta Activation : 0.6245381051230374 V
+Eta Concentration : 0.059001004771667004 V
+Eta Ohmic : 0.2017656593840103 V
+FC Efficiency : 0.21035097088179527
+FC Power : 121.41458039297225 W
+FC Voltage : 1.6407375728780034 V
+Loss : 0.8853047692787147 V
+PH2 : 0.1867875103197689 atm
+PH2O : 0.2299031944148988 atm
+PO2 : 0.18476400120975087 atm
+Power-Thermal : 333.68541960702777 W
+###########
+I :74.1 A
+
+E : 6.067259832913354 V
+Eta Activation : 0.6246297315731755 V
+Eta Concentration : 0.05986608031199131 V
+Eta Ohmic : 0.20222697235778536 V
+FC Efficiency : 0.20944178355110174
+FC Power : 121.05316205686577 W
+FC Voltage : 1.6336459116985935 V
+Loss : 0.8867227842429521 V
+PH2 : 0.18677345993815453 atm
+PH2O : 0.22988590081957025 atm
+PO2 : 0.18475606837155256 atm
+Power-Thermal : 334.66183794313423 W
+###########
+I :74.2 A
+
+E : 6.067258246487017 V
+Eta Activation : 0.624721237591459 V
+Eta Concentration : 0.06078061493343061 V
+Eta Ohmic : 0.20268914738238428 V
+FC Efficiency : 0.20850041627572402
+FC Power : 120.67170092373806 W
+FC Voltage : 1.6263032469506475 V
+Loss : 0.8881909999072739 V
+PH2 : 0.18675940955654013 atm
+PH2O : 0.2298686072242417 atm
+PO2 : 0.18474813553335426 atm
+Power-Thermal : 335.658299076262 W
+###########
+I :74.3 A
+
+E : 6.067256659992559 V
+Eta Activation : 0.6248126235026552 V
+Eta Concentration : 0.061750608882493535 V
+Eta Ohmic : 0.2031521863885242 V
+FC Efficiency : 0.2075230212979737
+FC Power : 120.26789176302768 W
+FC Voltage : 1.6186795661241948 V
+Loss : 0.8897154187736729 V
+PH2 : 0.18674535917492574 atm
+PH2O : 0.22985131362891317 atm
+PO2 : 0.18474020269515595 atm
+Power-Thermal : 336.67710823697234 W
+###########
+I :74.4 A
+
+E : 6.067255073429976 V
+Eta Activation : 0.6249038896302201 V
+Eta Concentration : 0.06278322522069481 V
+Eta Ohmic : 0.20361609131019887 V
+FC Efficiency : 0.20650500546466752
+FC Power : 119.83898477125588 W
+FC Voltage : 1.6107390426244068 V
+Loss : 0.8913032061611138 V
+PH2 : 0.18673130879331137 atm
+PH2O : 0.22983402003358464 atm
+PO2 : 0.18473226985695765 atm
+Power-Thermal : 337.7210152287442 W
+###########
+I :74.5 A
+
+E : 6.067253486799259 V
+Eta Activation : 0.624995036296307 V
+Eta Concentration : 0.06388711116448591 V
+Eta Ohmic : 0.20408086408468307 V
+FC Efficiency : 0.20544082423998444
+FC Power : 119.38166296585497 W
+FC Voltage : 1.6024384290718787 V
+Loss : 0.892963011545476 V
+PH2 : 0.18671725841169698 atm
+PH2O : 0.2298167264382561 atm
+PO2 : 0.18472433701875934 atm
+Power-Thermal : 338.79333703414505 W
+###########
+I :74.6 A
+
+E : 6.067251900100405 V
+Eta Activation : 0.6250860638217719 V
+Eta Concentration : 0.06507283871894541 V
+Eta Ohmic : 0.2045465066525382 V
+FC Efficiency : 0.20432369924796498
+FC Power : 118.89187411840585 W
+FC Voltage : 1.593724854134127 V
+Loss : 0.8947054091932556 V
+PH2 : 0.18670320803008258 atm
+PH2O : 0.22979943284292756 atm
+PO2 : 0.18471640418056104 atm
+Power-Thermal : 339.8981258815941 W
+###########
+I :74.7 A
+
+E : 6.067250313333407 V
+Eta Activation : 0.6251769725261829 V
+Eta Concentration : 0.06635352204172205 V
+Eta Ohmic : 0.20501302095761667 V
+FC Efficiency : 0.20314522252638445
+FC Power : 118.36459535722317 W
+FC Voltage : 1.5845327357057988 V
+Loss : 0.8965435155255216 V
+PH2 : 0.1866891576484682 atm
+PH2O : 0.22978213924759902 atm
+PO2 : 0.18470847134236273 atm
+Power-Thermal : 341.0404046427769 W
+###########
+I :74.8 A
+
+E : 6.067248726498259 V
+Eta Activation : 0.6252677627278244 V
+Eta Concentration : 0.06774570407355608 V
+Eta Ohmic : 0.2054804089470671 V
+FC Efficiency : 0.20189478817384893
+FC Power : 117.79349521215042 W
+FC Voltage : 1.5747793477560217 V
+Loss : 0.8984938757484475 V
+PH2 : 0.18667510726685382 atm
+PH2O : 0.22976484565227048 atm
+PO2 : 0.18470053850416446 atm
+Power-Thermal : 342.2265047878496 W
+###########
+I :74.9 A
+
+E : 6.067247139594956 V
+Eta Activation : 0.6253584347437059 V
+Eta Concentration : 0.06927066695042548 V
+Eta Ohmic : 0.20594867257133906 V
+FC Efficiency : 0.20055875234200052
+FC Power : 117.17043429324355 W
+FC Voltage : 1.564358268267604 V
+Loss : 0.9005777742654705 V
+PH2 : 0.18666105688523943 atm
+PH2O : 0.22974755205694192 atm
+PO2 : 0.18469260566596615 atm
+Power-Thermal : 343.4645657067565 W
+###########
diff --git a/Documents/Padulles-Hauer/Padulles_Hauer_Test.csv b/Documents/Padulles-Hauer/Padulles_Hauer_Test.csv
new file mode 100644
index 00000000..dafc1025
--- /dev/null
+++ b/Documents/Padulles-Hauer/Padulles_Hauer_Test.csv
@@ -0,0 +1,1000 @@
+I (A),E (V),FC Efficiency (),FC Power (W),FC Voltage (V),PH2 (atm),PH2O (atm),PO2 (atm),Power-Thermal (W)
+0.1,2.9234154992732004,0.41518043908246366,0.3238407424843217,3.2384074248432166,0.19717074233280188,0.2426831613626925,0.1906263686382979,0.2911592575156784
+0.2,2.9234139617015558,0.4108963136482338,0.6409982492912448,3.204991246456224,0.1971566919511875,0.24266586776736396,0.1906184358000996,0.5890017507087553
+0.3,2.9234124240659227,0.4083740564879825,0.955595292181879,3.1853176406062635,0.19714264156957312,0.24264857417203542,0.1906105029619013,0.889404707818121
+0.4,2.9234108863662946,0.4065731449109761,1.2685082121222457,3.171270530305614,0.19712859118795872,0.24263128057670688,0.19060257012370302,1.1914917878777547
+0.5,2.9234093486026658,0.4051674903968853,1.5801532125478528,3.1603064250957056,0.19711454080634436,0.24261398698137834,0.1905946372855047,1.4948467874521474
+0.6,2.923407810775032,0.4040118444230801,1.8907754319000147,3.1512923865000246,0.19710049042472996,0.2425966933860498,0.1905867044473064,1.7992245680999854
+0.7,2.923406272883388,0.4030287270042349,2.2005368494431226,3.1436240706330323,0.19708644004311557,0.24257939979072127,0.19057877160910808,2.1044631505568776
+0.8,2.9234047349277277,0.4021718894938075,2.509552590441359,3.1369407380516985,0.19707238966150117,0.24256210619539273,0.1905708387709098,2.4104474095586417
+0.9,2.9234031969080454,0.4014115005665013,2.81790873397684,3.1310097044187106,0.19705833927988675,0.24254481260006414,0.19056290593271147,2.7170912660231608
+1.0,2.9234016588243374,0.40072719160282416,3.1256720945020287,3.1256720945020287,0.19704428889827239,0.2425275190047356,0.1905549730945132,3.0243279054979717
+1.1,2.9234001206765963,0.40010443449551725,3.4328960479715387,3.1208145890650347,0.197030238516658,0.24251022540940706,0.19054704025631486,3.3321039520284623
+1.2,2.9233985824648183,0.39953250222749515,3.7396242208493544,3.116353517374462,0.1970161881350436,0.24249293181407852,0.19053910741811658,3.640375779150646
+1.3,2.923397044188998,0.3990032485837277,4.045892940639,3.1122253389530767,0.19700213775342923,0.24247563821874998,0.19053117457991825,3.9491070593610007
+1.4,2.923395505849129,0.3985103413824903,4.351732927896794,3.1083806627834245,0.19698808737181484,0.24245834462342142,0.19052324174171997,4.258267072103206
+1.5,2.923393967445207,0.3980487608857143,4.657170502362857,3.1047803349085714,0.19697403699020044,0.24244105102809288,0.19051530890352164,4.567829497637144
+1.6,2.923392428977226,0.39761446042126253,4.962228466057358,3.101392791285848,0.19695998660858605,0.24242375743276434,0.19050737606532336,4.877771533942644
+1.7,2.9233908904451815,0.3972041300730298,5.2669267647683755,3.098192214569633,0.19694593622697168,0.2424064638374358,0.19049944322712503,5.188073235231625
+1.8,2.9233893518490675,0.39681502801851076,5.571282993379892,3.0951572185443843,0.19693188584535729,0.24238917024210727,0.19049151038892673,5.498717006620109
+1.9,2.9233878131888784,0.3964448575287326,5.875312788575817,3.0922698887241142,0.1969178354637429,0.24237187664677873,0.19048357755072845,5.809687211424183
+2.0,2.9233862744646095,0.3960916755547374,6.1790301386539035,3.0895150693269517,0.19690378508212852,0.2423545830514502,0.19047564471253012,6.120969861346097
+2.1,2.923384735676255,0.39575382364054146,6.482447631232071,3.086879824396224,0.19688973470051413,0.24233728945612165,0.19046771187433184,6.432552368767931
+2.2,2.92338319682381,0.3954298749226794,6.78557665367318,3.0843530243968997,0.19687568431889974,0.2423199958607931,0.1904597790361335,6.744423346326822
+2.3,2.923381657907269,0.39511859292081414,7.088427556999405,3.0819250247823504,0.19686163393728537,0.24230270226546458,0.19045184619793523,7.0565724430005945
+2.4,2.9233801189266266,0.39481889910524637,7.391009791250212,3.079587413020922,0.19684758355567097,0.242285408670136,0.1904439133597369,7.368990208749787
+2.5,2.923378579881877,0.39452984708947947,7.693332018244849,3.07733280729794,0.19683353317405658,0.24226811507480747,0.19043598052153862,7.681667981755151
+2.6,2.923377040773016,0.39425060188740335,7.995402206276542,3.0751546947217467,0.19681948279244216,0.2422508214794789,0.1904280476833403,7.99459779372346
+2.7,2.923375501600037,0.3939804230873111,8.297227710218774,3.073047300081027,0.19680543241082776,0.24223352788415034,0.190420114845142,8.307772289781228
+2.8,2.923373962362936,0.3937186510874208,8.59881533974927,3.0710054784818825,0.1967913820292134,0.2422162342888218,0.19041218200694368,8.62118466025073
+2.9,2.9233724230617057,0.3934646957478549,8.900171417816479,3.0690246268332686,0.196777331647599,0.24219894069349326,0.1904042491687454,8.934828582183522
+3.0,2.923370883696343,0.39321802696722546,9.201301831033076,3.0671006103443585,0.1967632812659846,0.24218164709816473,0.19039631633054707,9.248698168966925
+3.1,2.9233693442668414,0.39297816680494896,9.502212073343667,3.0652297010786023,0.19674923088437024,0.2421643535028362,0.1903883834923488,9.562787926656334
+3.2,2.9233678047731946,0.39274468285467545,9.8029072840527,3.0634085262664685,0.19673518050275585,0.24214705990750765,0.19038045065415046,9.877092715947303
+3.3,2.9233662652153996,0.3925171826377131,10.103392281094736,3.0616340245741624,0.19672113012114145,0.2421297663121791,0.19037251781595219,10.191607718905265
+3.4,2.923364725593449,0.39229530883366054,10.403671590268678,3.059903408902552,0.19670707973952706,0.24211247271685057,0.19036458497775385,10.506328409731324
+3.5,2.923363185907339,0.39207873520256487,10.703749471030022,3.0582141345800062,0.1966930293579127,0.24209517912152204,0.19035665213955555,10.82125052896998
+3.6,2.923361646157063,0.3918671630816706,11.003629939333312,3.0565638720370307,0.1966789789762983,0.2420778855261935,0.19034871930135727,11.13637006066669
+3.7,2.923360106342616,0.3916603183622587,11.303316787934786,3.054950483225618,0.1966649285946839,0.24206059193086493,0.19034078646315894,11.451683212065214
+3.8,2.9233585664639925,0.3914579488697281,11.602813604498742,3.0533720011838796,0.19665087821306954,0.2420432983355364,0.19033285362496066,11.767186395501259
+3.9,2.9233570265211877,0.3912598220840501,11.902123787796803,3.051826612255591,0.19663682783145514,0.24202600474020786,0.19032492078676233,12.082876212203196
+4.0,2.9233554865141964,0.3910657231488705,12.201250562244761,3.0503126405611902,0.19662277744984075,0.24200871114487932,0.19031698794856405,12.39874943775524
+4.1,2.9233539464430125,0.3908754531264826,12.500196990984913,3.048828534386564,0.19660872706822638,0.24199141754955078,0.19030905511036572,12.714803009015087
+4.2,2.9233524063076306,0.39068882746310907,12.798965987691455,3.047372854212251,0.19659467668661199,0.24197412395422224,0.19030112227216744,13.031034012308549
+4.3,2.923350866108046,0.3905056746347924,13.097560327250937,3.045944262151381,0.1965806263049976,0.2419568303588937,0.1902931894339691,13.347439672749063
+4.4,2.9233493258442533,0.3903258349489736,13.395982655448776,3.0445415126019943,0.19656657592338317,0.2419395367635651,0.19028525659577084,13.664017344551228
+4.5,2.9233477855162464,0.3901491594807609,13.694235497774708,3.043163443949935,0.19655252554176877,0.24192224316823657,0.1902773237575725,13.980764502225295
+4.6,2.923346245124021,0.3899755091261222,13.992321267445265,3.0418089711837535,0.1965384751601544,0.24190494957290803,0.19026939091937423,14.297678732554735
+4.7,2.9233447046675707,0.3898047537569099,14.290242272728321,3.0404770793038978,0.19652442477854,0.2418876559775795,0.1902614580811759,14.614757727271682
+4.8,2.9233431641468917,0.38963677146485104,14.588000723644024,3.0391668174258384,0.19651037439692562,0.24187036238225096,0.19025352524297762,14.931999276355977
+4.9,2.9233416235619765,0.3894714478834934,14.885598738107118,3.0378772934912486,0.19649632401531125,0.24185306878692242,0.19024559240477928,15.249401261892885
+5.0,2.923340082912821,0.3893086755786583,15.183038347567674,3.036607669513535,0.19648227363369686,0.24183577519159385,0.190237659566581,15.566961652432328
+5.1,2.9233385421994202,0.38914835349925586,15.480321502200397,3.0353571572941958,0.19646822325208246,0.24181848159626532,0.19022972672838268,15.884678497799602
+5.2,2.9233370014217677,0.3889903864814294,15.777450075686778,3.0341250145551495,0.1964541728704681,0.24180118800093678,0.19022179389018437,16.202549924313224
+5.3,2.923335460579859,0.38883468479993466,16.0744258696293,3.032910541439491,0.1964401224888537,0.24178389440560824,0.1902138610519861,16.5205741303707
+5.4,2.923333919673688,0.3886811637614524,16.371250617632377,3.031713077339329,0.1964260721072393,0.2417666008102797,0.19020592821378776,16.838749382367627
+5.5,2.92333237870325,0.38852974333521934,16.66792598908091,3.030531998014711,0.1964120217256249,0.24174930721495116,0.19019799537558948,17.15707401091909
+5.6,2.923330837668539,0.3883803478169407,16.96445359264397,3.0293667129721378,0.19639797134401055,0.24173201361962263,0.19019006253739115,17.475546407356028
+5.7,2.9233292965695505,0.3882329055224501,17.26083497952813,3.028216663075111,0.19638392096239615,0.2417147200242941,0.19018212969919288,17.79416502047187
+5.8,2.9233277554062784,0.3880873485080118,17.557071646502454,3.0270813183624923,0.19636987058078176,0.24169742642896555,0.19017419686099454,18.112928353497548
+5.9,2.923326214178718,0.3879436123145331,17.853165038714817,3.0259601760533585,0.1963558201991674,0.24168013283363698,0.19016626402279627,18.431834961285187
+6.0,2.9233246728868627,0.387801635733273,18.149116552317178,3.0248527587195295,0.196341769817553,0.24166283923830845,0.19015833118459793,18.750883447682824
+6.1,2.923323131530709,0.3876613605909187,18.444927536915916,3.0237586126091665,0.19632771943593857,0.24164554564297988,0.19015039834639966,19.070072463084085
+6.2,2.92332159011025,0.3875227315521362,18.74059929786131,3.0226773061066625,0.19631366905432418,0.24162825204765134,0.19014246550820132,19.389400702138694
+6.3,2.923320048625481,0.3873856959379197,19.036133098389374,3.021608428315774,0.19629961867270979,0.24161095845232278,0.19013453267000305,19.708866901610627
+6.4,2.9233185070763956,0.3872502035582463,19.331530161627654,3.020551587754321,0.19628556829109542,0.24159366485699424,0.19012659983180472,20.02846983837235
+6.5,2.9233169654629902,0.3871162065577041,19.6267916724756,3.0195064111500924,0.19627151790948102,0.2415763712616657,0.19011866699360644,20.3482083275244
+6.6,2.923315423785258,0.3869836592729067,19.921918779369236,3.0184725423286722,0.19625746752786663,0.24155907766633716,0.1901107341554081,20.668081220630764
+6.7,2.9233138820431948,0.3868525181006288,20.216912595938865,3.017449641184905,0.19624341714625226,0.24154178407100863,0.19010280131720983,20.988087404061137
+6.8,2.9233123402367944,0.3867227413757113,20.51177420256773,3.0164373827305484,0.19622936676463787,0.2415244904756801,0.19009486847901153,21.30822579743227
+6.9,2.9233107983660513,0.3865942892578791,20.806504647859054,3.015435456211457,0.19621531638302347,0.24150719688035155,0.19008693564081322,21.62849535214095
+7.0,2.9233092564309606,0.38646712362670244,21.101104950017955,3.014443564288279,0.1962012660014091,0.241489903285023,0.19007900280261492,21.94889504998205
+7.1,2.923307714431517,0.38634120798400895,21.395576098154415,3.01346142227527,0.1961872156197947,0.24147260968969447,0.19007106996441658,22.269423901845585
+7.2,2.9233061723677145,0.3862165073631198,21.68991905351281,3.0124887574323345,0.19617316523818032,0.2414553160943659,0.1900631371262183,22.590080946487195
+7.3,2.9233046302395485,0.38609298824434696,21.984134750633118,3.0115253083059064,0.19615911485656592,0.24143802249903737,0.19005520428801997,22.910865249366886
+7.4,2.923303088047013,0.3859706184762392,22.278224098448533,3.0105708241146663,0.19614506447495156,0.24142072890370883,0.1900472714498217,23.231775901551472
+7.5,2.923301545790103,0.3858493672021141,22.572187981323676,3.00962506417649,0.19613101409333716,0.2414034353083803,0.19003933861162337,23.552812018676327
+7.6,2.923300003468813,0.3857292047914553,22.86602726003747,3.0086877973733515,0.19611696371172277,0.24138614171305176,0.1900314057734251,23.87397273996253
+7.7,2.9232984610831374,0.3856101027757952,23.159742772714264,3.007758801651203,0.1961029133301084,0.24136884811772322,0.19002347293522676,24.19525722728574
+7.8,2.9232969186330715,0.3854920337887341,23.453335335706583,3.0068378635521262,0.19608886294849398,0.24135155452239462,0.19001554009702848,24.51666466429342
+7.9,2.923295376118609,0.38537497150977895,23.74680574443258,3.005924777776276,0.19607481256687959,0.24133426092706609,0.19000760725883015,24.838194255567423
+8.0,2.923293833539746,0.3852588906117168,24.040154774171132,3.0050193467713915,0.1960607621852652,0.24131696733173755,0.18999967442063187,25.15984522582887
+8.1,2.923292290896475,0.38514376671125505,24.33338318081709,3.0041213803477893,0.1960467118036508,0.241299673736409,0.18999174158243354,25.481616819182907
+8.2,2.923290748188792,0.38502957632269164,24.626491701599356,3.003230695316995,0.19603266142203643,0.24128238014108047,0.18998380874423526,25.803508298400644
+8.3,2.9232892054166912,0.3849162968143928,24.919481055763796,3.0023471151522645,0.19601861104042204,0.24126508654575193,0.18997587590603693,26.12551894423621
+8.4,2.9232876625801687,0.3848039063678769,25.212351945223297,3.00147046966944,0.19600456065880764,0.2412477929504234,0.18996794306783865,26.447648054776707
+8.5,2.9232861196792164,0.38469238393931926,25.50510505517687,3.0006005947266905,0.19599051027719328,0.24123049935509483,0.18996001022964035,26.769894944823132
+8.6,2.923284576713831,0.3845817092233099,25.79774105469963,2.9997373319418177,0.19597645989557888,0.2412132057597663,0.18995207739144204,27.09225894530037
+8.7,2.923283033684006,0.38447186261870425,26.090260597305267,2.998880528425893,0.1959624095139645,0.24119591216443775,0.18994414455324374,27.41473940269473
+8.8,2.923281490589737,0.38436282519642684,26.382664321482743,2.9980300365321297,0.19594835913235012,0.24117861856910922,0.1899362117150454,27.737335678517265
+8.9,2.923279947431018,0.38425457866909357,26.67495285120848,2.99718571361893,0.19593430875073573,0.24116132497378068,0.18992827887684713,28.060047148791526
+9.0,2.923278404207843,0.38414710536233104,26.967126796435643,2.9963474218261825,0.19592025836912133,0.24114403137845214,0.1899203460386488,28.382873203564362
+9.1,2.923276860920208,0.3840403881876814,27.259186753561625,2.995515027863915,0.19590620798750694,0.2411267377831236,0.18991241320045052,28.705813246438378
+9.2,2.9232753175681063,0.3839344106169859,27.551133305874906,2.99468840281249,0.19589215760589257,0.24110944418779506,0.1899044803622522,29.028866694125092
+9.3,2.923273774151534,0.3838291566581563,27.842967023982663,2.9938674219336194,0.19587810722427818,0.24109215059246653,0.1898965475240539,29.352032976017345
+9.4,2.9232722306704844,0.38372461083223885,28.134688466219753,2.993051964491463,0.19586405684266378,0.241074856997138,0.18988861468585558,29.675311533780253
+9.5,2.9232706871249525,0.3836207581516937,28.426298179040508,2.9922419135832112,0.19585000646104941,0.24105756340180942,0.1898806818476573,29.998701820959496
+9.6,2.923269143514933,0.3835175840998117,28.7177966973939,2.9914371559785313,0.195835956079435,0.24104026980648086,0.18987274900945897,30.322203302606102
+9.7,2.9232675998404205,0.3834150746111962,29.009184545083105,2.9906375819673308,0.1958219056978206,0.24102297621115232,0.1898648161712607,30.645815454916892
+9.8,2.92326605610141,0.38331321605324786,29.30046223511027,2.9898430852153335,0.1958078553162062,0.24100568261582375,0.18985688333306236,30.969537764889736
+9.9,2.9232645122978957,0.3832119952085875,29.591630270007133,2.989053562626983,0.1957938049345918,0.24098838902049521,0.18984895049486408,31.29336972999287
+10.0,2.9232629684298717,0.3831113992583637,29.88268914215237,2.988268914215237,0.19577975455297744,0.24097109542516668,0.18984101765666575,31.617310857847635
+10.1,2.9232614244973334,0.38301141576639003,30.17363933407621,2.9874890429778427,0.19576570417136305,0.24095380182983814,0.18983308481846747,31.941360665923792
+10.2,2.923259880500275,0.3829120326640644,30.46448131875296,2.986713854779702,0.19575165378974865,0.2409365082345096,0.18982515198026917,32.26551868124704
+10.3,2.9232583364386917,0.38281323823602287,30.755215559882082,2.9859432582409786,0.1957376034081343,0.24091921463918106,0.18981721914207086,32.589784440117924
+10.4,2.9232567923125776,0.3827150211064885,31.04584251215835,2.9851771646306107,0.1957235530265199,0.24090192104385252,0.18980928630387256,32.914157487841656
+10.5,2.9232552481219267,0.38261737022627157,31.336362621531645,2.9844154877649185,0.1957095026449055,0.24088462744852399,0.18980135346567423,33.23863737846836
+10.6,2.9232537038667346,0.38252027486038687,31.626776325456785,2.9836581439110175,0.19569545226329113,0.24086733385319545,0.18979342062747595,33.56322367454322
+10.7,2.923252159546996,0.38242372457625223,31.91708405313401,2.9829050516947673,0.19568140188167674,0.2408500402578669,0.18978548778927762,33.887915946865995
+10.8,2.9232506151627042,0.3823277092324354,32.20728622574037,2.982156132012997,0.19566735150006234,0.24083274666253834,0.18977755495107934,34.21271377425964
+10.9,2.9232490707138554,0.38223221896792126,32.49738325665267,2.9814113079497857,0.19565330111844795,0.2408154530672098,0.189769622112881,34.53761674334734
+11.0,2.923247526200443,0.3821372441918661,32.787375551662116,2.980670504696556,0.19563925073683358,0.24079815947188127,0.18976168927468273,34.86262444833789
+11.1,2.9232459816224625,0.3820427755738191,33.07726350918126,2.979933649475789,0.1956252003552192,0.24078086587655273,0.1897537564364844,35.18773649081874
+11.2,2.9232444369799078,0.3819488040343792,33.367047520443364,2.9792006714681576,0.1956111499736048,0.2407635722812242,0.18974582359828612,35.51295247955664
+11.3,2.923242892272774,0.3818553207362695,33.6567279696948,2.978471501742902,0.19559709959199037,0.2407462786858956,0.1897378907600878,35.83827203030521
+11.4,2.9232413475010555,0.38176231707580344,33.946305234380446,2.977746073191267,0.195583049210376,0.24072898509056706,0.1897299579218895,36.16369476561956
+11.5,2.923239802664747,0.3816697846747245,34.23577968532279,2.977024320462851,0.1955689988287616,0.24071169149523852,0.18972202508369118,36.48922031467722
+11.6,2.9232382577638423,0.3815777153723984,34.52515168689461,2.9763061799047077,0.19555494844714721,0.24069439789990998,0.1897140922454929,36.814848313105394
+11.7,2.923236712798337,0.3814861012183416,34.814421597185856,2.9755915895030647,0.19554089806553282,0.24067710430458145,0.1897061594072946,37.14057840281414
+11.8,2.9232351677682256,0.38139493446506634,35.10358976816471,2.9748804888275173,0.19552684768391845,0.2406598107092529,0.1896982265690963,37.466410231835305
+11.9,2.9232336226735023,0.3813042075612283,35.39265654583322,2.974172818977581,0.19551279730230406,0.24064251711392437,0.189690293730898,37.79234345416679
+12.0,2.923232077514162,0.3812139131450615,35.68162227037776,2.97346852253148,0.19549874692068966,0.24062522351859583,0.1896823608926997,38.118377729622246
+12.1,2.9232305322901992,0.38112404403808453,35.97048727631442,2.9727675434970595,0.1954846965390753,0.24060792992326727,0.18967442805450138,38.444512723685584
+12.2,2.9232289870016084,0.38103459323906635,36.25925189262955,2.9720698272647175,0.1954706461574609,0.24059063632793873,0.18966649521630305,38.77074810737045
+12.3,2.923227441648384,0.3809455539182385,36.5479164429158,2.97137532056226,0.1954565957758465,0.2405733427326102,0.18965856237810477,39.09708355708421
+12.4,2.9232258962305213,0.3808569194117417,36.83648124550366,2.9706839714115856,0.19544254539423214,0.24055604913728165,0.18965062953990644,39.42351875449634
+12.5,2.923224350748014,0.38076868321629476,37.12494661358875,2.9699957290870995,0.19542849501261775,0.24053875554195311,0.18964269670170816,39.75005338641126
+12.6,2.9232228052008575,0.3806808389840772,37.41331285535511,2.9693105440758023,0.19541444463100335,0.24052146194662458,0.18963476386350983,40.07668714464489
+12.7,2.9232212595890457,0.3805933805178122,37.70158027409448,2.9686283680389356,0.19540039424938896,0.24050416835129604,0.18962683102531155,40.40341972590552
+12.8,2.923219713912574,0.3805063017660449,37.98974916832193,2.9679491537751503,0.1953863438677746,0.2404868747559675,0.18961889818711322,40.730250831678084
+12.9,2.9232181681714358,0.38041959681860193,38.27781983188773,2.9672728551850955,0.1953722934861602,0.24046958116063896,0.18961096534891494,41.057180168112275
+13.0,2.923216622365627,0.38033325990222827,38.565792554085945,2.9665994272373806,0.19535824310454578,0.24045228756531037,0.1896030325107166,41.38420744591406
+13.1,2.923215076495141,0.38024728537638947,38.85366761975948,2.9659288259358383,0.19534419272293138,0.24043499396998183,0.18959509967251834,41.71133238024052
+13.2,2.9232135305599733,0.38016166772923576,39.141445309402116,2.965261008288039,0.19533014234131701,0.2404177003746533,0.18958716683432,42.038554690597884
+13.3,2.923211984560118,0.3800764015737155,39.42912589925725,2.9645959322749813,0.19531609195970262,0.24040040677932475,0.18957923399612173,42.36587410074276
+13.4,2.9232104384955706,0.3799914816438375,39.716709661413894,2.9639335568219325,0.19530204157808823,0.2403831131839962,0.18957130115792342,42.69329033858611
+13.5,2.9232088923663238,0.37990690279106876,40.004196863899544,2.9632738417703366,0.19528799119647383,0.24036581958866765,0.18956336831972512,43.02080313610046
+13.6,2.923207346172374,0.3798226599808691,40.2915877707706,2.962616747850779,0.19527394081485946,0.2403485259933391,0.1895554354815268,43.3484122292294
+13.7,2.9232057999137147,0.37973874828934895,40.57888264219983,2.961962236656922,0.19525989043324507,0.24033123239801057,0.1895475026433285,43.67611735780017
+13.8,2.9232042535903413,0.3796551629000511,40.8660817345615,2.961310270620398,0.19524584005163068,0.24031393880268204,0.1895395698051302,44.003918265438514
+13.9,2.9232027072022477,0.37957189910084754,41.1531853005139,2.960660812986611,0.1952317896700163,0.2402966452073535,0.18953163696693187,44.33181469948611
+14.0,2.9232011607494286,0.37948895228094853,41.440193589079584,2.960013827791399,0.19521773928840191,0.24027935161202496,0.1895237041287336,44.65980641092042
+14.1,2.923199614231879,0.37940631792801666,41.72710684572328,2.9593692798385303,0.19520368890678752,0.24026205801669642,0.18951577129053526,44.987893154276726
+14.2,2.923198067649593,0.37932399162538427,42.01392531242756,2.9587271346779973,0.19518963852517315,0.24024476442136788,0.18950783845233699,45.31607468757244
+14.3,2.9231965210025654,0.37924196904936747,42.30064922776645,2.9580873585850664,0.19517558814355876,0.24022747082603932,0.18949990561413865,45.64435077223356
+14.4,2.923194974290791,0.3791602459666746,42.58727882697689,2.957449918540062,0.19516153776194436,0.24021017723071078,0.18949197277594038,45.97272117302312
+14.5,2.923193427514264,0.3790788182319038,42.87381434202832,2.9568147822088497,0.19514748738032997,0.24019288363538224,0.18948403993774204,46.301185657971686
+14.6,2.923191880672979,0.37899768178512666,43.16025600169023,2.9561819179239883,0.1951334369987156,0.2401755900400537,0.18947610709954377,46.62974399830978
+14.7,2.9231903337669305,0.37891683264955467,43.446604031597936,2.9555512946665266,0.1951193866171012,0.24015829644472517,0.18946817426134543,46.958395968402066
+14.8,2.9231887867961137,0.3788362669292844,43.732858654316594,2.9549228820484186,0.1951053362354868,0.24014100284939657,0.18946024142314716,47.28714134568341
+14.9,2.9231872397605225,0.3787559808071185,44.01902008940331,2.9542966502955244,0.1950912858538724,0.24012370925406804,0.18945230858494883,47.61597991059669
+15.0,2.9231856926601516,0.3786759705424602,44.30508855346785,2.95367257023119,0.19507723547225803,0.2401064156587395,0.18944437574675055,47.94491144653216
+15.1,2.9231841454949965,0.3785962324692775,44.591064260231505,2.9530506132603644,0.19506318509064363,0.24008912206341096,0.18943644290855224,48.273935739768504
+15.2,2.9231825982650506,0.37851676299413334,44.87694742058445,2.9524307513542403,0.19504913470902924,0.24007182846808242,0.18942851007035394,48.603052579415554
+15.3,2.9231810509703084,0.37843755859428313,45.16273824264175,2.9518129570354086,0.19503508432741484,0.24005453487275388,0.18942057723215563,48.932261757358255
+15.4,2.923179503610765,0.3783586158158311,45.44843693179763,2.9511972033634826,0.19502103394580048,0.24003724127742534,0.18941264439395733,49.26156306820238
+15.5,2.9231779561864153,0.3782799312719486,45.734043690778584,2.950583463921199,0.19500698356418608,0.2400199476820968,0.18940471155575903,49.59095630922142
+15.6,2.9231764086972536,0.3782015016411487,46.01955871969498,2.94997171280096,0.1949929331825717,0.24000265408676824,0.1893967787175607,49.92044128030503
+15.7,2.9231748611432735,0.3781233236656156,46.30498221609128,2.9493619245918015,0.19497888280095732,0.2399853604914397,0.18938884587936242,50.25001778390872
+15.8,2.9231733135244706,0.37804539414958827,46.590314374995266,2.948754074366789,0.19496483241934293,0.23996806689611117,0.18938091304116408,50.57968562500474
+15.9,2.9231717658408396,0.37796770995779433,46.87555538896566,2.948148137670796,0.19495078203772853,0.23995077330078263,0.1893729802029658,50.90944461103435
+16.0,2.9231702180923747,0.3778902680139322,47.16070544813874,2.9475440905086714,0.19493673165611416,0.2399334797054541,0.18936504736476747,51.23929455186126
+16.1,2.923168670279071,0.37781306529920256,47.445764740273866,2.94694190933378,0.19492268127449977,0.23991618611012555,0.1893571145265692,51.56923525972615
+16.2,2.923167122400922,0.377736098850883,47.73073345079758,2.946341571036888,0.19490863089288538,0.239898892514797,0.18934918168837087,51.89926654920242
+16.3,2.9231655744579226,0.37765936576094866,48.01561176284702,2.9457430529354,0.19489458051127098,0.23988159891946848,0.1893412488501726,52.22938823715299
+16.4,2.923164026450068,0.37758286317473366,48.30039985731193,2.945146332762923,0.19488053012965662,0.23986430532413994,0.18933331601197426,52.55960014268807
+16.5,2.9231624783773524,0.37750658828963307,48.58509791287578,2.9445513886591383,0.1948664797480422,0.23984701172881134,0.18932538317377598,52.88990208712422
+16.6,2.9231609302397703,0.37743053835384544,48.869706106055915,2.9439581991599946,0.1948524293664278,0.2398297181334828,0.18931745033557767,53.2202938939441
+16.7,2.9231593820373165,0.37735471066515186,49.15422461124269,2.943366743188185,0.1948383789848134,0.23981242453815427,0.18930951749737937,53.550775388757316
+16.8,2.923157833769985,0.37727910256973174,49.438653600737645,2.9427770000439075,0.19482432860319904,0.23979513094282573,0.18930158465918107,53.88134639926236
+16.9,2.923156285437771,0.3772037114610144,49.72299324479091,2.9421889493959124,0.19481027822158464,0.23977783734749716,0.18929365182098276,54.21200675520908
+17.0,2.923154737040668,0.3771285347785633,50.00724371163749,2.9416025712727936,0.19479622783997025,0.23976054375216863,0.18928571898278446,54.54275628836252
+17.1,2.923153188578672,0.37705357000699435,50.291405167532915,2.941017846054556,0.19478217745835585,0.2397432501568401,0.18927778614458618,54.8735948324671
+17.2,2.923151640051777,0.376978814674925,50.57547777678794,2.940434754464415,0.1947681270767415,0.23972595656151155,0.18926985330638785,55.20452222321207
+17.3,2.923150091459977,0.37690426635395313,50.85946170180244,2.9398532775608346,0.1947540766951271,0.239708662966183,0.18926192046818957,55.53553829819757
+17.4,2.9231485428032675,0.3768299226576674,51.143357103098616,2.939273396729806,0.1947400263135127,0.23969136937085447,0.18925398762999124,55.866642896901375
+17.5,2.923146994081643,0.3767557812406837,51.42716413935333,2.938695093677333,0.19472597593189833,0.23967407577552594,0.1892460547917929,56.19783586064668
+17.6,2.9231454452950967,0.3766818397977103,51.71088296742968,2.938118350422141,0.19471192555028394,0.2396567821801974,0.18923812195359463,56.52911703257033
+17.7,2.9231438964436247,0.3766080960626397,51.99451374240803,2.9375431492885893,0.19469787516866954,0.23963948858486886,0.1892301891153963,56.86048625759197
+17.8,2.923142347527221,0.3765345478076647,52.27805661761617,2.936969472899785,0.19468382478705518,0.23962219498954032,0.18922225627719802,57.19194338238383
+17.9,2.9231407985458797,0.37646119284242097,52.56151174465881,2.9363973041708835,0.19466977440544078,0.23960490139421176,0.1892143234389997,57.523488255341185
+18.0,2.923139249499596,0.37638802901315227,52.84487927344658,2.9358266263025876,0.1946557240238264,0.23958760779888322,0.1892063906008014,57.85512072655343
+18.1,2.923137700388364,0.376315054201899,53.1281593522241,2.935257422774812,0.194641673642212,0.23957031420355468,0.18919845776260308,58.18684064777591
+18.2,2.923136151212179,0.3762422663257099,53.41135212759777,2.934689677340537,0.19462762326059757,0.23955302060822609,0.1891905249244048,58.51864787240223
+18.3,2.923134601971035,0.3761696633358739,53.694457744562655,2.934123374019817,0.1946135728789832,0.23953572701289755,0.1891825920862065,58.85054225543736
+18.4,2.9231330526649257,0.3760972432171745,53.97747634652888,2.933558497093961,0.1945995224973688,0.239518433417569,0.1891746592480082,59.182523653471115
+18.5,2.923131503293847,0.37602500398716304,54.260408075347634,2.932995031099872,0.19458547211575442,0.23950113982224047,0.1891667264098099,59.51459192465237
+18.6,2.923129953857793,0.37595294369545257,54.54325307133627,2.93243296082453,0.19457142173414005,0.23948384622691193,0.18915879357161158,59.84674692866375
+18.7,2.9231284043567585,0.37588106042302966,54.826011473303105,2.9318722712996315,0.19455737135252565,0.2394665526315834,0.18915086073341328,60.1789885266969
+18.8,2.923126854790738,0.37580935228158563,55.10868341857172,2.931312947796368,0.19454332097091126,0.23944925903625486,0.189142927895215,60.51131658142829
+18.9,2.923125305159725,0.3757378174128644,55.39126904300446,2.930754975820342,0.19452927058929687,0.23943196544092632,0.18913499505701667,60.843730956995536
+19.0,2.923123755463716,0.37566645398802895,55.673768481025895,2.930198341106626,0.1945152202076825,0.23941467184559778,0.1891270622188184,61.17623151897411
+19.1,2.9231222057027035,0.37559526020704265,55.95618186564522,2.9296430296149327,0.1945011698260681,0.23939737825026924,0.18911912938062006,61.5088181343548
+19.2,2.923120655876683,0.3755242342980682,56.2385093284787,2.9290890275249324,0.1944871194444537,0.23938008465494068,0.18911119654242173,61.8414906715213
+19.3,2.9231191059856494,0.37545337451688193,56.520750999771415,2.9285363212316793,0.19447306906283934,0.23936279105961214,0.18910326370422345,62.1742490002286
+19.4,2.923117556029597,0.3753826791463024,56.80290700841847,2.9279848973411586,0.19445901868122495,0.2393454974642836,0.18909533086602512,62.50709299158152
+19.5,2.9231160060085197,0.3753121464956341,57.084977481985945,2.927434742665946,0.19444496829961055,0.23932820386895506,0.18908739802782684,62.84002251801406
+19.6,2.9231144559224127,0.37524177490012656,57.36696254673136,2.9268858442209873,0.1944309179179962,0.23931091027362653,0.1890794651896285,63.17303745326866
+19.7,2.9231129057712706,0.37517156272044533,57.64886232762363,2.9263381892194738,0.1944168675363818,0.239293616678298,0.18907153235143023,63.50613767237637
+19.8,2.9231113555550876,0.3751015083421572,57.930676948362766,2.9257917650688263,0.1944028171547674,0.23927632308296945,0.18906359951323193,63.83932305163725
+19.9,2.923109805273858,0.37503161017522896,58.21240653139903,2.925246559366786,0.194388766773153,0.2392590294876409,0.18905566667503362,64.17259346860097
+20.0,2.9231082549275773,0.3749618666535377,58.49405119795189,2.9247025598975944,0.19437471639153858,0.23924173589231232,0.18904773383683532,64.50594880204812
+20.1,2.9231067045162398,0.3748922762343941,58.77561106802831,2.924159754628274,0.19436066600992422,0.23922444229698378,0.18903980099863701,64.8393889319717
+20.2,2.923105154039839,0.374822837398077,59.05708626044101,2.9236181317050005,0.19434661562830982,0.23920714870165524,0.1890318681604387,65.172913739559
+20.3,2.9231036034983697,0.3747535486473795,59.33847689282608,2.9230776794495603,0.19433256524669543,0.2391898551063267,0.1890239353222404,65.50652310717393
+20.4,2.923102052891828,0.37468440850716744,59.619783081660486,2.9225383863559062,0.19431851486508106,0.23917256151099817,0.1890160024840421,65.84021691833952
+20.5,2.9231005022202066,0.37461541552394634,59.901004942279016,2.9220002410867814,0.19430446448346667,0.2391552679156696,0.18900806964584382,66.17399505772099
+20.6,2.923098951483501,0.37454656826544086,60.18214258889105,2.921463232470439,0.19429041410185227,0.23913797432034106,0.1890001368076455,66.50785741110897
+20.7,2.923097400681706,0.37447786532018407,60.46319613459693,2.920927349497436,0.1942763637202379,0.23912068072501252,0.18899220396944721,66.84180386540308
+20.8,2.9230958498148145,0.37440930529711525,60.744165691403985,2.920392581317499,0.1942623133386235,0.239103387129684,0.18898427113124888,67.17583430859602
+20.9,2.923094298882823,0.37434088682518973,61.02505137024243,2.91985891723648,0.19424826295700912,0.23908609353435545,0.18897633829305055,67.50994862975757
+21.0,2.923092747885725,0.3742726085529959,61.30585328098073,2.919326346713368,0.19423421257539472,0.2390687999390269,0.18896840545485227,67.84414671901928
+21.1,2.923091196823515,0.374204469148382,61.58657153244072,2.91879485935738,0.19422016219378035,0.23905150634369837,0.18896047261665394,68.1784284675593
+21.2,2.923089645696188,0.37413646729809263,61.8672062324126,2.9182644449251227,0.19420611181216596,0.23903421274836983,0.18895253977845566,68.51279376758741
+21.3,2.9230880945037385,0.3740686017074123,62.14775748766949,2.917735093317816,0.19419206143055157,0.2390169191530413,0.18894460694025733,68.84724251233052
+21.4,2.9230865432461606,0.37400087109981833,62.42822540398168,2.917206794578583,0.1941780110489372,0.23899962555771273,0.18893667410205905,69.18177459601833
+21.5,2.9230849919234485,0.3739332742166419,62.70861008613085,2.916679538889807,0.1941639606673228,0.2389823319623842,0.18892874126386075,69.51638991386916
+21.6,2.9230834405355983,0.3738658098167361,62.988911637923714,2.916153316570542,0.1941499102857084,0.23896503836705565,0.18892080842566245,69.8510883620763
+21.7,2.923081889082603,0.37379847667615274,63.26913016220562,2.915628118073992,0.194135859904094,0.2389477447717271,0.18891287558746414,70.18586983779439
+21.8,2.923080337564458,0.37373127358782554,63.549265760873865,2.9151039339850398,0.1941218095224796,0.23893045117639852,0.18890494274926584,70.52073423912614
+21.9,2.923078785981157,0.37366419936126144,63.829318534890675,2.9145807550178393,0.19410775914086523,0.23891315758106998,0.18889700991106753,70.85568146510933
+22.0,2.9230772343326947,0.3735972528222383,64.1092885842961,2.914058572013459,0.19409370875925083,0.23889586398574145,0.18888907707286925,71.1907114157039
+22.1,2.923075682619067,0.37353043281251025,64.38917600822053,2.9135373759375804,0.19407965837763644,0.2388785703904129,0.18888114423467092,71.52582399177949
+22.2,2.9230741308402663,0.3734637381895185,64.66898090489703,2.9130171578782442,0.19406560799602207,0.23886127679508437,0.18887321139647265,71.86101909510299
+22.3,2.9230725789962886,0.3733971678261096,64.94870337167352,2.912497909043655,0.19405155761440768,0.23884398319975583,0.1888652785582743,72.19629662832651
+22.4,2.923071027087128,0.3733307206102601,65.22834350502465,2.9119796207600293,0.19403750723279328,0.2388266896044273,0.18885734572007604,72.53165649497535
+22.5,2.9230694751127793,0.3732643954448065,65.50790140056354,2.911462284469491,0.19402345685117892,0.23880939600909876,0.1888494128818777,72.86709859943646
+22.6,2.9230679230732366,0.3731981912471815,65.78737715305317,2.910945891728016,0.19400940646956452,0.23879210241377022,0.18884148004367937,73.20262284694685
+22.7,2.9230663709684945,0.37313210694915694,66.06677085641773,2.9104304342034246,0.19399535608795013,0.23877480881844165,0.1888335472054811,73.53822914358227
+22.8,2.9230648187985473,0.373066141496591,66.34608260375376,2.90991590367341,0.19398130570633573,0.23875751522311311,0.18882561436728276,73.87391739624626
+22.9,2.9230632665633904,0.3730002938491822,66.62531248734092,2.9094022920236213,0.19396725532472137,0.23874022162778458,0.18881768152908449,74.20968751265907
+23.0,2.9230617142630173,0.37293456298022726,66.90446059865278,2.908889591245773,0.19395320494310697,0.23872292803245604,0.18880974869088615,74.54553940134723
+23.1,2.923060161897423,0.3728689478763863,67.1835270283673,2.9083777934358133,0.19393915456149258,0.2387056344371275,0.18880181585268788,74.88147297163273
+23.2,2.9230586094666022,0.3728034475374512,67.46251186637717,2.9078668907921195,0.1939251041798782,0.23868834084179896,0.18879388301448957,75.21748813362284
+23.3,2.9230570569705487,0.3727380609761194,67.74141520179995,2.907356875613732,0.19391105379826382,0.23867104724647042,0.18878595017629127,75.55358479820006
+23.4,2.923055504409258,0.372672787217774,68.0202371229881,2.9068477402986375,0.1938970034166494,0.23865375365114183,0.18877801733809296,75.88976287701189
+23.5,2.923053951782724,0.3726076253002659,68.29897771753875,2.9063394773420743,0.193882953035035,0.2386364600558133,0.18877008449989466,76.22602228246126
+23.6,2.9230523990909414,0.37254257427370313,68.57763707230328,2.9058320793348846,0.1938689026534206,0.23861916646048476,0.18876215166169635,76.56236292769674
+23.7,2.923050846333905,0.37247763320024313,68.85621527339696,2.905325538961897,0.19385485227180624,0.23860187286515622,0.18875421882349808,76.89878472660305
+23.8,2.923049293511608,0.3724128011538895,69.13471240620805,2.9048198490003383,0.19384080189019184,0.23858457926982768,0.18874628598529974,77.23528759379197
+23.9,2.923047740624047,0.3723480772202942,69.41312855540725,2.9043150023182953,0.19382675150857745,0.23856728567449914,0.18873835314710147,77.57187144459274
+24.0,2.923046187671215,0.3722834604965621,69.69146380495643,2.9038109918731845,0.19381270112696308,0.23854999207917058,0.18873042030890314,77.90853619504358
+24.1,2.9230446346531065,0.3722189500910608,69.96971823811762,2.9033078107102743,0.1937986507453487,0.23853269848384204,0.18872248747070486,78.2452817618824
+24.2,2.9230430815697166,0.37215454512323437,70.24789193746172,2.9028054519612283,0.1937846003637343,0.2385154048885135,0.18871455463250653,78.58210806253828
+24.3,2.92304152842104,0.3720902447234203,70.52598498487708,2.9023039088426783,0.19377054998211993,0.23849811129318496,0.1887066217943082,78.91901501512292
+24.4,2.923039975207071,0.37202604803267064,70.80399746157788,2.901803174654831,0.19375649960050553,0.23848081769785642,0.18869868895610992,79.25600253842212
+24.5,2.9230384219278034,0.3719619542025767,71.08192944811242,2.9013032427800987,0.19374244921889114,0.23846352410252789,0.18869075611791158,79.59307055188759
+24.6,2.9230368685832326,0.3718979623950974,71.3597810243713,2.9008041066817603,0.19372839883727674,0.23844623050719935,0.1886828232797133,79.9302189756287
+24.7,2.9230353151733524,0.3718340717823911,71.63755226959546,2.9003057599026505,0.19371434845566238,0.2384289369118708,0.188674890441515,80.26744773040454
+24.8,2.9230337616981577,0.37177028154665037,71.91524326238407,2.8998081960638733,0.19370029807404798,0.23841164331654227,0.1886669576033167,80.60475673761596
+24.9,2.923032208157643,0.3717065908799411,72.19285408070216,2.8993114088635408,0.1936862476924336,0.23839434972121373,0.1886590247651184,80.94214591929784
+25.0,2.9230306545518037,0.3716429989840436,72.47038480188851,2.8988153920755404,0.19367219731081922,0.23837705612588517,0.1886510919269201,81.2796151981115
+25.1,2.9230291008806324,0.37157950507029786,72.74783550266292,2.8983201395483236,0.1936581469292048,0.2383597625305566,0.18864315908872178,81.61716449733709
+25.2,2.9230275471441254,0.3715161083594514,73.02520625913377,2.897825645203721,0.1936440965475904,0.23834246893522806,0.18863522625052348,81.95479374086624
+25.3,2.923025993342276,0.3714528080815101,73.30249714680521,2.897331903035779,0.193630046165976,0.2383251753398995,0.18862729341232518,82.2925028531948
+25.4,2.923024439475079,0.3713896034755923,73.57970824058435,2.89683890710962,0.19361599578436162,0.23830788174457096,0.1886193605741269,82.63029175941566
+25.5,2.9230228855425286,0.3713264937897855,73.85683961478834,2.896346651560327,0.19360194540274725,0.23829058814924242,0.18861142773592857,82.96816038521168
+25.6,2.9230213315446205,0.3712634782810062,74.13389134315132,2.8958551305918485,0.19358789502113286,0.23827329455391388,0.1886034948977303,83.30610865684869
+25.7,2.9230197774813482,0.3712005562148615,74.41086349883115,2.89536433847592,0.19357384463951846,0.23825600095858535,0.18859556205953196,83.64413650116886
+25.8,2.9230182233527064,0.371137726865515,74.68775615441625,2.8948742695510172,0.1935597942579041,0.2382387073632568,0.18858762922133368,83.98224384558377
+25.9,2.9230166691586894,0.37107498951555373,74.96456938193217,2.894384918221319,0.1935457438762897,0.23822141376792827,0.18857969638313535,84.32043061806785
+26.0,2.923015114899292,0.37101234345585854,75.24130325284813,2.893896278955697,0.1935316934946753,0.23820412017259973,0.18857176354493702,84.6586967471519
+26.1,2.9230135605745087,0.37094978798547695,75.5179578380834,2.89340834628672,0.19351764311306094,0.2381868265772712,0.18856383070673874,84.99704216191662
+26.2,2.9230120061843348,0.37088732241149786,75.79453320801372,2.892921114809684,0.19350359273144654,0.23816953298194266,0.1885558978685404,85.33546679198629
+26.3,2.923010451728763,0.3708249460489292,76.07102943247733,2.8924345791816477,0.19348954234983215,0.2381522393866141,0.18854796503034213,85.67397056752267
+26.4,2.923008897207789,0.3707626582205777,76.34744658078135,2.891948734120506,0.19347549196821776,0.23813494579128555,0.18854003219214382,86.01255341921865
+26.5,2.9230073426214065,0.3707004582569309,76.62378472170762,2.891463574404061,0.1934614415866034,0.238117652195957,0.18853209935394552,86.35121527829239
+26.6,2.9230057879696107,0.37063834549604174,76.90004392351875,2.8909790948691256,0.193447391204989,0.23810035860062848,0.18852416651574722,86.68995607648127
+26.7,2.9230042332523967,0.3705763192834145,77.17622425396391,2.8904952904106334,0.1934333408233746,0.23808306500529994,0.1885162336775489,87.0287757460361
+26.8,2.923002678469757,0.3705143789718936,77.45232578028464,2.89001215598077,0.19341929044176023,0.2380657714099714,0.1885083008393506,87.36767421971537
+26.9,2.9230011236216886,0.37045252392155453,77.72834856922057,2.8895296865881255,0.1934052400601458,0.2380484778146428,0.18850036800115233,87.70665143077943
+27.0,2.922999568708184,0.37039075349959594,78.0042926870149,2.889047877296848,0.19339118967853142,0.23803118421931427,0.188492435162954,88.04570731298512
+27.1,2.9229980137292384,0.3703290670802348,78.28015819942004,2.8885667232258316,0.19337713929691702,0.23801389062398573,0.18848450232475572,88.38484180057998
+27.2,2.922996458684846,0.3702674640446029,78.55594517170296,2.888086219547903,0.19336308891530263,0.2379965970286572,0.1884765694865574,88.72405482829704
+27.3,2.922994903575002,0.3702059437806453,78.83165366865062,2.8876063614890333,0.19334903853368826,0.23797930343332865,0.1884686366483591,89.06334633134941
+27.4,2.9229933483997,0.37014450568302026,79.10728375457509,2.8871271443275583,0.19333498815207387,0.23796200983800012,0.18846070381016078,89.40271624542491
+27.5,2.9229917931589355,0.37008314915300256,79.38283549331905,2.88664856339342,0.19332093777045947,0.23794471624267158,0.1884527709719625,89.74216450668096
+27.6,2.9229902378527024,0.37002187359838595,79.65830894826054,2.8861706140674106,0.1933068873888451,0.237927422647343,0.18844483813376417,90.08169105173948
+27.7,2.9229886824809945,0.3699606784333899,79.93370418231824,2.885693291780442,0.1932928370072307,0.23791012905201447,0.18843690529556584,90.42129581768177
+27.8,2.9229871270438075,0.369899563078567,80.20902125795646,2.8852165920128225,0.19327878662561632,0.23789283545668594,0.18842897245736756,90.76097874204355
+27.9,2.922985571541136,0.369838526960711,80.48426023718993,2.884740510293546,0.19326473624400195,0.2378755418613574,0.18842103961916923,91.10073976281008
+28.0,2.9229840159729727,0.3697775695127685,80.75942118158865,2.8842650421995946,0.19325068586238756,0.23785824826602886,0.18841310678097095,91.44057881841137
+28.1,2.922982460339314,0.3697166901737509,81.03450415228274,2.8837901833552575,0.19323663548077316,0.23784095467070032,0.18840517394277265,91.78049584771728
+28.2,2.9229809046401534,0.36965588838864827,81.30950920996706,2.8833159294314563,0.19322258509915877,0.23782366107537178,0.18839724110457434,92.12049079003295
+28.3,2.9229793488754856,0.36959516360834416,81.5844364149059,2.8828422761450847,0.1932085347175444,0.23780636748004325,0.18838930826637604,92.46056358509412
+28.4,2.9229777930453054,0.3695345152895334,81.85928582693745,2.882369219258361,0.19319448433593,0.2377890738847147,0.18838137542817773,92.80071417306256
+28.5,2.9229762371496064,0.36947394289463964,82.1340575054784,2.8818967545781895,0.1931804339543156,0.23777178028938614,0.18837344258997943,93.14094249452161
+28.6,2.9229746811883843,0.36941344589173547,82.40875150952836,2.8814248779555367,0.1931663835727012,0.23775448669405758,0.18836550975178115,93.48124849047167
+28.7,2.922973125161633,0.3693530237544631,82.68336789767412,2.8809535852848125,0.19315233319108682,0.23773719309872904,0.18835757691358282,93.82163210232589
+28.8,2.9229715690693463,0.3692926759619575,82.95790672809413,2.8804828725032685,0.19313828280947243,0.2377198995034005,0.18834964407538454,94.16209327190587
+28.9,2.92297001291152,0.36923240199876994,83.23236805856273,2.8800127355904057,0.19312423242785803,0.23770260590807193,0.1883417112371862,94.50263194143729
+29.0,2.9229684566881478,0.36917220135479284,83.50675194645416,2.8795431705673846,0.19311018204624364,0.2376853123127434,0.18833377839898793,94.84324805354585
+29.1,2.9229669003992242,0.369112073525187,83.78105844874695,2.8790741734964587,0.19309613166462927,0.23766801871741486,0.1883258455607896,95.18394155125307
+29.2,2.9229653440447434,0.36905201801030824,84.0552876220278,2.8786057404804044,0.19308208128301488,0.23765072512208632,0.18831791272259132,95.5247123779722
+29.3,2.9229637876247008,0.3689920343156374,84.32943952249578,2.8781378676619718,0.19306803090140048,0.23763343152675778,0.188309979884393,95.86556047750425
+29.4,2.9229622311390897,0.36893212195170993,84.60351420596612,2.877670551223338,0.19305398051978612,0.23761613793142924,0.18830204704619471,96.20648579403388
+29.5,2.9229606745879053,0.36887228043404724,84.87751172787426,2.8772037873855685,0.19303993013817172,0.2375988443361007,0.18829411420799638,96.54748827212575
+29.6,2.9229591179711423,0.36881250928308945,85.1514321432797,2.876737572408098,0.19302587975655733,0.23758155074077217,0.18828618136979808,96.88856785672031
+29.7,2.922957561288795,0.368752808024129,85.42527550686972,2.8762719025882064,0.19301182937494296,0.23756425714544363,0.18827824853159977,97.22972449313028
+29.8,2.922956004540857,0.36869317618724495,85.69904187296322,2.8758067742605107,0.19299777899332857,0.23754696355011506,0.18827031569340147,97.57095812703679
+29.9,2.922954447727324,0.3686336133072394,85.97273129551438,2.8753421837964677,0.19298372861171417,0.23752966995478653,0.18826238285520316,97.91226870448563
+30.0,2.92295289084819,0.3685741189235743,86.2463438281164,2.8748781276038797,0.19296967823009978,0.237512376359458,0.18825445001700486,98.25365617188362
+30.1,2.922951333903449,0.36851469258030917,86.51987952400499,2.8744146021264116,0.1929556278484854,0.23749508276412945,0.18824651717880655,98.59512047599503
+30.2,2.922949776893096,0.3684553338260404,86.79333843606209,2.8739516038431154,0.19294157746687102,0.2374777891688009,0.18823858434060825,98.93666156393792
+30.3,2.9229482198171257,0.368396042213841,87.06672061681918,2.8734891292679596,0.19292752708525662,0.23746049557347237,0.18823065150240997,99.27827938318083
+30.4,2.922946662675532,0.36833681730120166,87.34002611846094,2.873027174949373,0.1929134767036422,0.23744320197814378,0.18822271866421164,99.61997388153907
+30.5,2.92294510546831,0.3682776586499732,87.61325499282862,2.872565737469791,0.19289942632202783,0.23742590838281524,0.18821478582601336,99.96174500717139
+30.6,2.922943548195453,0.36821856582630824,87.88640729142325,2.8721048134452043,0.19288537594041344,0.2374086147874867,0.18820685298781503,100.30359270857676
+30.7,2.9229419908569563,0.3681595384006067,88.15948306540929,2.8716443995247327,0.19287132555879904,0.23739132119215817,0.18819892014961676,100.64551693459072
+30.8,2.9229404334528146,0.36810057594745943,88.43248236561766,2.8711844923901837,0.19285727517718465,0.23737402759682963,0.18819098731141842,100.98751763438236
+30.9,2.9229388759830224,0.36804167804559407,88.70540524254908,2.8707250887556337,0.19284322479557028,0.2373567340015011,0.18818305447322015,101.32959475745092
+31.0,2.9229373184475733,0.3679828442778217,88.97825174637728,2.8702661853670093,0.1928291744139559,0.23733944040617255,0.1881751216350218,101.67174825362272
+31.1,2.922935760846462,0.36792407423098417,89.25102192695215,2.8698077790016767,0.1928151240323415,0.237322146810844,0.18816718879682354,102.01397807304787
+31.2,2.9229342031796843,0.36786536749590276,89.52371583380291,2.869349866468042,0.19280107365072713,0.23730485321551545,0.1881592559586252,102.3562841661971
+31.3,2.9229326454472333,0.3678067236673265,89.79633351614109,2.8688924446051467,0.19278702326911273,0.2372875596201869,0.1881513231204269,102.69866648385891
+31.4,2.9229310876491033,0.36774814234388237,90.06887502286366,2.8684355102822825,0.19277297288749834,0.23727026602485837,0.1881433902822286,103.04112497713633
+31.5,2.9229295297852897,0.3676896231280264,90.3413404025561,2.867979060398606,0.19275892250588397,0.23725297242952983,0.1881354574440303,103.38365959744392
+31.6,2.922927971855786,0.36763116562599435,90.6137297034951,2.867523091882756,0.19274487212426958,0.2372356788342013,0.18812752460583199,103.72627029650494
+31.7,2.9229264138605875,0.3675727694477546,90.88604297365181,2.867067601692486,0.19273082174265518,0.23721838523887276,0.18811959176763368,104.0689570263482
+31.8,2.9229248557996885,0.36751443420696106,91.15828026069462,2.866612586814296,0.1927167713610408,0.23720109164354422,0.1881116589294354,104.4117197393054
+31.9,2.922923297673083,0.36745615952090604,91.43044161199185,2.8661580442630674,0.19270272097942642,0.23718379804821568,0.18810372609123707,104.75455838800815
+32.0,2.922921739480766,0.3673979450104761,91.70252707461485,2.865703971081714,0.19268867059781203,0.23716650445288712,0.1880957932530388,105.09747292538516
+32.1,2.9229201812227315,0.36733979030010605,91.97453669534056,2.8652503643408274,0.1926746202161976,0.23714921085755855,0.18808786041484046,105.44046330465946
+32.2,2.922918622898974,0.3672816950177351,92.24647052065437,2.864797221138334,0.1926605698345832,0.23713191726223,0.1880799275766422,105.78352947934566
+32.3,2.9229170645094884,0.36722365879476393,92.51832859675281,2.8643445385991586,0.19264651945296885,0.23711462366690148,0.18807199473844385,106.12667140324717
+32.4,2.922915506054269,0.367165681266011,92.7901109695463,2.863892313874886,0.19263246907135445,0.2370973300715729,0.18806406190024558,106.4698890304537
+32.5,2.9229139475333095,0.36710776206967105,93.06181768466162,2.8634405441434345,0.19261841868974006,0.23708003647624437,0.18805612906204724,106.8131823153384
+32.6,2.9229123889466053,0.3670499008472737,93.33344878744475,2.8629892266087347,0.19260436830812566,0.23706274288091583,0.18804819622384897,107.15655121255527
+32.7,2.92291083029415,0.3669920972436416,93.60500432296325,2.862538358500405,0.1925903179265113,0.2370454492855873,0.18804026338565064,107.49999567703678
+32.8,2.9229092715759397,0.366934350906852,93.87648433600901,2.8620879370734458,0.1925762675448969,0.23702815569025876,0.18803233054745236,107.84351566399098
+32.9,2.922907712791967,0.3668766614881951,94.14788887110063,2.861637959607922,0.1925622171632825,0.23701086209493022,0.18802439770925403,108.18711112889937
+33.0,2.922906153942227,0.36681902864213645,94.41921797248592,2.8611884234086644,0.19254816678166814,0.23699356849960168,0.18801646487105572,108.53078202751409
+33.1,2.9229045950267145,0.36676145202627797,94.69047168414446,2.8607393258049685,0.19253411640005375,0.23697627490427314,0.18800853203285742,108.87452831585556
+33.2,2.922903036045424,0.36670393130132045,94.96165004978995,2.8602906641502996,0.19252006601843935,0.2369589813089446,0.1880005991946591,109.21834995021007
+33.3,2.9229014769983492,0.3666464661310256,95.23275311287259,2.859842435822,0.19250601563682498,0.23694168771361604,0.1879926663564608,109.56224688712742
+33.4,2.922899917885485,0.3665890561821801,95.50378091658156,2.859394638221005,0.1924919652552106,0.2369243941182875,0.1879847335182625,109.90621908341845
+33.5,2.922898358706826,0.36653170112455885,95.77473350384724,2.8589472687715594,0.1924779148735962,0.23690710052295896,0.18797680068006423,110.25026649615278
+33.6,2.9228967994623662,0.3664744006308898,96.04561091734361,2.8585003249209406,0.1924638644919818,0.23688980692763043,0.1879688678418659,110.5943890826564
+33.7,2.922895240152101,0.3664171543768186,96.31641319949055,2.8580538041391854,0.19244981411036743,0.2368725133323019,0.18796093500366762,110.93858680050947
+33.8,2.9228936807760233,0.36635996204087384,96.58714039245596,2.857607703918816,0.192435763728753,0.2368552197369733,0.18795300216546929,111.28285960754403
+33.9,2.9228921213341286,0.3663028233044334,96.8577925381583,2.857162021774581,0.19242171334713862,0.23683792614164476,0.187945069327271,111.6272074618417
+34.0,2.922890561826411,0.36624573785169073,97.1283696782684,2.856716755243188,0.19240766296552422,0.23682063254631622,0.18793713648907268,111.97163032173162
+34.1,2.922889002252866,0.36618870536962167,97.39887185421198,2.856271901883049,0.19239361258390986,0.23680333895098768,0.1879292036508744,112.31612814578804
+34.2,2.9228874426134865,0.3661317255479516,97.66929910717158,2.8558274592740225,0.19237956220229546,0.23678604535565914,0.18792127081267607,112.66070089282846
+34.3,2.9228858829082673,0.36607479807912396,97.93965147808882,2.855383425017167,0.19236551182068107,0.2367687517603306,0.1879133379744778,113.00534852191117
+34.4,2.922884323137204,0.3660179226582683,98.20992900766657,2.8549397967344934,0.19235146143906667,0.23675145816500207,0.18790540513627946,113.35007099233343
+34.5,2.922882763300289,0.3659610989831689,98.48013173637077,2.854496572068718,0.1923374110574523,0.23673416456967353,0.18789747229808118,113.69486826362925
+34.6,2.9228812033975187,0.3659043267542343,98.75025970443278,2.854053748683028,0.1923233606758379,0.23671687097434496,0.18788953945988285,114.03974029556726
+34.7,2.922879643428886,0.3658476056744668,99.0203129518512,2.853611324260841,0.19230931029422352,0.23669957737901642,0.18788160662168454,114.38468704814883
+34.8,2.922878083394387,0.36579093544943286,99.29029151839407,2.853169296505577,0.19229525991260915,0.23668228378368789,0.18787367378348624,114.72970848160593
+34.9,2.922876523294015,0.3657343157872335,99.5601954436007,2.8527276631404215,0.19228120953099476,0.23666499018835935,0.18786574094528793,115.0748045563993
+35.0,2.922874963127764,0.36567774639847506,99.8300247667837,2.8522864219081057,0.19226715914938036,0.2366476965930308,0.18785780810708963,115.41997523321632
+35.1,2.92287340289563,0.36562122699624133,100.09977952703095,2.851845570570682,0.192253108767766,0.23663040299770227,0.18784987526889133,115.76522047296908
+35.2,2.9228718425976057,0.3655647572960642,100.3694597632074,2.851405106909301,0.1922390583861516,0.23661310940237373,0.18784194243069305,116.11054023679262
+35.3,2.9228702822336867,0.3655083370158974,100.63906551395719,2.850965028724,0.1922250080045372,0.2365958158070452,0.18783400959249472,116.4559344860428
+35.4,2.9228687218038676,0.36545196587608764,100.90859681770532,2.8505253338334837,0.1922109576229228,0.23657852221171666,0.18782607675429644,116.80140318229468
+35.5,2.922867161308141,0.3653956435993483,101.17805371265955,2.850086020074917,0.1921969072413084,0.23656122861638806,0.1878181439160981,117.14694628734046
+35.6,2.922865600746504,0.3653393699107332,101.44743623681241,2.8496470853037192,0.19218285685969402,0.23654393502105953,0.18781021107789983,117.49256376318762
+35.7,2.9228640401189487,0.3652831445376092,101.71674442794267,2.849208527393352,0.19216880647807963,0.236526641425731,0.1878022782397015,117.83825557205735
+35.8,2.9228624794254716,0.3652269672096316,101.98597832361753,2.8487703442351267,0.19215475609646523,0.23650934783040245,0.18779434540150322,118.18402167638247
+35.9,2.9228609186660655,0.36517083765871755,102.2551379611941,2.848332533737997,0.19214070571485087,0.23649205423507388,0.1877864125633049,118.52986203880592
+36.0,2.922859357840725,0.36511475561902146,102.52422337782123,2.8478950938283676,0.19212665533323647,0.23647476063974535,0.1877784797251066,118.87577662217878
+36.1,2.922857796949445,0.36505872082691027,102.7932346104414,2.8474580224499,0.19211260495162208,0.2364574670444168,0.18777054688690828,119.22176538955863
+36.2,2.92285623599222,0.3650027330209384,103.06217169579217,2.8470213175633194,0.1920985545700077,0.23644017344908827,0.18776261404871,119.56782830420786
+36.3,2.9228546749690443,0.3649467919418242,103.3310346704081,2.846584977146229,0.19208450418839332,0.23642287985375973,0.18775468121051167,119.9139653295919
+36.4,2.9228531138799125,0.3648908973324259,103.59982357062236,2.846148999192922,0.19207045380677892,0.2364055862584312,0.18774674837231337,120.26017642937765
+36.5,2.9228515527248184,0.36483504893771784,103.86853843256827,2.8457133817141993,0.19205640342516453,0.23638829266310266,0.18773881553411506,120.60646156743174
+36.6,2.922849991503757,0.36477924650476795,104.13717929218116,2.84527812273719,0.19204235304355016,0.23637099906777412,0.18773088269591676,120.95282070781886
+36.7,2.922848430216723,0.3647234897827144,104.40574618519985,2.844843220305173,0.19202830266193577,0.23635370547244558,0.18772294985771848,121.29925381480018
+36.8,2.9228468688637097,0.36466777852274307,104.67423914716818,2.8444086724773965,0.19201425228032137,0.23633641187711704,0.18771501701952015,121.64576085283181
+36.9,2.9228453074447125,0.36461211247806574,104.94265821343689,2.843974477328913,0.192000201898707,0.23631911828178848,0.18770708418132187,121.99234178656312
+37.0,2.9228437459597254,0.3645564914038976,105.21100341916487,2.843540632950402,0.1919861515170926,0.23630182468645994,0.18769915134312354,122.33899658083514
+37.1,2.9228421844087435,0.36450091505743626,105.47927479932092,2.843107137448003,0.19197210113547822,0.2362845310911314,0.18769121850492526,122.6857252006791
+37.2,2.9228406227917603,0.3644453831978396,105.74747238868514,2.8426739889431487,0.1919580507538638,0.2362672374958028,0.18768328566672693,123.03252761131489
+37.3,2.9228390611087707,0.3643898955862054,106.0155962218506,2.8422411855724024,0.1919440003722494,0.23624994390047427,0.18767535282852865,123.3794037781494
+37.4,2.922837499359769,0.3643344519855504,106.28364633322477,2.8418087254872932,0.19192994999063503,0.23623265030514573,0.18766741999033032,123.72635366677524
+37.5,2.9228359375447495,0.3642790521607897,106.55162275703098,2.8413766068541597,0.19191589960902064,0.2362153567098172,0.18765948715213204,124.07337724296903
+37.6,2.9228343756637063,0.36422369587871634,106.81952552730993,2.8409448278539875,0.19190184922740625,0.23619806311448865,0.1876515543139337,124.42047447269009
+37.7,2.9228328137166355,0.3641683829079821,107.08735467792123,2.8405133866822605,0.19188779884579188,0.23618076951916012,0.18764362147573543,124.7676453220788
+37.8,2.9228312517035295,0.36411311301907673,107.35511024254458,2.8400822815487987,0.19187374846417748,0.23616347592383158,0.1876356886375371,125.11488975745542
+37.9,2.9228296896243835,0.3640578859843093,107.62279225468151,2.8396515106776126,0.1918596980825631,0.23614618232850304,0.18762775579933882,125.4622077453185
+38.0,2.9228281274791916,0.36400270157778886,107.89040074765663,2.8392210723067532,0.19184564770094872,0.2361288887331745,0.1876198229611405,125.80959925234339
+38.1,2.922826565267949,0.3639475595754055,108.15793575461902,2.838790964688163,0.19183159731933433,0.23611159513784596,0.18761189012294222,126.15706424538101
+38.2,2.92282500299065,0.36389245975481155,108.42539730854367,2.83836118608753,0.19181754693771993,0.2360943015425174,0.18760395728474388,126.50460269145637
+38.3,2.922823440647288,0.3638374018954032,108.69278544223276,2.8379317347841453,0.19180349655610554,0.23607700794718886,0.18759602444654558,126.85221455776724
+38.4,2.9228218782378583,0.36378238577830246,108.96010018831716,2.8375026090707594,0.19178944617449117,0.23605971435186032,0.1875880916083473,127.19989981168285
+38.5,2.9228203157623556,0.36372741118633906,109.22734157925763,2.8370738072534447,0.19177539579287678,0.23604242075653178,0.18758015877014897,127.5476584207424
+38.6,2.9228187532207732,0.3636724779040327,109.49450964734618,2.836645327651455,0.19176134541126238,0.23602512716120325,0.1875722259319507,127.89549035265385
+38.7,2.922817190613106,0.3636175857175756,109.76160442470737,2.8362171685970896,0.19174729502964802,0.2360078335658747,0.18756429309375236,128.24339557529265
+38.8,2.9228156279393493,0.3635627344148157,110.02862594329982,2.8357893284355624,0.19173324464803362,0.23599053997054617,0.18755636025555408,128.59137405670018
+38.9,2.9228140651994963,0.3635079237852384,110.29557423491705,2.83536180552486,0.19171919426641923,0.23597324637521763,0.18754842741735575,128.93942576508294
+39.0,2.9228125023935414,0.3634531536199512,110.56244933118916,2.8349345982356193,0.1917051438848048,0.23595595277988904,0.18754049457915747,129.28755066881087
+39.1,2.9228109395214803,0.36339842371166614,110.82925126358396,2.834507704950996,0.1916910935031904,0.2359386591845605,0.18753256174095914,129.63574873641608
+39.2,2.922809376583306,0.36334373385468355,111.09598006340806,2.834081124066532,0.19167704312157605,0.23592136558923196,0.18752462890276086,129.98401993659198
+39.3,2.922807813579013,0.3632890838448763,111.36263576180838,2.8336548539900352,0.19166299273996165,0.23590407199390342,0.18751669606456253,130.33236423819162
+39.4,2.9228062505085974,0.36323447347967336,111.6292183897732,2.833228893141452,0.19164894235834726,0.2358867783985749,0.18750876322636426,130.6807816102268
+39.5,2.9228046873720515,0.3631799025580437,111.89572797813328,2.8328032399527414,0.1916348919767329,0.23586948480324632,0.18750083038816592,131.02927202186672
+39.6,2.922803124169371,0.36312537088048213,112.16216455756333,2.8323778928677608,0.1916208415951185,0.23585219120791778,0.18749289754996765,131.3778354424367
+39.7,2.9228015609005493,0.36307087824899215,112.42852815858292,2.8319528503421387,0.1916067912135041,0.23583489761258924,0.18748496471176931,131.72647184141712
+39.8,2.9227999975655816,0.36301642446707183,112.69481881155778,2.8315281108431605,0.19159274083188974,0.2358176040172607,0.18747703187357104,132.07518118844223
+39.9,2.9227984341644624,0.36296200933969874,112.96103654670105,2.8311036728496504,0.19157869045027534,0.23580031042193217,0.1874690990353727,132.42396345329897
+40.0,2.9227968706971854,0.36290763267331455,113.22718139407415,2.830679534851854,0.19156464006866095,0.23578301682660363,0.1874611661971744,132.77281860592586
+40.1,2.922795307163746,0.36285329427581114,113.49325338358823,2.8302556953513274,0.19155058968704655,0.2357657232312751,0.18745323335897612,133.1217466164118
+40.2,2.922793743564137,0.36279899395651577,113.7592525450051,2.8298321528608232,0.19153653930543219,0.23574842963594655,0.1874453005207778,133.47074745499492
+40.3,2.9227921798983547,0.36274473152617664,114.02517890793838,2.8294089059041783,0.1915224889238178,0.23573113604061802,0.18743736768257951,133.81982109206163
+40.4,2.9227906161663917,0.3626905067969492,114.29103250185464,2.828985953016204,0.1915084385422034,0.23571384244528945,0.18742943484438118,134.16896749814538
+40.5,2.9227890523682443,0.36263631958238224,114.55681335607456,2.8285632927425817,0.19149438816058903,0.2356965488499609,0.1874215020061829,134.51818664392545
+40.6,2.9227874885039054,0.3625821696974034,114.82252149977374,2.8281409236397472,0.19148033777897464,0.23567925525463237,0.18741356916798457,134.86747850022627
+40.7,2.92278592457337,0.36252805695830687,115.08815696198413,2.827718844274794,0.1914662873973602,0.2356619616593038,0.1874056363297863,135.2168430380159
+40.8,2.9227843605766326,0.36247398118273877,115.35371977159478,2.8272970532253625,0.19145223701574582,0.23564466806397524,0.18739770349158796,135.56628022840522
+40.9,2.9227827965136868,0.3624199421896844,115.61920995735312,2.8268755490795385,0.19143818663413142,0.2356273744686467,0.1873897706533897,135.91579004264688
+41.0,2.9227812323845277,0.36236593979945564,115.88462754786593,2.8264543304357543,0.19142413625251706,0.23561008087331817,0.18738183781519135,136.26537245213407
+41.1,2.9227796681891496,0.362311973833677,116.1499725716002,2.826033395902681,0.19141008587090266,0.23559278727798963,0.18737390497699308,136.61502742839983
+41.2,2.9227781039275467,0.36225804411527385,116.41524505688442,2.825612744099136,0.19139603548928827,0.2355754936826611,0.18736597213879475,136.96475494311562
+41.3,2.922776539599714,0.3622041504684593,116.68044503190946,2.8251923736539823,0.1913819851076739,0.23555820008733255,0.18735803930059647,137.31455496809053
+41.4,2.9227749752056447,0.3621502927187213,116.94557252472947,2.824772283206026,0.1913679347260595,0.23554090649200402,0.18735010646239814,137.66442747527054
+41.5,2.9227734107453345,0.3620964706928116,117.2106275632631,2.8243524714039303,0.1913538843444451,0.23552361289667548,0.18734217362419986,138.01437243673692
+41.6,2.9227718462187773,0.3620426842187325,117.47561017529432,2.8239329369061132,0.19133983396283075,0.23550631930134694,0.18733424078600155,138.3643898247057
+41.7,2.922770281625967,0.3619889331257249,117.7405203884733,2.8235136783806545,0.19132578358121635,0.23548902570601837,0.18732630794780322,138.71447961152674
+41.8,2.9227687169668988,0.3619352172442574,118.00535823031768,2.823094694505208,0.19131173319960196,0.23547173211068984,0.18731837510960495,139.0646417696823
+41.9,2.9227671522415664,0.3618815364060131,118.2701237282132,2.8226759839669024,0.19129768281798756,0.2354544385153613,0.1873104422714066,139.4148762717868
+42.0,2.9227655874499647,0.36182789044387936,118.53481690941487,2.822257545462259,0.1912836324363732,0.23543714492003276,0.18730250943320834,139.76518309058514
+42.1,2.9227640225920877,0.3617742791919355,118.79943780104779,2.821839377697097,0.1912695820547588,0.23541985132470422,0.18729457659501,140.11556219895223
+42.2,2.92276245766793,0.3617207024854418,119.06398643010803,2.821421479386446,0.1912555316731444,0.23540255772937568,0.18728664375681173,140.466013569892
+42.3,2.9227608926774855,0.36166716016082834,119.3284628234637,2.821003849254461,0.19124148129153004,0.23538526413404715,0.1872787109186134,140.8165371765363
+42.4,2.9227593276207497,0.361613652055684,119.59286700785584,2.820586486034336,0.19122743090991565,0.2353679705387186,0.18727077808041512,141.16713299214416
+42.5,2.922757762497716,0.3615601780087453,119.85719900989906,2.820169388468213,0.19121338052830122,0.23535067694339,0.18726284524221679,141.51780099010097
+42.6,2.9227561973083787,0.3615067378598856,120.1214588560828,2.8197525553071077,0.19119933014668683,0.23533338334806148,0.1872549124040185,141.86854114391724
+42.7,2.922754632052733,0.3614533314501049,120.38564657277196,2.8193359853108184,0.19118527976507244,0.23531608975273294,0.18724697956582018,142.21935342722807
+42.8,2.9227530667307726,0.3613999586215188,120.64976218620784,2.818919677247847,0.19117122938345807,0.2352987961574044,0.1872390467276219,142.57023781379215
+42.9,2.9227515013424927,0.36134661921734845,120.91380572250915,2.8185036298953183,0.19115717900184367,0.23528150256207586,0.18723111388942357,142.92119427749086
+43.0,2.922749935887887,0.3612933130819097,121.17777720767253,2.818087842038896,0.19114312862022928,0.2352642089667473,0.1872231810512253,143.27222279232748
+43.1,2.9227483703669495,0.3612400400606038,121.4416766675738,2.81767231247271,0.1911290782386149,0.23524691537141876,0.18721524821302696,143.62332333242622
+43.2,2.9227468047796745,0.3611867999999064,121.70550412796848,2.8172570399992702,0.19111502785700052,0.23522962177609022,0.18720731537482868,143.97449587203155
+43.3,2.9227452391260575,0.3611335927473583,121.9692596144928,2.816842023429395,0.19110097747538612,0.23521232818076168,0.18719938253663038,144.3257403855072
+43.4,2.922743673406093,0.3610804181515556,122.2329431526646,2.8164272615821337,0.19108692709377176,0.23519503458543314,0.18719144969843204,144.6770568473354
+43.5,2.922742107619774,0.36102727606213897,122.49655476788377,2.816012753284684,0.19107287671215736,0.2351777409901046,0.18718351686023377,145.02844523211627
+43.6,2.9227405417670953,0.36097416632978563,122.76009448543351,2.8155984973723283,0.19105882633054297,0.23516044739477607,0.18717558402203543,145.3799055145665
+43.7,2.922738975848052,0.360921088806199,123.023562330481,2.8151844926883522,0.19104477594892857,0.23514315379944753,0.18716765118383716,145.73143766951904
+43.8,2.9227374098626377,0.3608680433440989,123.28695832807794,2.8147707380839715,0.1910307255673142,0.235125860204119,0.18715971834563883,146.08304167192205
+43.9,2.9227358438108473,0.36081502979721314,123.55028250316172,2.8143572324182626,0.1910166751856998,0.23510856660879045,0.18715178550744055,146.4347174968383
+44.0,2.9227342776926757,0.3607620480202681,123.81353488055603,2.8139439745580916,0.19100262480408542,0.2350912730134619,0.18714385266924222,146.786465119444
+44.1,2.9227327115081154,0.360709097868979,124.0767154849714,2.813530963378036,0.19098857442247105,0.23507397941813335,0.18713591983104394,147.13828451502863
+44.2,2.9227311452571625,0.36065617920004195,124.33982434100648,2.8131181977603275,0.19097452404085663,0.23505668582280478,0.1871279869928456,147.49017565899356
+44.3,2.9227295789398107,0.36060329187112444,124.60286147314835,2.812705676594771,0.19096047365924224,0.23503939222747622,0.18712005415464733,147.84213852685164
+44.4,2.922728012556054,0.3605504357408568,124.86582690577353,2.8122933987786833,0.19094642327762784,0.23502209863214768,0.187112121316449,148.19417309422647
+44.5,2.9227264461058877,0.3604976106688235,125.12872066314864,2.8118813632168234,0.19093237289601345,0.23500480503681914,0.18710418847825072,148.54627933685137
+44.6,2.922724879589306,0.3604448165155544,125.39154276943106,2.811469568821324,0.19091832251439908,0.2349875114414906,0.1870962556400524,148.89845723056897
+44.7,2.9227233130063017,0.3603920531425164,125.65429324866977,2.811058014511628,0.19090427213278469,0.23497021784616207,0.1870883228018541,149.25070675133026
+44.8,2.9227217463568715,0.36033932041210565,125.91697212480621,2.8106466992144243,0.1908902217511703,0.23495292425083353,0.18708038996365578,149.6030278751938
+44.9,2.9227201796410087,0.3602866181876382,126.17957942167465,2.810235621863578,0.19087617136955592,0.234935630655505,0.1870724571254575,149.95542057832535
+45.0,2.9227186128587066,0.3602339463333422,126.44211516300312,2.8098247814000694,0.19086212098794153,0.23491833706017645,0.1870645242872592,150.3078848369969
+45.1,2.9227170460099616,0.36018130471435067,126.70457937241429,2.809414176771935,0.19084807060632714,0.23490104346484791,0.18705659144906087,150.66042062758575
+45.2,2.9227154790947667,0.36012869319669194,126.96697207342572,2.8090038069341974,0.19083402022471277,0.23488374986951938,0.1870486586108626,151.0130279265743
+45.3,2.922713912113117,0.3600761116472832,127.22929328945104,2.808593670848809,0.19081996984309837,0.2348664562741908,0.18704072577266426,151.36570671054895
+45.4,2.922712345065006,0.36002355993392143,127.49154304380026,2.8081837674845875,0.19080591946148398,0.23484916267886227,0.18703279293446598,151.71845695619973
+45.5,2.922710777950429,0.35997103792527674,127.75372135968071,2.8077740958171584,0.19079186907986959,0.23483186908353373,0.18702486009626765,152.07127864031932
+45.6,2.92270921076938,0.35991854549088387,128.0158282601976,2.8073646548288944,0.19077781869825522,0.2348145754882052,0.18701692725806937,152.42417173980243
+45.7,2.922707643521853,0.359866082501135,128.27786376835462,2.8069554435088535,0.19076376831664082,0.23479728189287666,0.18700899441987104,152.77713623164541
+45.8,2.922706076207842,0.3598136488272723,128.53982790705476,2.806546460852724,0.19074971793502643,0.23477998829754812,0.18700106158167276,153.13017209294526
+45.9,2.922704508827343,0.3597612443413804,128.80172069910103,2.8061377058627675,0.190735667553412,0.23476269470221953,0.18699312874347443,153.483279300899
+46.0,2.922702941380349,0.359708868916379,129.06354216719677,2.805729177547756,0.19072161717179764,0.234745401106891,0.18698519590527615,153.83645783280323
+46.1,2.922701373866855,0.3596565224260156,129.3252923339467,2.8053208749229217,0.19070756679018325,0.23472810751156245,0.18697726306707782,154.18970766605332
+46.2,2.9226998062868548,0.3596042047448585,129.58697122185723,2.8049127970098966,0.19069351640856885,0.2347108139162339,0.18696933022887954,154.5430287781428
+46.3,2.9226982386403435,0.35955191574828976,129.84857885333736,2.8045049428366604,0.19067946602695446,0.23469352032090537,0.1869613973906812,154.89642114666262
+46.4,2.922696670927314,0.3594996553124977,130.11011525069918,2.8040973114374825,0.1906654156453401,0.23467622672557684,0.18695346455248293,155.24988474930083
+46.5,2.9226951031477624,0.3594474233144706,130.3715804361585,2.803689901852871,0.1906513652637257,0.2346589331302483,0.18694553171428463,155.60341956384153
+46.6,2.922693535301682,0.3593952196319892,130.63297443183546,2.803282713129516,0.1906373148821113,0.23464163953491973,0.18693759887608632,155.95702556816457
+46.7,2.922691967389068,0.35934304414362067,130.89429725975526,2.8028757443202412,0.19062326450049694,0.2346243459395912,0.18692966603788802,156.31070274024475
+46.8,2.9226903994099134,0.35929089672871073,131.15554894184856,2.802468994483944,0.19060921411888254,0.23460705234426266,0.1869217331996897,156.66445105815143
+46.9,2.922688831364214,0.35923877726737835,131.41672949995237,2.8020624626855515,0.19059516373726815,0.23458975874893412,0.1869138003614914,157.01827050004763
+47.0,2.922687263251963,0.3591866856405083,131.67783895581033,2.8016561479959647,0.19058111335565378,0.23457246515360558,0.18690586752329308,157.37216104418968
+47.1,2.9226856950731555,0.3591346217297446,131.93887733107357,2.801250049492008,0.1905670629740394,0.23455517155827704,0.1868979346850948,157.72612266892645
+47.2,2.922684126827786,0.35908258541748467,132.19984464730118,2.8008441662563808,0.190553012592425,0.2345378779629485,0.18689000184689647,158.08015535269885
+47.3,2.922682558515848,0.3590305765868723,132.4607409259607,2.8004384973776046,0.1905389622108106,0.23452058436761997,0.1868820690086982,158.43425907403932
+47.4,2.9226809901373363,0.3589785951217922,132.721566188429,2.800033041949979,0.19052491182919623,0.23450329077229143,0.18687413617049986,158.788433811571
+47.5,2.922679421692245,0.3589266409068624,132.98232045599252,2.799627799073527,0.19051086144758184,0.23448599717696286,0.18686620333230158,159.14267954400748
+47.6,2.92267785318057,0.35887471382742964,133.2430037498481,2.7992227678539514,0.19049681106596741,0.2344687035816343,0.18685827049410325,159.49699625015194
+47.7,2.922676284602303,0.35882281376956193,133.50361609110325,2.7988179474025836,0.19048276068435302,0.23445140998630576,0.18685033765590495,159.8513839088968
+47.8,2.92267471595744,0.3587709406200436,133.76415750077706,2.79841333683634,0.19046871030273865,0.23443411639097722,0.18684240481770664,160.20584249922294
+47.9,2.9226731472459755,0.3587190942663683,134.02462799980051,2.7980089352776725,0.19045465992112426,0.23441682279564865,0.18683447197950834,160.5603720001995
+48.0,2.922671578467903,0.35866727459673386,134.28502760901716,2.7976047418545242,0.19044060953950986,0.23439952920032012,0.18682653914131003,160.91497239098285
+48.1,2.922670009623217,0.3586154815000361,134.54535634918355,2.7972007557002816,0.19042655915789547,0.23438223560499158,0.18681860630311176,161.26964365081648
+48.2,2.9226684407119126,0.358563714865863,134.80561424096987,2.7967969759537317,0.1904125087762811,0.23436494200966304,0.18681067346491345,161.62438575903016
+48.3,2.922666871733983,0.35851197458448925,135.06580130496047,2.7963934017590164,0.1903984583946667,0.2343476484143345,0.18680274062671515,161.9791986950395
+48.4,2.922665302689424,0.35846026054687014,135.32591756165442,2.7959900322655873,0.19038440801305231,0.23433035481900596,0.18679480778851684,162.33408243834558
+48.5,2.9226637335782284,0.35840857264463605,135.58596303146584,2.7955868666281614,0.19037035763143795,0.23431306122367743,0.18678687495031854,162.6890369685342
+48.6,2.9226621644003914,0.35835691077008736,135.84593773472474,2.7951839040066817,0.19035630724982355,0.2342957676283489,0.18677894211212023,163.0440622652753
+48.7,2.9226605951559073,0.35830527481618824,136.10584169167728,2.7947811435662686,0.19034225686820916,0.23427847403302035,0.18677100927392193,163.39915830832274
+48.8,2.92265902584477,0.3582536646765618,136.36567492248648,2.7943785844771822,0.1903282064865948,0.23426118043769179,0.18676307643572362,163.75432507751353
+48.9,2.9226574564669745,0.3582020802454841,136.62543744723257,2.7939762259147765,0.1903141561049804,0.23424388684236325,0.18675514359752532,164.10956255276744
+49.0,2.9226558870225148,0.3581505214178796,136.8851292859136,2.793574067059461,0.190300105723366,0.2342265932470347,0.18674721075932701,164.46487071408643
+49.1,2.922654317511385,0.358098988089315,137.14475045844588,2.7931721070966575,0.1902860553417516,0.23420929965170617,0.1867392779211287,164.82024954155415
+49.2,2.92265274793358,0.35804748015599475,137.40430098466456,2.792770345216759,0.19027200496013724,0.23419200605637763,0.1867313450829304,165.17569901533548
+49.3,2.9226511782890934,0.3579959975147552,137.66378088432396,2.7923687806150905,0.19025795457852285,0.2341747124610491,0.1867234122447321,165.53121911567604
+49.4,2.9226496085779203,0.35794454006306026,137.92319017709838,2.79196741249187,0.19024390419690843,0.2341574188657205,0.18671547940653377,165.88680982290163
+49.5,2.9226480388000544,0.35789310769899546,138.18252888258215,2.791566240052165,0.19022985381529403,0.23414012527039196,0.18670754656833546,166.24247111741786
+49.6,2.9226464689554903,0.35784170032126367,138.44179702029052,2.791165262505857,0.19021580343367966,0.23412283167506343,0.18669961373013716,166.59820297970953
+49.7,2.922644899044222,0.3577903178291798,138.70099460965986,2.7907644790676027,0.19020175305206527,0.2341055380797349,0.18669168089193885,166.95400539034017
+49.8,2.9226433290662444,0.35773896012266576,138.9601216700483,2.790363888956793,0.19018770267045088,0.23408824448440635,0.18668374805374058,167.30987832995172
+49.9,2.922641759021552,0.35768762710224594,139.21917822073615,2.7899634913975184,0.19017365228883648,0.2340709508890778,0.18667581521554227,167.66582177926384
+50.0,2.9226401889101385,0.35763631866904194,139.47816428092636,2.7895632856185273,0.19015960190722211,0.23405365729374927,0.18666788237734397,168.02183571907366
+50.1,2.9226386187319986,0.3575850347247681,139.7370798697449,2.7891632708531913,0.19014555152560772,0.2340363636984207,0.18665994953914566,168.37792013025515
+50.2,2.9226370484871262,0.3575337751717268,139.99592500624138,2.7887634463394693,0.19013150114399333,0.23401907010309217,0.18665201670094736,168.73407499375867
+50.3,2.9226354781755157,0.3574825399128035,140.25469970938934,2.7883638113198677,0.19011745076237896,0.23400177650776363,0.18664408386274906,169.09030029061066
+50.4,2.922633907797162,0.3574313288514627,140.51340399808703,2.787964365041409,0.19010340038076456,0.2339844829124351,0.18663615102455075,169.44659600191298
+50.5,2.9226323373520593,0.3573801418917426,140.7720378911574,2.787565106755592,0.19008934999915017,0.23396718931710656,0.18662821818635245,169.80296210884262
+50.6,2.9226307668402014,0.3573289789382507,141.0306014073488,2.787166035718356,0.1900752996175358,0.23394989572177802,0.18662028534815414,170.15939859265123
+50.7,2.9226291962615827,0.35727783989616,141.28909456533546,2.7867671511900483,0.1900612492359214,0.23393260212644948,0.18661235250995584,170.51590543466457
+50.8,2.9226276256161974,0.35722672467120387,141.5475173837178,2.78636845243539,0.19004719885430701,0.23391530853112094,0.18660441967175753,170.87248261628218
+50.9,2.9226260549040406,0.3571756331696716,141.80586988102303,2.7859699387234387,0.19003314847269262,0.2338980149357924,0.18659648683355923,171.229130118977
+51.0,2.9226244841251066,0.3571245652984047,142.0641520757054,2.785571609327557,0.19001909809107825,0.23388072134046387,0.18658855399536092,171.58584792429463
+51.1,2.9226229132793886,0.35707352096479156,142.32236398614663,2.7851734635253744,0.19000504770946383,0.23386342774513527,0.1865806211571626,171.9426360138534
+51.2,2.922621342366882,0.35702250007676417,142.58050563065657,2.784775500598761,0.18999099732784944,0.23384613414980673,0.18657268831896429,172.29949436934348
+51.3,2.9226197713875806,0.35697150254279353,142.8385770274734,2.7843777198337896,0.18997694694623504,0.2338288405544782,0.18656475548076598,172.6564229725266
+51.4,2.9226182003414793,0.356920528271885,143.09657819476413,2.783980120520703,0.18996289656462068,0.23381154695914963,0.1865568226425677,173.01342180523588
+51.5,2.922616629228571,0.3568695771735744,143.35450915062486,2.783582701953881,0.18994884618300628,0.2337942533638211,0.1865488898043694,173.37049084937516
+51.6,2.922615058048852,0.3568186491579249,143.6123699130816,2.7831854634318143,0.1899347958013919,0.23377695976849255,0.1865409569661711,173.7276300869184
+51.7,2.922613486802315,0.356767744135521,143.8701605000902,2.782788404257064,0.18992074541977752,0.23375966617316402,0.1865330241279728,174.08483949990983
+51.8,2.922611915488955,0.3567168620174662,144.12788092953704,2.7823915237362367,0.18990669503816313,0.23374237257783548,0.1865250912897745,174.44211907046295
+51.9,2.9226103441087665,0.356666002715378,144.38553121923934,2.7819948211799486,0.18989264465654873,0.23372507898250694,0.18651715845157618,174.7994687807607
+52.0,2.9226087726617433,0.3566151661413845,144.64311138694558,2.7815982959027994,0.18987859427493434,0.2337077853871784,0.18650922561337788,175.15688861305446
+52.1,2.92260720114788,0.35656435220812027,144.90062145033593,2.7812019472233382,0.18986454389331997,0.23369049179184986,0.18650129277517957,175.5143785496641
+52.2,2.9226056295671707,0.35651356082872226,145.15806142702257,2.7808057744640338,0.18985049351170558,0.23367319819652133,0.18649335993698127,175.87193857297746
+52.3,2.9226040579196106,0.35646279191682634,145.41543133455014,2.7804097769512457,0.18983644313009118,0.2336559046011928,0.18648542709878296,176.22956866544985
+52.4,2.922602486205193,0.35641204538656324,145.67273119039612,2.7800139540151934,0.18982239274847681,0.23363861100586422,0.18647749426058466,176.58726880960387
+52.5,2.9226009144239122,0.3563613211525547,145.92996101197116,2.779618304989927,0.18980834236686242,0.23362131741053568,0.18646956142238635,176.94503898802887
+52.6,2.922599342575763,0.3563106191299101,146.1871208166195,2.7792228292132988,0.18979429198524803,0.23360402381520715,0.18646162858418805,177.3028791833805
+52.7,2.92259777066074,0.35625993923422244,146.4442106216195,2.7788275260269355,0.18978024160363363,0.2335867302198786,0.18645369574598974,177.6607893783805
+52.8,2.9225961986788365,0.35620928138156466,146.7012304441836,2.7784323947762046,0.18976619122201926,0.23356943662455007,0.18644576290779144,178.0187695558164
+52.9,2.9225946266300475,0.35615864548848636,146.95818030145924,2.7780374348101935,0.18975214084040484,0.23355214302922148,0.1864378300695931,178.37681969854077
+53.0,2.922593054514367,0.35610803147200937,147.2150602105287,2.777642645481673,0.18973809045879045,0.23353484943389294,0.18642989723139483,178.73493978947135
+53.1,2.9225914823317893,0.3560574392496254,147.47187018840987,2.7772480261470784,0.18972404007717605,0.2335175558385644,0.18642196439319653,179.09312981159016
+53.2,2.9225899100823094,0.3560068687392917,147.7286102520565,2.776853576166476,0.1897099896955617,0.23350026224323586,0.18641403155499822,179.45138974794352
+53.3,2.922588337765921,0.3559563198594276,147.98528041835843,2.7764592949035354,0.1896959393139473,0.23348296864790732,0.18640609871679992,179.8097195816416
+53.4,2.9225867653826185,0.3559057925289111,148.24188070414206,2.7760651817255066,0.1896818889323329,0.23346567505257879,0.1863981658786016,180.16811929585796
+53.5,2.9225851929323965,0.3558552866670757,148.4984111261707,2.7756712360031908,0.18966783855071853,0.23344838145725025,0.1863902330404033,180.52658887382933
+53.6,2.9225836204152484,0.35580480219370675,148.75487170114494,2.7752774571109127,0.18965378816910414,0.2334310878619217,0.186382300202205,180.8851282988551
+53.7,2.9225820478311695,0.35575433902903814,149.01126244570293,2.7748838444264976,0.18963973778748974,0.23341379426659314,0.1863743673640067,181.2437375542971
+53.8,2.922580475180153,0.35570389709374883,149.26758337642076,2.774490397331241,0.18962568740587535,0.2333965006712646,0.1863664345258084,181.60241662357924
+53.9,2.9225789024621953,0.3556534763089601,149.523834509813,2.774097115209889,0.18961163702426098,0.23337920707593607,0.1863585016876101,181.961165490187
+54.0,2.9225773296772886,0.3556030765962313,149.78001586233262,2.773703997450604,0.1895975866426466,0.23336191348060753,0.18635056884941179,182.3199841376674
+54.1,2.9225757568254274,0.3555526978775574,150.03612745037168,2.7733110434449477,0.1895835362610322,0.233344619885279,0.18634263601121348,182.67887254962835
+54.2,2.9225741839066064,0.35550234007536546,150.2921692902615,2.772918252587851,0.18956948587941783,0.23332732628995045,0.18633470317301518,183.0378307097385
+54.3,2.922572610920821,0.35545200311251207,150.54814139827334,2.772525624277594,0.18955543549780343,0.23331003269462192,0.18632677033481687,183.39685860172665
+54.4,2.9225710378680643,0.35540168691227847,150.804043790618,2.772133157915772,0.18954138511618904,0.23329273909929338,0.18631883749661857,183.75595620938202
+54.5,2.9225694647483302,0.3553513913983697,151.05987648344697,2.771740852907284,0.18952733473457464,0.23327544550396484,0.18631090465842026,184.11512351655304
+54.6,2.922567891561614,0.35530111649490975,151.3156394928522,2.7713487086602964,0.18951328435296022,0.23325815190863625,0.18630297182022196,184.47436050714785
+54.7,2.922566318307909,0.35525086212643936,151.57133283486664,2.7709567245862274,0.18949923397134585,0.2332408583133077,0.18629503898202365,184.8336671651334
+54.8,2.922564744987211,0.355200628217913,151.8269565254647,2.7705649000997212,0.18948518358973146,0.23322356471797917,0.18628710614382535,185.19304347453527
+54.9,2.922563171599513,0.35515041469469477,152.0825105805622,2.7701732346186194,0.18947113320811707,0.23320627112265063,0.18627917330562704,185.55248941943782
+55.0,2.92256159814481,0.35510022148255715,152.33799501601703,2.769781727563946,0.1894570828265027,0.23318897752732207,0.18627124046742874,185.912004983983
+55.1,2.9225600246230954,0.3550500485076765,152.59340984762923,2.7693903783598772,0.1894430324448883,0.23317168393199353,0.18626330762923043,186.27159015237078
+55.2,2.9225584510343645,0.35499989569663126,152.84875509114158,2.768999186433724,0.1894289820632739,0.233154390336665,0.18625537479103213,186.63124490885846
+55.3,2.922556877378611,0.35494976297639813,153.10403076223957,2.7686081512159055,0.18941493168165954,0.23313709674133645,0.18624744195283383,186.99096923776042
+55.4,2.9225553036558294,0.3548996502743498,153.35923687655202,2.7682172721399283,0.18940088130004515,0.23311980314600791,0.18623950911463552,187.350763123448
+55.5,2.9225537298660136,0.35484955751825165,153.61437344965114,2.767826548642363,0.18938683091843075,0.23310250955067938,0.18623157627643722,187.71062655034888
+55.6,2.922552156009158,0.35479948463625954,153.86944049705306,2.7674359801628245,0.18937278053681636,0.23308521595535084,0.1862236434382389,188.070559502947
+55.7,2.9225505820852584,0.35474943155691646,154.12443803421795,2.7670455661439486,0.189358730155202,0.2330679223600223,0.1862157106000406,188.4305619657821
+55.8,2.9225490080943066,0.3546993982091497,154.37936607655033,2.766655306031368,0.1893446797735876,0.23305062876469376,0.1862077777618423,188.7906339234497
+55.9,2.9225474340362982,0.3546493845222687,154.6342246393996,2.766265199273696,0.1893306293919732,0.2330333351693652,0.186199844923644,189.15077536060042
+56.0,2.922545859911228,0.3545993904259616,154.88901373806004,2.765875245322501,0.18931657901035884,0.23301604157403666,0.1861919120854457,189.51098626193996
+56.1,2.922544285719089,0.3545494158502931,155.14373338777128,2.7654854436322864,0.18930252862874444,0.23299874797870812,0.1861839792472474,189.87126661222877
+56.2,2.9225427114598768,0.3544994607257015,155.39838360371851,2.7650957936604716,0.18928847824713005,0.23298145438337958,0.18617604640904908,190.2316163962815
+56.3,2.9225411371335848,0.35444952498299587,155.65296440103282,2.764706294867368,0.18927442786551563,0.232964160788051,0.18616811357085078,190.5920355989672
+56.4,2.9225395627402073,0.35439960855335406,155.90747579479154,2.764316946716162,0.18926037748390123,0.23294686719272245,0.18616018073265247,190.95252420520848
+56.5,2.9225379882797387,0.35434971136831916,156.16191780001827,2.7639277486728897,0.18924632710228687,0.2329295735973939,0.18615224789445417,191.31308219998175
+56.6,2.922536413752174,0.354299833359798,156.41629043168362,2.7635387002064244,0.18923227672067247,0.23291228000206537,0.18614431505625587,191.6737095683164
+56.7,2.9225348391575063,0.35424997446005746,156.67059370470503,2.7631498007884483,0.18921822633905808,0.23289498640673684,0.18613638221805756,192.034406295295
+56.8,2.9225332644957303,0.3542001346017228,156.92482763394725,2.7627610498934376,0.1892041759574437,0.2328776928114083,0.18612844937985926,192.39517236605275
+56.9,2.9225316897668407,0.35415031371777456,157.17899223422273,2.762372446998642,0.18919012557582932,0.23286039921607976,0.18612051654166095,192.75600776577727
+57.0,2.9225301149708316,0.35410051174154694,157.43308752029176,2.7619839915840663,0.18917607519421492,0.23284310562075122,0.18611258370346265,193.11691247970825
+57.1,2.9225285401076966,0.35405072860672376,157.68711350686263,2.7615956831324455,0.18916202481260055,0.23282581202542268,0.18610465086526434,193.4778864931374
+57.2,2.922526965177431,0.35400096424733773,157.94107020859224,2.7612075211292346,0.18914797443098616,0.23280851843009412,0.18609671802706604,193.83892979140782
+57.3,2.922525390180029,0.353951218597767,158.19495764008596,2.7608195050625826,0.18913392404937177,0.23279122483476558,0.18608878518886773,194.20004235991402
+57.4,2.9225238151154844,0.3539014915927327,158.4487758158983,2.7604316344233153,0.18911987366775737,0.23277393123943704,0.18608085235066943,194.56122418410172
+57.5,2.922522239983791,0.3538517831672972,158.7025247505328,2.7600439087049184,0.189105823286143,0.2327566376441085,0.18607291951247112,194.9224752494672
+57.6,2.922520664784944,0.35380209325686124,158.9562044584426,2.7596563274035177,0.1890917729045286,0.23273934404877997,0.18606498667427282,195.2837955415574
+57.7,2.9225190895189366,0.3537524217971617,159.2098149540306,2.7592688900178612,0.18907772252291422,0.23272205045345143,0.18605705383607452,195.64518504596944
+57.8,2.922517514185765,0.35370276872426953,159.46335625164969,2.7588815960493025,0.18906367214129985,0.2327047568581229,0.1860491209978762,196.0066437483503
+57.9,2.9225159387854216,0.35365313397458664,159.71682836560282,2.758494445001776,0.18904962175968545,0.23268746326279435,0.1860411881596779,196.36817163439719
+58.0,2.9225143633179016,0.35360351748484486,159.97023131014382,2.75810743638179,0.18903557137807103,0.23267016966746576,0.1860332553214796,196.7297686898562
+58.1,2.9225127877831985,0.3535539191921025,160.223565099477,2.7577205696983995,0.18902152099645664,0.23265287607213722,0.1860253224832813,197.091434900523
+58.2,2.922511212181308,0.3535043390337428,160.4768297477579,2.757333844463194,0.18900747061484224,0.23263558247680868,0.186017389645083,197.45317025224213
+58.3,2.9225096365122227,0.35345477694747135,160.73002526909312,2.7569472601902767,0.18899342023322788,0.23261828888148015,0.1860094568068847,197.81497473090687
+58.4,2.9225080607759377,0.3534052328713141,160.983151677541,2.75656081639625,0.18897936985161348,0.2326009952861516,0.18600152396868638,198.17684832245902
+58.5,2.9225064849724474,0.3533557067436151,161.23620898711158,2.756174512600198,0.1889653194699991,0.23258370169082304,0.18599359113048808,198.53879101288845
+58.6,2.922504909101746,0.35330619850303446,161.489197211767,2.755788348323669,0.18895126908838472,0.2325664080954945,0.18598565829228977,198.90080278823302
+58.7,2.922503333163827,0.35325670808854553,161.74211636542148,2.7554023230906552,0.18893721870677033,0.23254911450016597,0.18597772545409147,199.26288363457857
+58.8,2.922501757158686,0.35320723543943394,161.994966461942,2.755016436427585,0.18892316832515593,0.23253182090483743,0.18596979261589316,199.625033538058
+58.9,2.922500181086316,0.3531577804952944,162.24774751514815,2.7546306878632962,0.18890911794354157,0.2325145273095089,0.18596185977769486,199.98725248485187
+59.0,2.9224986049467123,0.35310834319602913,162.5004595388126,2.754245076929027,0.18889506756192717,0.23249723371418035,0.18595392693949656,200.34954046118742
+59.1,2.922497028739868,0.35305892348184553,162.75310254666118,2.7538596031583955,0.18888101718031278,0.2324799401188518,0.18594599410129825,200.71189745333885
+59.2,2.9224954524657787,0.3530095212932547,163.0056765523733,2.7534742660873865,0.18886696679869838,0.23246264652352328,0.18593806126309995,201.07432344762674
+59.3,2.922493876124438,0.35296013657106834,163.25818156958195,2.753089065254333,0.18885291641708402,0.23244535292819474,0.18593012842490164,201.43681843041804
+59.4,2.92249229971584,0.3529107692563978,163.5106176118742,2.752704000199903,0.18883886603546962,0.2324280593328662,0.18592219558670334,201.7993823881258
+59.5,2.922490723239979,0.3528614192906513,163.7629846927913,2.7523190704670806,0.18882481565385523,0.23241076573753763,0.18591426274850503,202.16201530720872
+59.6,2.9224891466968494,0.35281208661553254,164.0152828258288,2.7519342756011542,0.18881076527224086,0.2323934721422091,0.18590632991030673,202.52471717417123
+59.7,2.9224875700864454,0.3527627711730381,164.26751202443697,2.7515496151496976,0.18879671489062644,0.23237617854688053,0.18589839707210842,202.8874879755631
+59.8,2.9224859934087615,0.35271347290545596,164.51967230202087,2.7511650886625563,0.18878266450901204,0.23235888495155196,0.18589046423391012,203.25032769797915
+59.9,2.922484416663792,0.3526641917553633,164.77176367194087,2.750780695691834,0.18876861412739765,0.23234159135622343,0.18588253139571181,203.61323632805914
+60.0,2.9224828398515306,0.3526149276656245,165.0237861475123,2.7503964357918718,0.18875456374578325,0.2323242977608949,0.1858745985575135,203.97621385248772
+60.1,2.9224812629719716,0.35256568057938986,165.2757397420064,2.750012308519241,0.1887405133641689,0.23230700416556635,0.1858666657193152,204.33926025799363
+60.2,2.92247968602511,0.3525164504400929,165.52762446865003,2.7496283134327246,0.1887264629825545,0.2322897105702378,0.1858587328811169,204.70237553135001
+60.3,2.9224781090109393,0.35246723719144846,165.77944034062588,2.749244450093298,0.1887124126009401,0.23227241697490927,0.1858508000429186,205.06555965937412
+60.4,2.9224765319294543,0.35241804077745187,166.03118737107312,2.7488607180641247,0.18869836221932573,0.23225512337958074,0.1858428672047203,205.4288126289269
+60.5,2.922474954780649,0.3523688611423759,166.2828655730872,2.748477116910532,0.18868431183771134,0.2322378297842522,0.185834934366522,205.7921344269128
+60.6,2.9224733775645175,0.3523196982307696,166.53447495972017,2.7480936462000027,0.18867026145609694,0.23222053618892366,0.18582700152832368,206.15552504027985
+60.7,2.922471800281054,0.35227055198745616,166.78601554398102,2.7477103055021583,0.18865621107448258,0.23220324259359512,0.18581906869012538,206.518984456019
+60.8,2.922470222930253,0.3522214223575315,167.03748733883575,2.747327094388746,0.18864216069286818,0.23218594899826656,0.18581113585192707,206.88251266116424
+60.9,2.9224686455121085,0.35217230928636195,167.28889035720763,2.746944012433623,0.1886281103112538,0.23216865540293802,0.18580320301372877,207.24610964279236
+61.0,2.922467068026615,0.352123212719583,167.54022461197758,2.7465610592127474,0.1886140599296394,0.23215136180760948,0.18579527017553046,207.60977538802243
+61.1,2.9224654904737672,0.35207413260309706,167.791490115984,2.746178234304157,0.18860000954802503,0.23213406821228094,0.18578733733733216,207.97350988401604
+61.2,2.922463912853559,0.35202506888307195,168.04268688202325,2.7457955372879614,0.18858595916641063,0.2321167746169524,0.18577940449913385,208.3373131179768
+61.3,2.922462335165984,0.35197602150593943,168.2938149228499,2.745412967746328,0.18857190878479624,0.23209948102162387,0.18577147166093555,208.70118507715011
+61.4,2.9224607574110366,0.3519269904183928,168.5448742511767,2.745030525263464,0.18855785840318187,0.23208218742629533,0.18576353882273725,209.0651257488233
+61.5,2.9224591795887123,0.35187797556738604,168.7958648796751,2.7446482094256113,0.18854380802156745,0.23206489383096673,0.18575560598453894,209.42913512032493
+61.6,2.922457601699003,0.3518289769001312,169.04678682097506,2.7442660198210236,0.18852975763995306,0.2320476002356382,0.18574767314634064,209.79321317902497
+61.7,2.9224560237419057,0.3517799943640976,169.29764008766566,2.7438839560399617,0.18851570725833866,0.23203030664030966,0.18573974030814233,210.15735991233439
+61.8,2.922454445717413,0.3517310279070097,169.54842469229496,2.743502017674676,0.18850165687672427,0.23201301304498112,0.18573180746994403,210.52157530770504
+61.9,2.9224528676255197,0.35168207747684527,169.79914064737042,2.743120204319393,0.1884876064951099,0.23199571944965258,0.18572387463174572,210.88585935262958
+62.0,2.922451289466219,0.35163314302183407,170.04978796535897,2.742738515570306,0.1884735561134955,0.23197842585432404,0.18571594179354742,211.25021203464104
+62.1,2.9224497112395067,0.35158422449045656,170.30036665868735,2.742356951025561,0.1884595057318811,0.23196113225899548,0.1857080089553491,211.6146333413127
+62.2,2.922448132945376,0.3515353218314413,170.55087673974208,2.741975510285242,0.18844545535026674,0.23194383866366694,0.1857000761171508,211.97912326025798
+62.3,2.9224465545838214,0.35148643499376425,170.8013182208698,2.741594192951361,0.18843140496865235,0.2319265450683384,0.1856921432789525,212.3436817791302
+62.4,2.922444976154837,0.35143756392664693,171.0516911143776,2.741212998627846,0.18841735458703796,0.23190925147300986,0.1856842104407542,212.70830888562242
+62.5,2.9224433976584177,0.3513887085795546,171.3019954325329,2.740831926920526,0.1884033042054236,0.23189195787768133,0.1856762776025559,213.07300456746714
+62.6,2.9224418190945567,0.35133986890219504,171.55223118756382,2.7404509774371215,0.1883892538238092,0.2318746642823528,0.1856683447643576,213.43776881243622
+62.7,2.922440240463249,0.35129104484451673,171.80239839165938,2.740070149787231,0.1883752034421948,0.23185737068702425,0.18566041192615929,213.80260160834067
+62.8,2.922438661764488,0.3512422363567075,172.0524970569696,2.7396894435823187,0.1883611530605804,0.2318400770916957,0.18565247908796098,214.1675029430304
+62.9,2.922437082998269,0.35119344338919306,172.3025271956059,2.739308858435706,0.18834710267896604,0.23182278349636717,0.18564454624976268,214.5324728043941
+63.0,2.9224355041645866,0.35114466589263515,172.5524888196409,2.738928393962554,0.18833305229735164,0.2318054899010386,0.18563661341156437,214.89751118035912
+63.1,2.9224339252634337,0.3510959038179303,172.80238194110893,2.7385480497798564,0.18831900191573725,0.23178819630571007,0.18562868057336607,215.2626180588911
+63.2,2.922432346294804,0.3510471571162083,173.05220657200607,2.7381678255064252,0.18830495153412283,0.2317709027103815,0.18562074773516776,215.62779342799396
+63.3,2.922430767258694,0.3509984257388312,173.30196272429052,2.7377877207628836,0.18829090115250846,0.23175360911505297,0.18561281489696946,215.99303727570947
+63.4,2.922429188155096,0.35094970963739053,173.55165040988237,2.7374077351716464,0.18827685077089407,0.2317363155197244,0.18560488205877115,216.35834959011763
+63.5,2.9224276089840058,0.3509010087637075,173.80126964066434,2.7370278683569187,0.18826280038927967,0.23171902192439586,0.18559694922057285,216.7237303593357
+63.6,2.9224260297454165,0.35085232306983016,174.05082042848136,2.7366481199446753,0.18824875000766528,0.23170172832906732,0.18558901638237454,217.08917957151868
+63.7,2.922424450439322,0.35080365250803286,174.30030278514124,2.7362684895626566,0.1882346996260509,0.2316844347337388,0.18558108354417624,217.4546972148588
+63.8,2.9224228710657174,0.35075499703081453,174.54971672241456,2.7358889768403536,0.18822064924443652,0.23166714113841025,0.18557315070597794,217.82028327758545
+63.9,2.922421291624597,0.3507063565908972,174.79906225203501,2.7355095814089987,0.18820659886282212,0.2316498475430817,0.18556521786777963,218.185937747965
+64.0,2.9224197121159543,0.35065773114122484,175.04833938569945,2.735130302901554,0.18819254848120776,0.23163255394775317,0.18555728502958133,218.55166061430057
+64.1,2.922418132539784,0.3506091206349615,175.29754813506807,2.7347511409527003,0.18817849809959336,0.23161526035242463,0.18554935219138302,218.9174518649319
+64.2,2.9224165528960806,0.3505605250254907,175.54668851176473,2.7343720951988275,0.18816444771797897,0.2315979667570961,0.18554141935318472,219.2833114882353
+64.3,2.9224149731848375,0.3505119442664132,175.79576052737687,2.733993165278023,0.1881503973363646,0.23158067316176753,0.1855334865149864,219.64923947262312
+64.4,2.9224133934060497,0.3504633783115463,176.04476419345596,2.733614350830061,0.1881363469547502,0.231563379566439,0.1855255536767881,220.0152358065441
+64.5,2.922411813559711,0.3504148271149223,176.2936995215174,2.733235651496394,0.1881222965731358,0.23154608597111045,0.1855176208385898,220.38130047848261
+64.6,2.9224102336458158,0.35036629063078684,176.54256652304088,2.7328570669201375,0.18810824619152142,0.23152879237578192,0.1855096880003915,220.74743347695912
+64.7,2.922408653664358,0.3503177688135983,176.7913652094705,2.7324785967460667,0.18809419580990705,0.23151149878045338,0.1855017551621932,221.11363479052952
+64.8,2.922407073615332,0.35026926161802563,177.0400955922149,2.7321002406206003,0.18808014542829266,0.23149420518512484,0.1854938223239949,221.4799044077851
+64.9,2.9224054934987325,0.35022076899894805,177.2887576826475,2.731721998191795,0.18806609504667826,0.2314769115897963,0.18548588948579658,221.84624231735256
+65.0,2.922403913314553,0.3501722909114524,177.5373514921064,2.7313438691093292,0.18805204466506384,0.2314596179944677,0.18547795664759828,222.21264850789362
+65.1,2.922402333062788,0.3501238273108334,177.785877031895,2.730965853024501,0.18803799428344947,0.23144232439913917,0.18547002380939998,222.57912296810497
+65.2,2.922400752743432,0.3500753781525914,178.03433431328187,2.7305879495902126,0.18802394390183508,0.23142503080381063,0.18546209097120167,222.94566568671817
+65.3,2.922399172356479,0.3500269433924308,178.2827233475007,2.7302101584609604,0.18800989352022068,0.2314077372084821,0.18545415813300337,223.3122766524993
+65.4,2.922397591901923,0.34997852298626014,178.53104414575105,2.7298324792928295,0.18799584313860632,0.23139044361315356,0.18544622529480506,223.67895585424898
+65.5,2.9223960113797585,0.3499301168901896,178.77929671919787,2.729454911743479,0.18798179275699192,0.23137315001782502,0.18543829245660676,224.04570328080214
+65.6,2.9223944307899794,0.34988172506053034,179.0274810789722,2.729077455472137,0.18796774237537753,0.23135585642249645,0.18543035961840845,224.4125189210278
+65.7,2.9223928501325807,0.34983334745379324,179.2755972361709,2.7287001101395876,0.18795369199376313,0.23133856282716792,0.18542242678021015,224.77940276382913
+65.8,2.922391269407556,0.3497849840266874,179.52364520185705,2.728322875408162,0.18793964161214877,0.23132126923183938,0.18541449394201184,225.14635479814297
+65.9,2.9223896886148992,0.3497366347361193,179.7716249870601,2.727945750941731,0.18792559123053437,0.23130397563651084,0.18540656110381354,225.51337501293997
+66.0,2.922388107754605,0.34968829953919145,180.01953660277576,2.7275687364056935,0.18791154084891998,0.2312866820411823,0.18539862826561523,225.88046339722425
+66.1,2.9223865268266676,0.34963997839320116,180.26738005996665,2.7271918314669694,0.1878974904673056,0.23126938844585376,0.18539069542741693,226.24761994003333
+66.2,2.9223849458310807,0.3495916712556393,180.5151553695619,2.7268150357939867,0.18788344008569122,0.23125209485052522,0.18538276258921862,226.6148446304381
+66.3,2.922383364767839,0.34954337808418934,180.76286254245767,2.726438349056677,0.18786938970407682,0.2312348012551967,0.18537482975102032,226.98213745754234
+66.4,2.9223817836369372,0.3494950988367262,181.01050158951725,2.7260617709264645,0.18785533932246243,0.23121750765986815,0.18536689691282202,227.3494984104828
+66.5,2.9223802024383683,0.3494468334713147,181.25807252157097,2.725685301076255,0.18784128894084806,0.23120021406453958,0.1853589640746237,227.71692747842906
+66.6,2.922378621172127,0.3493985819462089,181.5055753494166,2.7253089391804295,0.18782723855923367,0.23118292046921105,0.18535103123642543,228.0844246505834
+66.7,2.9223770398382083,0.34935034421985073,181.75301008381956,2.724932684914836,0.18781318817761924,0.23116562687388248,0.1853430983982271,228.45198991618048
+66.8,2.9223754584366053,0.3493021202508687,182.00037673551265,2.724556537956776,0.18779913779600485,0.23114833327855394,0.1853351655600288,228.81962326448738
+66.9,2.922373876967313,0.3492539099980774,182.24767531519677,2.724180497985004,0.18778508741439048,0.23113103968322538,0.1853272327218305,229.1873246848033
+67.0,2.922372295430325,0.34920571342047557,182.49490583354054,2.7238045646797096,0.1877710370327761,0.23111374608789684,0.1853192998836322,229.5550941664595
+67.1,2.9223707138256354,0.34915753047724546,182.74206830118072,2.723428737722515,0.1877569866511617,0.2310964524925683,0.18531136704543388,229.92293169881927
+67.2,2.9223691321532392,0.34910936112775187,182.98916272872245,2.723053016796465,0.18774293626954733,0.23107915889723976,0.18530343420723558,230.2908372712776
+67.3,2.92236755041313,0.3490612053315408,183.23618912673902,2.7226774015860182,0.18772888588793293,0.23106186530191122,0.18529550136903727,230.658810873261
+67.4,2.9223659686053027,0.34901306304833823,183.4831475057724,2.7223018917770383,0.18771483550631854,0.23104457170658269,0.18528756853083897,231.02685249422765
+67.5,2.9223643867297504,0.3489649342380495,183.73003787633309,2.7219264870567863,0.18770078512470414,0.23102727811125415,0.18527963569264067,231.39496212366694
+67.6,2.9223628047864683,0.348916818860758,183.97686024890046,2.7215511871139126,0.18768673474308978,0.2310099845159256,0.18527170285444236,231.76313975109952
+67.7,2.9223612227754496,0.34886871687672394,184.22361463392284,2.7211759916384466,0.18767268436147538,0.23099269092059707,0.18526377001624406,232.1313853660772
+67.8,2.9223596406966896,0.34882062824638377,184.4703010418176,2.7208009003217937,0.187658633979861,0.2309753973252685,0.18525583717804575,232.4996989581824
+67.9,2.9223580585501816,0.3487725529303486,184.71691948297124,2.720425912856719,0.18764458359824662,0.23095810372993997,0.18524790433984745,232.8680805170288
+68.0,2.9223564763359207,0.3487244908894037,184.96346996773974,2.720051028937349,0.18763053321663223,0.23094081013461143,0.18523997150164914,233.23653003226028
+68.1,2.9223548940539,0.348676442084507,185.20995250644842,2.7196762482591548,0.18761648283501783,0.2309235165392829,0.18523203866345084,233.60504749355155
+68.2,2.9223533117041143,0.3486284064767883,185.45636710939232,2.7193015705189487,0.18760243245340344,0.23090622294395435,0.18522410582525256,233.97363289060772
+68.3,2.922351729286558,0.3485803840275485,185.70271378683617,2.7189269954148783,0.18758838207178907,0.23088892934862582,0.18521617298705426,234.34228621316382
+68.4,2.922350146801225,0.348532374698258,185.94899254901463,2.7185525226464127,0.18757433169017465,0.23087163575329722,0.18520824014885592,234.71100745098542
+68.5,2.9223485642481095,0.3484843784505563,186.19520340613224,2.7181781519143393,0.18756028130856026,0.23085434215796868,0.18520030731065762,235.07979659386777
+68.6,2.9223469816272063,0.3484363952462509,186.44134636836395,2.7178038829207574,0.18754623092694586,0.23083704856264015,0.18519237447245931,235.44865363163606
+68.7,2.9223453989385084,0.34838842504731576,186.68742144585465,2.717429715369063,0.1875321805453315,0.2308197549673116,0.185184441634261,235.8175785541454
+68.8,2.9223438161820106,0.3483404678158912,186.93342864871983,2.7170556489639512,0.1875181301637171,0.23080246137198307,0.1851765087960627,236.18657135128018
+68.9,2.922342233357707,0.3482925235142822,187.17936798704557,2.716681683411401,0.1875040797821027,0.23078516777665453,0.1851685759578644,236.5556320129545
+69.0,2.9223406504655927,0.34824459210495795,187.42523947088839,2.7163078184186724,0.18749002940048834,0.230767874181326,0.1851606431196661,236.92476052911164
+69.1,2.9223390675056606,0.34819667355055073,187.67104311027583,2.715934053694296,0.18747597901887395,0.23075058058599743,0.1851527102814678,237.29395688972414
+69.2,2.9223374844779046,0.3481487678138545,187.91677891520612,2.7155603889480653,0.18746192863725955,0.2307332869906689,0.1851447774432695,237.66322108479392
+69.3,2.9223359013823207,0.34810087485782504,188.16244689564874,2.7151868238910355,0.18744787825564516,0.23071599339534035,0.18513684460507118,238.03255310435125
+69.4,2.922334318218902,0.34805299464557804,188.40804706154432,2.7148133582355087,0.1874338278740308,0.2306986998000118,0.18512891176687288,238.40195293845574
+69.5,2.9223327349876422,0.3480051271403883,188.6535794228045,2.714439991695029,0.1874197774924164,0.23068140620468328,0.18512097892867457,238.77142057719553
+69.6,2.922331151688536,0.34795727230568935,188.89904398931264,2.714066723984377,0.187405727110802,0.23066411260935474,0.18511304609047627,239.14095601068735
+69.7,2.922329568321578,0.34790943010507236,189.14444077092367,2.7136935548195646,0.18739167672918763,0.2306468190140262,0.18510511325227796,239.5105592290764
+69.8,2.9223279848867625,0.34786160050228465,189.38976977746387,2.7133204839178204,0.18737762634757324,0.23062952541869766,0.18509718041407966,239.88023022253614
+69.9,2.922326401384083,0.3478137834612295,189.63503101873158,2.7129475109975902,0.18736357596595885,0.23061223182336912,0.18508924757588138,240.2499689812685
+70.0,2.922324817813533,0.3477659789459649,189.88022450449685,2.7125746357785263,0.18734952558434445,0.23059493822804059,0.18508131473768308,240.61977549550318
+70.1,2.922323234175108,0.3477181869207028,190.12535024450187,2.712201857981482,0.18733547520273008,0.23057764463271202,0.18507338189948477,240.9896497554981
+70.2,2.9223216504688017,0.34767040734980836,190.3704082484611,2.7118291773285055,0.18732142482111566,0.23056035103738345,0.18506544906128644,241.35959175153894
+70.3,2.9223200666946085,0.34762264019779865,190.61539852606091,2.7114565935428296,0.18730737443950127,0.23054305744205492,0.18505751622308814,241.72960147393908
+70.4,2.922318482852522,0.3475748854293422,190.8603210869604,2.711084106348869,0.18729332405788687,0.23052576384672635,0.18504958338488983,242.09967891303967
+70.5,2.9223168989425377,0.34752714300925797,191.10517594079099,2.7107117154722125,0.1872792736762725,0.2305084702513978,0.18504165054669153,242.46982405920906
+70.6,2.9223153149646475,0.34747941290251433,191.34996309715658,2.710339420639612,0.1872652232946581,0.23049117665606927,0.18503371770849322,242.8400369028434
+70.7,2.922313730918848,0.34743169507422883,191.59468256563426,2.709967221578985,0.18725117291304372,0.23047388306074074,0.18502578487029492,243.21031743436578
+70.8,2.9223121468051314,0.34738398948966653,191.83933435577345,2.709595118019399,0.18723712253142935,0.2304565894654122,0.1850178520320966,243.58066564422657
+70.9,2.9223105626234935,0.3473362961142398,192.0839184770969,2.70922310969107,0.18722307214981496,0.23043929587008366,0.1850099191938983,243.95108152290317
+71.0,2.922308978373928,0.34728861491350704,192.32843493910022,2.708851196325355,0.18720902176820056,0.23042200227475512,0.1850019863557,244.32156506089981
+71.1,2.9223073940564284,0.3472409458531723,192.57288375125228,2.708479377654744,0.18719497138658617,0.23040470867942658,0.1849940535175017,244.6921162487477
+71.2,2.9223058096709886,0.34719328889908396,192.8172649229953,2.708107653412855,0.1871809210049718,0.23038741508409805,0.1849861206793034,245.06273507700476
+71.3,2.9223042252176046,0.34714564401723463,193.0615784637449,2.7077360233344305,0.1871668706233574,0.2303701214887695,0.1849781878411051,245.4334215362551
+71.4,2.9223026406962687,0.3470980111737594,193.3058243828901,2.7073644871553233,0.187152820241743,0.23035282789344094,0.18497025500290679,245.80417561710996
+71.5,2.922301056106976,0.34705039033493584,193.55000268979373,2.7069930446124997,0.18713876986012865,0.2303355342981124,0.1849623221647085,246.1749973102063
+71.6,2.922299471449721,0.34700278146718294,193.79411339379234,2.7066216954440274,0.18712471947851425,0.23031824070278387,0.1849543893265102,246.54588660620763
+71.7,2.9222978867244964,0.3469551845370601,194.03815650419625,2.706250439389069,0.18711066909689986,0.23030094710745533,0.1849464564883119,246.9168434958038
+71.8,2.922296301931298,0.3469075995112668,194.28213203028983,2.705879276187881,0.18709661871528546,0.2302836535121268,0.1849385236501136,247.28786796971016
+71.9,2.9222947170701192,0.34686002635664115,194.52603998133154,2.7055082055818014,0.18708256833367104,0.2302663599167982,0.18493059081191526,247.65896001866852
+72.0,2.922293132140954,0.34681246504016,194.76988036655385,2.705137227313248,0.18706851795205667,0.23024906632146966,0.18492265797371696,248.0301196334462
+72.1,2.9222915471437974,0.3467649155289374,195.0136531951638,2.704766341125712,0.18705446757044228,0.23023177272614112,0.18491472513551865,248.40134680483618
+72.2,2.9222899620786427,0.3467173777902242,195.25735847634266,2.704395546763749,0.18704041718882788,0.23021447913081258,0.18490679229732035,248.77264152365737
+72.3,2.9222883769454837,0.34666985179140714,195.50099621924616,2.704024843972976,0.18702636680721352,0.23019718553548404,0.18489885945912204,249.14400378075385
+72.4,2.9222867917443156,0.34662233750000854,195.74456643300482,2.7036542325000665,0.18701231642559912,0.2301798919401555,0.18489092662092374,249.51543356699523
+72.5,2.9222852064751326,0.34657483488368473,195.98806912672373,2.703283712092741,0.18699826604398473,0.23016259834482697,0.18488299378272544,249.8869308732763
+72.6,2.9222836211379284,0.3465273439102262,196.2315043094829,2.7029132824997646,0.18698421566237036,0.23014530474949843,0.18487506094452713,250.2584956905171
+72.7,2.9222820357326973,0.3464798645475561,196.47487199033716,2.7025429434709376,0.18697016528075597,0.23012801115416986,0.18486712810632883,250.63012800966288
+72.8,2.922280450259433,0.3464323967637299,196.71817217831642,2.7021726947570937,0.18695611489914157,0.23011071755884133,0.18485919526813052,251.0018278216836
+72.9,2.9222788647181295,0.3463849405269349,196.96140488242577,2.7018025361100926,0.18694206451752718,0.2300934239635128,0.18485126242993222,251.3735951175743
+73.0,2.9222772791087825,0.3463374958054891,197.2045701116455,2.701432467282815,0.1869280141359128,0.23007613036818425,0.1848433295917339,251.74542988835452
+73.1,2.9222756934313847,0.3462900625678403,197.44766787493117,2.7010624880291543,0.18691396375429842,0.2300588367728557,0.18483539675353564,252.11733212506883
+73.2,2.922274107685931,0.34624264078256617,197.690698181214,2.700692598104016,0.18689991337268402,0.23004154317752717,0.18482746391533733,252.48930181878606
+73.3,2.922272521872415,0.34619523041837263,197.93366103940036,2.7003227972633064,0.18688586299106966,0.23002424958219864,0.18481953107713903,252.86133896059965
+73.4,2.922270935990831,0.34614783144409383,198.17655645837263,2.699953085263932,0.18687181260945526,0.2300069559868701,0.18481159823894072,253.23344354162742
+73.5,2.922269350041174,0.34610044382869143,198.41938444698883,2.6995834618637935,0.18685776222784087,0.22998966239154156,0.18480366540074242,253.6056155530112
+73.6,2.9222677640234367,0.34605306754125315,198.6621450140826,2.6992139268217747,0.18684371184622647,0.229972368796213,0.1847957325625441,253.9778549859174
+73.7,2.922266177937614,0.34600570255099306,198.9048381684639,2.6988444798977462,0.18682966146461205,0.22995507520088443,0.18478779972434578,254.35016183153613
+73.8,2.922264591783701,0.34595834882725035,199.14746391891842,2.698475120852553,0.18681561108299768,0.2299377816055559,0.18477986688614748,254.7225360810816
+73.9,2.92226300556169,0.3459110063394885,199.390022274208,2.6981058494480106,0.1868015607013833,0.22992048801022735,0.18477193404794917,255.09497772579206
+74.0,2.9222614192715763,0.3458636750572954,199.63251324307092,2.697736665446904,0.1867875103197689,0.2299031944148988,0.18476400120975087,255.4674867569291
+74.1,2.922259832913354,0.3458163549503815,199.8749368342215,2.697367568612976,0.18677345993815453,0.22988590081957025,0.18475606837155256,255.84006316577847
+74.2,2.922258246487016,0.34576904598858027,200.11729305635077,2.6969985587109266,0.18675940955654013,0.2298686072242417,0.18474813553335426,256.21270694364927
+74.3,2.922256659992559,0.34572174814184714,200.3595819181261,2.696629635506408,0.18674535917492574,0.22985131362891317,0.18474020269515595,256.5854180818739
+74.4,2.922255073429975,0.3456744613802582,200.6018034281915,2.6962607987660143,0.18673130879331137,0.22983402003358464,0.18473226985695765,256.95819657180857
+74.5,2.9222534867992582,0.34562718567401063,200.8439575951676,2.6958920482572832,0.18671725841169698,0.2298167264382561,0.18472433701875934,257.33104240483243
+74.6,2.922251900100404,0.34557992099342144,201.08604442765204,2.695523383748687,0.18670320803008258,0.22979943284292756,0.18471640418056104,257.7039555723479
+74.7,2.922250313333406,0.3455326673089266,201.32806393421922,2.695154805009628,0.1866891576484682,0.22978213924759902,0.18470847134236273,258.07693606578084
+74.8,2.922248726498258,0.3454854245910813,201.57001612342046,2.694786311810434,0.18667510726685382,0.22976484565227048,0.18470053850416446,258.44998387657955
+74.9,2.9222471395949547,0.34543819281055815,201.81190100378433,2.694417903922354,0.18666105688523943,0.22974755205694192,0.18469260566596615,258.8230989962157
+75.0,2.92224555262349,0.34539097193814755,202.05371858381633,2.694049581117551,0.18664700650362503,0.22973025846161338,0.18468467282776785,259.1962814161837
+75.1,2.9222439655838572,0.3453437619447565,202.2954688719995,2.6936813431691013,0.18663295612201067,0.22971296486628484,0.18467673998956954,259.5695311280005
+75.2,2.922242378476052,0.34529656280140825,202.53715187679404,2.6933131898509846,0.18661890574039627,0.2296956712709563,0.18466880715137124,259.942848123206
+75.3,2.9222407913000676,0.3452493744792414,202.77876760663767,2.6929451209380835,0.18660485535878188,0.22967837767562777,0.18466087431317293,260.3162323933623
+75.4,2.922239204055898,0.3452021969495096,203.0203160699456,2.692577136206175,0.18659080497716746,0.22966108408029917,0.1846529414749746,260.68968393005446
+75.5,2.922237616743538,0.3451550301835806,203.2617972751106,2.6922092354319287,0.18657675459555306,0.22964379048497063,0.1846450086367763,261.06320272488944
+75.6,2.922236029362981,0.3451078741529361,203.50321123050335,2.691841418392902,0.1865627042139387,0.2296264968896421,0.184637075798578,261.4367887694966
+75.7,2.922234441914222,0.3450607288291707,203.74455794447218,2.691473684867532,0.1865486538323243,0.22960920329431356,0.1846291429603797,261.81044205552786
+75.8,2.922232854397255,0.3450135941839917,203.98583742534325,2.691106034635135,0.1865346034507099,0.22959190969898502,0.18462121012218138,262.1841625746568
+75.9,2.922231266812073,0.344966470189218,204.22704968142085,2.6907384674759003,0.18652055306909554,0.22957461610365648,0.18461327728398308,262.55795031857923
+76.0,2.9222296791586713,0.34491935681678004,204.4681947209872,2.6903709831708844,0.18650650268748115,0.22955732250832794,0.18460534444578477,262.9318052790128
+76.1,2.9222280914370433,0.34487225403871885,204.70927255230274,2.6900035815020074,0.18649245230586675,0.2295400289129994,0.18459741160758647,263.3057274476972
+76.2,2.9222265036471837,0.34482516182718576,204.95028318360616,2.689636262252049,0.18647840192425238,0.22952273531767084,0.18458947876938817,263.6797168163939
+76.3,2.922224915789087,0.34477808015444167,205.19122662311443,2.6892690252046454,0.186464351542638,0.2295054417223423,0.18458154593118986,264.0537733768856
+76.4,2.9222233278627465,0.34473100899285625,205.43210287902292,2.688901870144279,0.1864503011610236,0.22948814812701376,0.18457361309299158,264.42789712097715
+76.5,2.9222217398681565,0.3446839483149076,205.67291195950537,2.6885347968562794,0.1864362507794092,0.22947085453168523,0.18456568025479328,264.80208804049465
+76.6,2.9222201518053117,0.3446368980931821,205.9136538727144,2.6881678051268203,0.18642220039779483,0.2294535609363567,0.18455774741659497,265.17634612728557
+76.7,2.922218563674205,0.3445898583003728,206.15432862678105,2.687800894742908,0.18640815001618044,0.22943626734102815,0.18454981457839667,265.550671373219
+76.8,2.9222169754748317,0.34454282890928,206.3949362298151,2.687434065492384,0.18639409963456605,0.2294189737456996,0.18454188174019837,265.9250637701849
+76.9,2.9222153872071854,0.34449580989280987,206.63547668990526,2.6870673171639172,0.18638004925295168,0.22940168015037107,0.18453394890200006,266.2995233100948
+77.0,2.922213798871261,0.34444880122397453,206.87595001511912,2.6867006495470016,0.18636599887133729,0.22938438655504254,0.18452601606380176,266.6740499848809
+77.1,2.922212210467051,0.3444018028758906,207.1163562135031,2.686334062431947,0.18635194848972286,0.22936709295971394,0.18451808322560342,267.0486437864969
+77.2,2.9222106219945516,0.3443548148217801,207.35669529308313,2.685967555609885,0.18633789810810847,0.2293497993643854,0.18451015038740512,267.4233047069169
+77.3,2.9222090334537554,0.34430783703496803,207.59696726186363,2.685601128872751,0.18632384772649407,0.22933250576905687,0.18450221754920682,267.7980327381364
+77.4,2.9222074448446564,0.34426086948888357,207.8371721278288,2.685234782013292,0.1863097973448797,0.22931521217372833,0.1844942847110085,268.17282787217124
+77.5,2.9222058561672504,0.3442139121570587,208.077309898942,2.684868514825058,0.1862957469632653,0.22929791857839976,0.1844863518728102,268.54769010105804
+77.6,2.92220426742153,0.34416696501312743,208.31738058314576,2.6845023271023942,0.18628169658165092,0.22928062498307122,0.1844784190346119,268.9226194168542
+77.7,2.9222026786074897,0.3441200280308261,208.55738418836248,2.6841362186404436,0.18626764620003655,0.22926333138774269,0.1844704861964136,269.29761581163757
+77.8,2.9222010897251236,0.3440731011839921,208.7973207224938,2.6837701892351387,0.18625359581842216,0.22924603779241415,0.1844625533582153,269.67267927750623
+77.9,2.9221995007744264,0.3440261844465637,209.03719019342108,2.683404238683197,0.18623954543680776,0.2292287441970856,0.184454620520017,270.047809806579
+78.0,2.922197911755391,0.3439792777925795,209.27699260900536,2.68303836678212,0.1862254950551934,0.22921145060175707,0.1844466876818187,270.42300739099466
+78.1,2.9221963226680128,0.34393238119617786,209.51672797708764,2.6826725733301875,0.186211444673579,0.22919415700642853,0.1844387548436204,270.7982720229124
+78.2,2.922194733512285,0.34388549463159634,209.75639630548852,2.6823068581264518,0.1861973942919646,0.2291768634111,0.1844308220054221,271.1736036945115
+78.3,2.9221931442882028,0.3438386180731716,209.99599760200883,2.6819412209707387,0.1861833439103502,0.22915956981577146,0.1844228891672238,271.54900239799116
+78.4,2.922191554995759,0.34379175149533797,210.2355318744291,2.6815756616636364,0.18616929352873585,0.22914227622044292,0.1844149563290255,271.92446812557097
+78.5,2.9221899656349484,0.34374489487262805,210.47499913051018,2.681210180006499,0.18615524314712145,0.22912498262511435,0.1844070234908272,272.30000086948985
+78.6,2.9221883762057654,0.34369804817967164,210.7143993779931,2.680844775801439,0.18614119276550706,0.22910768902978582,0.18439909065262888,272.67560062200687
+78.7,2.9221867867082034,0.3436512113911949,210.95373262459893,2.6804794488513206,0.1861271423838927,0.22909039543445728,0.18439115781443058,273.0512673754011
+78.8,2.922185197142257,0.34360438448202085,211.19299887802927,2.6801141989597626,0.18611309200227827,0.22907310183912868,0.18438322497623225,273.4270011219707
+78.9,2.92218360750792,0.3435575674270679,211.4321981459661,2.6797490259311294,0.18609904162066387,0.22905580824380015,0.18437529213803394,273.80280185403393
+79.0,2.922182017805187,0.3435107602013498,211.6713304360717,2.679383929570528,0.18608499123904948,0.2290385146484716,0.18436735929983564,274.1786695639283
+79.1,2.9221804280340518,0.3434639627799754,211.91039575598919,2.679018909683808,0.18607094085743509,0.22902122105314307,0.18435942646163733,274.5546042440108
+79.2,2.9221788381945086,0.34341717513814746,212.14939411334197,2.67865396607755,0.18605689047582072,0.22900392745781453,0.18435149362343903,274.93060588665804
+79.3,2.922177248286552,0.343370397251163,212.38832551573435,2.6782890985590715,0.18604284009420632,0.228986633862486,0.18434356078524072,275.30667448426567
+79.4,2.9221756583101746,0.3433236290944123,212.62718997075143,2.677924306936416,0.18602878971259193,0.22896934026715746,0.18433562794704242,275.6828100292486
+79.5,2.922174068265372,0.3432768706433783,212.86598748595893,2.677559591018351,0.18601473933097756,0.22895204667182892,0.18432769510884411,276.0590125140411
+79.6,2.922172478152137,0.34323012187363683,213.10471806890362,2.6771949506143673,0.18600068894936317,0.22893475307650038,0.1843197622706458,276.43528193109637
+79.7,2.9221708879704655,0.3431833827608556,213.3433817271135,2.676830385534674,0.18598663856774877,0.22891745948117184,0.18431182943244753,276.81161827288656
+79.8,2.922169297720351,0.3431366532807935,213.58197846809713,2.67646589559019,0.1859725881861344,0.22890016588584328,0.18430389659424923,277.18802153190285
+79.9,2.922167707401786,0.34308993340930094,213.82050829934457,2.6761014805925476,0.18595853780452,0.22888287229051474,0.18429596375605092,277.5644917006555
+80.0,2.9221661170147666,0.3430432231223187,214.05897122832693,2.6757371403540864,0.18594448742290562,0.2288655786951862,0.18428803091785262,277.94102877167313
+80.1,2.9221645265592855,0.34299652239587775,214.2973672624965,2.6753728746878465,0.18593043704129122,0.22884828509985766,0.18428009807965431,278.3176327375035
+80.2,2.922162936035338,0.3429498312060988,214.5356964092872,2.675008683407571,0.18591638665967686,0.22883099150452912,0.184272165241456,278.6943035907128
+80.3,2.9221613454429174,0.3429031495291919,214.77395867611406,2.674644566327697,0.18590233627806246,0.2288136979092006,0.1842642324032577,279.07104132388594
+80.4,2.9221597547820184,0.34285647734145586,215.0121540703738,2.6742805232633557,0.18588828589644807,0.22879640431387205,0.1842562995650594,279.4478459296262
+80.5,2.9221581640526346,0.3428098146192778,215.25028259944452,2.6739165540303667,0.18587423551483365,0.22877911071854345,0.18424836672686107,279.8247174005555
+80.6,2.92215657325476,0.34276316133913265,215.4883442706859,2.6735526584452347,0.18586018513321928,0.22876181712321492,0.18424043388866276,280.2016557293141
+80.7,2.922154982388389,0.34271651747758336,215.72633909143963,2.67318883632515,0.18584613475160489,0.22874452352788638,0.18423250105046446,280.57866090856044
+80.8,2.9221533914535156,0.3426698830112794,215.96426706902875,2.6728250874879795,0.1858320843699905,0.22872722993255784,0.18422456821226615,280.9557329309713
+80.9,2.9221518004501346,0.34262325791695725,216.2021282107584,2.6724614117522667,0.18581803398837612,0.2287099363372293,0.18421663537406785,281.33287178924166
+81.0,2.9221502093782386,0.34257664217143935,216.4399225239154,2.6720978089372274,0.18580398360676173,0.22869264274190076,0.18420870253586955,281.7100774760846
+81.1,2.922148618237823,0.34253003575163415,216.67765001576873,2.6717342788627465,0.18578993322514734,0.2286753491465722,0.18420076969767124,282.08734998423125
+81.2,2.922147027028882,0.34248343863453523,216.91531069356927,2.671370821349375,0.18577588284353294,0.22865805555124366,0.18419283685947294,282.4646893064308
+81.3,2.9221454357514083,0.3424368507972213,217.1529045645499,2.6710074362183263,0.18576183246191857,0.22864076195591512,0.18418490402127466,282.8420954354501
+81.4,2.9221438444053973,0.3423902722168554,217.39043163592586,2.6706441232914724,0.18574778208030418,0.22862346836058658,0.18417697118307635,283.2195683640742
+81.5,2.922142252990842,0.3423437028706849,217.62789191489443,2.6702808823913426,0.18573373169868979,0.22860617476525805,0.18416903834487805,283.5971080851056
+81.6,2.9221406615077377,0.3422971427360409,217.8652854086353,2.669917713341119,0.18571968131707542,0.2285888811699295,0.18416110550667975,283.9747145913647
+81.7,2.922139069956078,0.3422505917903374,218.10261212431044,2.669554615964632,0.18570563093546102,0.22857158757460097,0.18415317266848144,284.3523878756896
+81.8,2.9221374783358565,0.34220405001107174,218.33987206906423,2.66919159008636,0.18569158055384663,0.22855429397927243,0.18414523983028314,284.7301279309358
+81.9,2.922135886647068,0.3421575173758235,218.5770652500236,2.6688286355314235,0.18567753017223224,0.2285370003839439,0.18413730699208483,285.1079347499765
+82.0,2.9221342948897067,0.3421109938622544,218.81419167429792,2.6684657521255843,0.18566347979061787,0.22851970678861533,0.18412937415388653,285.4858083257021
+82.1,2.922132703063766,0.3420644794481077,219.05125134897918,2.66810293969524,0.18564942940900347,0.2285024131932868,0.18412144131568822,285.8637486510208
+82.2,2.92213111116924,0.342017974111208,219.28824428114214,2.6677401980674227,0.18563537902738905,0.22848511959795823,0.1841135084774899,286.2417557188579
+82.3,2.922129519206123,0.341971477829461,219.5251704778442,2.667377527069796,0.1856213286457747,0.22846782600262971,0.1841055756392916,286.61982952215584
+82.4,2.92212792717441,0.34192499058085263,219.76202994612564,2.667014926530651,0.1856072782641603,0.22845053240730112,0.18409764280109328,286.99797005387444
+82.5,2.9221263350740934,0.34187851234344896,219.99882269300943,2.666652396278902,0.1855932278825459,0.22843323881197258,0.18408970996289498,287.3761773069906
+82.6,2.9221247429051687,0.3418320430953959,220.23554872550167,2.6662899361440884,0.1855791775009315,0.22841594521664405,0.18408177712469667,287.7544512744983
+82.7,2.9221231506676295,0.3417855828149185,220.47220805059135,2.6659275459563645,0.18556512711931714,0.2283986516213155,0.18407384428649837,288.13279194940867
+82.8,2.922121558361469,0.34173913148032065,220.7088006752503,2.6655652255465014,0.18555107673770274,0.22838135802598697,0.18406591144830006,288.5111993247497
+82.9,2.922119965986683,0.34169268906998546,220.945326606434,2.6652029747458865,0.18553702635608835,0.22836406443065843,0.18405797861010179,288.88967339356606
+83.0,2.922118373543264,0.34164625556237327,221.18178585108046,2.6648407933865115,0.18552297597447395,0.2283467708353299,0.18405004577190348,289.2682141489196
+83.1,2.9221167810312076,0.34159983093602303,221.41817841611137,2.6644786813009795,0.18550892559285959,0.22832947724000136,0.18404211293370518,289.6468215838886
+83.2,2.9221151884505066,0.34155341516955057,221.65450430843154,2.6641166383224943,0.1854948752112452,0.22831218364467282,0.18403418009550687,290.0254956915685
+83.3,2.922113595801155,0.3415070082416489,221.89076353492896,2.6637546642848617,0.1854808248296308,0.22829489004934425,0.18402624725730857,290.40423646507105
+83.4,2.9221120030831482,0.34146061013108814,222.12695610247548,2.6633927590224875,0.18546677444801643,0.2282775964540157,0.18401831441911026,290.7830438975246
+83.5,2.9221104102964794,0.3414142208167142,222.36308201792596,2.6630309223703708,0.18545272406640204,0.22826030285868718,0.18401038158091196,291.16191798207404
+83.6,2.9221088174411425,0.3413678402774491,222.599141288119,2.662669154164103,0.18543867368478764,0.22824300926335864,0.18400244874271365,291.540858711881
+83.7,2.922107224517132,0.34132146849229056,222.83513391987682,2.6623074542398664,0.18542462330317325,0.2282257156680301,0.18399451590451535,291.9198660801232
+83.8,2.922105631524442,0.3412751054403114,223.07105992000515,2.6619458224344292,0.18541057292155888,0.22820842207270156,0.18398658306631704,292.29894007999485
+83.9,2.9221040384630665,0.34122875110065953,223.30691929529362,2.6615842585851444,0.18539652253994446,0.22819112847737297,0.1839786502281187,292.6780807047064
+84.0,2.922102445332999,0.34118240545255707,223.5427120525154,2.6612227625299454,0.1853824721583301,0.22817383488204449,0.18397071738992044,293.0572879474846
+84.1,2.9221008521342346,0.3411360684753005,223.77843819842758,2.6608613341073437,0.18536842177671567,0.2281565412867159,0.1839627845517221,293.4365618015724
+84.2,2.922099258866766,0.3410897401482598,224.01409773977113,2.6604999731564267,0.1853543713951013,0.22813924769138735,0.1839548517135238,293.8159022602289
+84.3,2.9220976655305892,0.34104342045087915,224.24969068327107,2.6601386795168573,0.1853403210134869,0.22812195409605882,0.1839469188753255,294.1953093167289
+84.4,2.9220960721256968,0.3409971093626749,224.48521703563617,2.6597774530288643,0.18532627063187251,0.22810466050073028,0.1839389860371272,294.5747829643639
+84.5,2.922094478652083,0.34095080686323676,224.72067680355934,2.659416293533247,0.18531222025025815,0.22808736690540174,0.1839310531989289,294.95432319644067
+84.6,2.922092885109742,0.34090451293222684,224.95606999371782,2.6590552008713693,0.18529816986864375,0.22807007331007317,0.1839231203607306,295.3339300062822
+84.7,2.9220912914986688,0.340858227549379,225.1913966127728,2.6586941748851567,0.18528411948702936,0.22805277971474464,0.1839151875225323,295.7136033872273
+84.8,2.9220896978188557,0.34081195069449916,225.4266566673695,2.6583332154170933,0.18527006910541496,0.2280354861194161,0.183907254684334,296.0933433326305
+84.9,2.9220881040702986,0.34076568234746435,225.66185016413786,2.657972322310222,0.1852560187238006,0.22801819252408756,0.1838993218461357,296.4731498358622
+85.0,2.9220865102529903,0.3407194224882229,225.8969771096918,2.6576114954081387,0.1852419683421862,0.22800089892875902,0.1838913890079374,296.85302289030824
+85.1,2.922084916366925,0.34067317109679374,226.13203751062974,2.6572507345549914,0.1852279179605718,0.22798360533343048,0.18388345616973908,297.23296248937027
+85.2,2.9220833224120972,0.3406269281532663,226.36703137353467,2.6568900395954773,0.18521386757895744,0.22796631173810195,0.18387552333154078,297.6129686264654
+85.3,2.9220817283885014,0.3405806936378,226.6019587049739,2.6565294103748407,0.18519981719734305,0.2279490181427734,0.18386759049334248,297.9930412950261
+85.4,2.9220801342961304,0.340534467530624,226.83681951149927,2.656168846738867,0.18518576681572865,0.22793172454744487,0.18385965765514417,298.3731804885008
+85.5,2.9220785401349794,0.3404882498120368,227.07161379964734,2.655808348533887,0.18517171643411426,0.22791443095211633,0.18385172481694587,298.7533862003527
+85.6,2.9220769459050415,0.34044204046240606,227.30634157593929,2.6554479156067674,0.1851576660524999,0.22789713735678777,0.18384379197874756,299.13365842406074
+85.7,2.922075351606312,0.3403958394621683,227.541002846881,2.6550875478049125,0.1851436156708855,0.22787984376145923,0.18383585914054926,299.513997153119
+85.8,2.922073757238784,0.3403496467918282,227.77559761896313,2.6547272449762604,0.18512956528927108,0.22786255016613066,0.18382792630235092,299.89440238103685
+85.9,2.9220721628024515,0.340303462431959,228.01012589866122,2.6543670069692804,0.18511551490765668,0.2278452565708021,0.18381999346415262,300.27487410133887
+86.0,2.9220705682973094,0.34025728636320135,228.24458769243546,2.6540068336329705,0.18510146452604231,0.22782796297547356,0.18381206062595432,300.6554123075646
+86.1,2.9220689737233507,0.3402111185662634,228.47898300673117,2.6536467248168547,0.18508741414442792,0.22781066938014502,0.183804127787756,301.03601699326884
+86.2,2.9220673790805702,0.34016495902192073,228.71331184797867,2.6532866803709823,0.18507336376281353,0.22779337578481648,0.18379619494955773,301.4166881520214
+86.3,2.9220657843689617,0.3401188077110157,228.94757422259315,2.652926700145923,0.18505931338119916,0.22777608218948794,0.18378826211135943,301.7974257774069
+86.4,2.922064189588519,0.3400726646144571,229.181770136975,2.652566783992766,0.18504526299958476,0.2277587885941594,0.18378032927316112,302.1782298630251
+86.5,2.922062594739237,0.3400265297132202,229.41589959750968,2.652206931763118,0.18503121261797037,0.22774149499883087,0.18377239643496282,302.55910040249034
+86.6,2.9220609998211087,0.33998040298834586,229.64996261056783,2.6518471433090975,0.18501716223635598,0.22772420140350233,0.18376446359676452,302.9400373894322
+86.7,2.9220594048341293,0.339934284420941,229.88395918250555,2.6514874184833395,0.1850031118547416,0.2277069078081738,0.1837565307585662,303.3210408174945
+86.8,2.9220578097782917,0.3398881739921773,230.11788931966373,2.6511277571389833,0.18498906147312721,0.22768961421284525,0.1837485979203679,303.70211068033626
+86.9,2.9220562146535904,0.33984207168329217,230.35175302836913,2.650768159129679,0.18497501109151282,0.2276723206175167,0.1837406650821696,304.08324697163096
+87.0,2.92205461946002,0.3397959774755873,230.58555031493358,2.6504086243095815,0.18496096070989845,0.22765502702218815,0.1837327322439713,304.4644496850664
+87.1,2.9220530241975737,0.339749891350429,230.81928118565443,2.650049152533346,0.18494691032828406,0.2276377334268596,0.183724799405773,304.84571881434556
+87.2,2.9220514288662462,0.3397038132892475,231.0529456468146,2.649689743656131,0.18493285994666966,0.22762043983153107,0.1837168665675747,305.22705435318545
+87.3,2.9220498334660316,0.33965774327353726,231.28654370468243,2.6493303975335905,0.18491880956505527,0.22760314623620254,0.18370893372937638,305.6084562953176
+87.4,2.9220482379969233,0.33961168128485575,231.5200753655119,2.648971114021875,0.1849047591834409,0.227585852640874,0.18370100089117808,305.98992463448815
+87.5,2.9220466424589158,0.33956562730482426,231.75354063554258,2.6486118929776294,0.18489070880182648,0.2275685590455454,0.18369306805297975,306.37145936445745
+87.6,2.9220450468520025,0.33951958131512655,231.9869395209997,2.6482527342579876,0.1848766584202121,0.22755126545021687,0.18368513521478144,306.7530604790003
+87.7,2.9220434511761786,0.3394735432975097,232.2202720280945,2.6478936377205757,0.1848626080385977,0.22753397185488833,0.18367720237658314,307.13472797190553
+87.8,2.922041855431438,0.3394275132337827,232.45353816302375,2.647534603223505,0.18484855765698333,0.2275166782595598,0.18366926953838486,307.51646183697625
+87.9,2.922040259617773,0.33938149110581645,232.68673793196993,2.6471756306253686,0.18483450727536893,0.22749938466423125,0.18366133670018656,307.89826206803014
+88.0,2.92203866373518,0.33933547689554444,232.91987134110173,2.646816719785247,0.18482045689375454,0.22748209106890271,0.18365340386198825,308.2801286588983
+88.1,2.922037067783651,0.33928947058496106,233.15293839657355,2.6464578705626964,0.18480640651214017,0.22746479747357418,0.18364547102378995,308.6620616034265
+88.2,2.922035471763182,0.3392434721561223,233.3859391045259,2.646099082817754,0.18479235613052578,0.2274475038782456,0.18363753818559164,309.04406089547416
+88.3,2.9220338756737654,0.339197481591145,233.6188734710852,2.645740356410931,0.18477830574891138,0.22743021028291707,0.18362960534739334,309.42612652891484
+88.4,2.922032279515396,0.3391514988722067,233.851741502364,2.6453816912032124,0.184764255367297,0.22741291668758853,0.18362167250919503,309.8082584976361
+88.5,2.922030683288068,0.33910552398154553,234.0845432044609,2.6450230870560554,0.18475020498568262,0.22739562309226,0.18361373967099673,310.19045679553915
+88.6,2.922029086991775,0.33905955690145984,234.31727858346085,2.6446645438313867,0.18473615460406823,0.22737832949693146,0.18360580683279842,310.57272141653914
+88.7,2.9220274906265113,0.33901359761430755,234.54994764543486,2.644306061391599,0.18472210422245383,0.22736103590160292,0.18359787399460012,310.95505235456517
+88.8,2.922025894192271,0.33896764610250657,234.78255039644014,2.6439476395995514,0.18470805384083946,0.22734374230627438,0.18358994115640181,311.33744960355983
+88.9,2.9220242976890476,0.33892170234853397,235.01508684252045,2.643589278318565,0.18469400345922507,0.22732644871094584,0.1835820083182035,311.7199131574796
+89.0,2.922022701116836,0.33887576633492594,235.2475569897056,2.6432309774124225,0.18467995307761068,0.2273091551156173,0.1835740754800052,312.10244301029445
+89.1,2.9220211044756295,0.33882983804427763,235.47996084401208,2.6428727367453657,0.18466590269599628,0.22729186152028874,0.1835661426418069,312.4850391559879
+89.2,2.9220195077654227,0.3387839174592426,235.71229841144262,2.642514556182092,0.18465185231438186,0.22727456792496017,0.18355820980360857,312.8677015885574
+89.3,2.9220179109862094,0.3387380045625327,235.94456969798657,2.6421564355877556,0.1846378019327675,0.22725727432963164,0.18355027696541026,313.25043030201346
+89.4,2.922016314137983,0.338692099336918,236.1767747096197,2.6417983748279608,0.1846237515511531,0.2272399807343031,0.183542344127212,313.6332252903804
+89.5,2.9220147172207382,0.33864620176522625,236.40891345230446,2.641440373768765,0.1846097011695387,0.22722268713897453,0.18353441128901368,314.0160865476956
+89.6,2.9220131202344697,0.3386003118303427,236.64098593198992,2.6410824322766735,0.18459565078792434,0.227205393543646,0.18352647845081538,314.39901406801005
+89.7,2.9220115231791706,0.33855442951521003,236.8729921546119,2.6407245502186387,0.18458160040630994,0.22718809994831746,0.18351854561261707,314.78200784538814
+89.8,2.9220099260548342,0.33850855480282754,237.1049321260925,2.640366727462055,0.18456755002469555,0.22717080635298892,0.18351061277441877,315.1650678739075
+89.9,2.9220083288614567,0.33846268767625176,237.33680585234129,2.640008963874764,0.18455349964308118,0.22715351275766038,0.18350267993622046,315.54819414765876
+90.0,2.92200673159903,0.33841682811859536,237.568613339254,2.6396512593250443,0.1845394492614668,0.22713621916233184,0.18349474709802216,315.93138666074606
+90.1,2.9220051342675495,0.3383709761130276,237.80035459271355,2.6392936136816156,0.1845253988798524,0.2271189255670033,0.18348681425982385,316.31464540728643
+90.2,2.9220035368670088,0.33832513164277356,238.0320296185898,2.638936026813634,0.184511348498238,0.22710163197167477,0.18347888142162555,316.69797038141024
+90.3,2.9220019393974015,0.3382792946911139,238.26363842273918,2.6385784985906886,0.18449729811662363,0.22708433837634623,0.18347094858342725,317.08136157726085
+90.4,2.922000341858722,0.33823346524138515,238.4951810110055,2.6382210288828043,0.18448324773500924,0.22706704478101766,0.18346301574522894,317.4648189889945
+90.5,2.9219987442509647,0.338187643276979,238.72665738921947,2.637863617560436,0.18446919735339484,0.22704975118568912,0.18345508290703064,317.8483426107806
+90.6,2.921997146574123,0.3381418287813418,238.95806756319865,2.6375062644944665,0.18445514697178048,0.2270324575903606,0.18344715006883233,318.23193243680134
+90.7,2.9219955488281912,0.3380960217379753,239.18941153874803,2.6371489695562076,0.18444109659016608,0.22701516399503205,0.18343921723063403,318.615588461252
+90.8,2.921993951013163,0.33805022213043534,239.42068932165952,2.6367917326173957,0.1844270462085517,0.2269978703997035,0.18343128439243572,318.99931067834046
+90.9,2.921992353129033,0.3380044299423322,239.65190091771242,2.6364345535501914,0.18441299582693726,0.22698057680437492,0.1834233515542374,319.38309908228763
+91.0,2.9219907551757958,0.3379586451573304,239.8830463326731,2.636077432227177,0.18439894544532287,0.22696328320904638,0.18341541871603909,319.7669536673269
+91.1,2.9219891571534435,0.3379128677591477,240.11412557229517,2.635720368521352,0.1843848950637085,0.22694598961371784,0.1834074858778408,320.1508744277048
+91.2,2.9219875590619715,0.337867097731556,240.3451386423197,2.635363362306137,0.1843708446820941,0.2269286960183893,0.1833995530396425,320.53486135768037
+91.3,2.921985960901373,0.33782133505838047,240.57608554847508,2.635006413455368,0.18435679430047971,0.22691140242306077,0.1833916202014442,320.9189144515249
+91.4,2.9219843626716435,0.33777557972349936,240.8069662964772,2.6346495218432953,0.18434274391886535,0.22689410882773223,0.1833836873632459,321.3030337035229
+91.5,2.921982764372775,0.33772983171084353,241.03778089202905,2.6342926873445798,0.18432869353725095,0.2268768152324037,0.1833757545250476,321.687219107971
+91.6,2.9219811660047634,0.337684091004397,241.26852934082157,2.633935909834297,0.18431464315563656,0.22685952163707515,0.18336782168684929,322.07147065917843
+91.7,2.921979567567602,0.33763835758819577,241.49921164853293,2.633579189187927,0.1843005927740222,0.22684222804174659,0.18335988884865098,322.4557883514671
+91.8,2.921977969061284,0.3375926314463282,241.7298278208288,2.6332225252813597,0.1842865423924078,0.22682493444641805,0.18335195601045268,322.8401721791712
+91.9,2.921976370485804,0.3375469125629345,241.9603778633628,2.6328659179908898,0.1842724920107934,0.2268076408510895,0.18334402317225437,323.22462213663727
+92.0,2.921974771841157,0.33750120092220703,242.1908617817758,2.632509367193215,0.184258441629179,0.22679034725576097,0.18333609033405607,323.60913821822425
+92.1,2.921973173127336,0.33745549650838935,242.42127958169672,2.632152872765437,0.18424439124756464,0.22677305366043243,0.18332815749585776,323.99372041830327
+92.2,2.921971574344335,0.337409799305776,242.65163126874188,2.631796434585053,0.18423034086595025,0.2267557600651039,0.18332022465765946,324.37836873125815
+92.3,2.921969975492148,0.33736410929871324,242.88191684851563,2.6314400525299635,0.18421629048433585,0.22673846646977536,0.18331229181946115,324.7630831514844
+92.4,2.921968376570769,0.3373184264715977,243.11213632660994,2.6310837264784626,0.1842022401027215,0.22672117287444682,0.18330435898126285,325.14786367339013
+92.5,2.921966777580192,0.3372727508088769,243.3422897086047,2.63072745630924,0.1841881897211071,0.22670387927911828,0.18329642614306454,325.53271029139535
+92.6,2.921965178520412,0.33722708229504883,243.57237700006786,2.630371241901381,0.1841741393394927,0.22668658568378974,0.18328849330486624,325.9176229999321
+92.7,2.921963579391422,0.3371814209146612,243.80239820655493,2.6300150831343574,0.18416008895787828,0.22666929208846115,0.18328056046666794,326.3026017934451
+92.8,2.921961980193216,0.33713576665231226,244.0323533336097,2.6296589798880357,0.18414603857626388,0.2266519984931326,0.18327262762846963,326.6876466663903
+92.9,2.921960380925788,0.3370901194926497,244.26224238676386,2.629302932042668,0.18413198819464952,0.22663470489780407,0.18326469479027133,327.0727576132362
+93.0,2.921958781589133,0.33704447942037086,244.49206537153705,2.628946939478893,0.18411793781303512,0.2266174113024755,0.18325676195207302,327.45793462846297
+93.1,2.9219571821832435,0.3369988464202224,244.72182229343707,2.6285910020777346,0.18410388743142073,0.22660011770714697,0.18324882911387472,327.8431777065629
+93.2,2.9219555827081143,0.336953220477,244.95151315795994,2.6282351197206,0.18408983704980636,0.22658282411181843,0.1832408962756764,328.2284868420401
+93.3,2.92195398316374,0.3369076015755486,245.18113797058973,2.627879292289279,0.18407578666819197,0.2265655305164899,0.1832329634374781,328.6138620294103
+93.4,2.9219523835501136,0.33686198970076126,245.41069673679866,2.6275235196659383,0.18406173628657757,0.22654823692116136,0.1832250305992798,328.9993032632014
+93.5,2.921950783867229,0.33681638483758014,245.6401894620472,2.6271678017331253,0.1840476859049632,0.22653094332583282,0.1832170977610815,329.38481053795283
+93.6,2.921949184115081,0.3367707869709953,245.86961615178421,2.6268121383737633,0.1840336355233488,0.22651364973050428,0.1832091649228832,329.7703838482158
+93.7,2.9219475842936635,0.33672519608604495,246.09897681144682,2.6264565294711506,0.18401958514173442,0.22649635613517574,0.1832012320846849,330.1560231885532
+93.8,2.9219459844029707,0.3366796121678154,246.32827144646043,2.62610097490896,0.18400553476012002,0.2264790625398472,0.18319329924648659,330.5417285535396
+93.9,2.9219443844429955,0.3366340352014401,246.5575000622388,2.625745474571233,0.18399148437850565,0.22646176894451867,0.18318536640828828,330.92749993776124
+94.0,2.9219427844137327,0.33658846517210067,246.78666266418426,2.6253900283423857,0.18397743399689126,0.2264444753491901,0.18317743357008998,331.3133373358158
+94.1,2.921941184315176,0.33654290206502546,247.0157592576874,2.625034636107199,0.18396338361527687,0.22642718175386156,0.18316950073189167,331.6992407423126
+94.2,2.9219395841473195,0.3364973458654901,247.24478984812754,2.624679297750823,0.1839493332336625,0.22640988815853302,0.18316156789369337,332.0852101518725
+94.3,2.9219379839101576,0.3364517965588172,247.4737544408724,2.624324013158774,0.1839352828520481,0.22639259456320449,0.18315363505549506,332.4712455591276
+94.4,2.9219363836036836,0.33640625413037556,247.70265304127815,2.6239687822169295,0.18392123247043368,0.2263753009678759,0.18314570221729676,332.8573469587219
+94.5,2.9219347832278926,0.33636071856558114,247.93148565468988,2.623613604811533,0.1839071820888193,0.22635800737254735,0.18313776937909845,333.24351434531013
+94.6,2.921933182782777,0.33631518984989556,248.16025228644094,2.6232584808291857,0.1838931317072049,0.22634071377721882,0.18312983654090015,333.629747713559
+94.7,2.921931582268332,0.3362696679688269,248.3889529418537,2.62290341015685,0.18387908132559053,0.22632342018189028,0.18312190370270184,334.01604705814634
+94.8,2.921929981684551,0.33622415290792884,248.61758762623893,2.6225483926818454,0.18386503094397613,0.22630612658656174,0.18311397086450354,334.4024123737611
+94.9,2.921928381031429,0.3361786446528012,248.8461563448965,2.6221934282918493,0.18385098056236174,0.2262888329912332,0.18310603802630523,334.78884365510356
+95.0,2.9219267803089584,0.33613314318908855,249.07465910311467,2.6218385168748912,0.18383693018074737,0.22627153939590466,0.18309810518810693,335.17534089688536
+95.1,2.9219251795171344,0.33608764850248174,249.3030959061709,2.6214836583193577,0.18382287979913298,0.22625424580057613,0.18309017234990863,335.56190409382907
+95.2,2.9219235786559503,0.33604216057871583,249.53146675933124,2.6211288525139835,0.18380882941751858,0.2262369522052476,0.18308223951171032,335.94853324066884
+95.3,2.921921977725401,0.33599667940357125,249.75977166785069,2.620774099347856,0.18379477903590422,0.22621965860991902,0.18307430667351202,336.3352283321493
+95.4,2.9219203767254793,0.33595120496287323,249.98801063697326,2.6204193987104114,0.18378072865428982,0.22620236501459048,0.1830663738353137,336.7219893630268
+95.5,2.92191877565618,0.33590573724249123,250.21618367193173,2.620064750491432,0.18376667827267543,0.22618507141926195,0.1830584409971154,337.1088163280683
+95.6,2.9219171745174966,0.33586027622833947,250.44429077794817,2.619710154581048,0.18375262789106103,0.2261677778239334,0.1830505081589171,337.49570922205186
+95.7,2.9219155733094233,0.3358148219063759,250.67233196023338,2.6193556108697322,0.18373857750944667,0.22615048422860487,0.1830425753207188,337.88266803976666
+95.8,2.9219139720319545,0.3357693742626029,250.90030722398743,2.619001119248303,0.18372452712783227,0.22613319063327633,0.1830346424825205,338.26969277601256
+95.9,2.9219123706850834,0.3357239332830665,251.1282165743994,2.6186466796079184,0.18371047674621788,0.2261158970379478,0.1830267096443222,338.6567834256007
+96.0,2.9219107692688047,0.33567849895385604,251.3560600166474,2.6182922918400773,0.1836964263646035,0.22609860344261926,0.18301877680612388,339.04393998335263
+96.1,2.921909167783112,0.33563307126110487,251.583837555899,2.6179379558366183,0.18368237598298912,0.22608130984729072,0.18301084396792558,339.431162444101
+96.2,2.921907566227999,0.3355876501909891,251.8115491973106,2.617583671489715,0.1836683256013747,0.22606401625196212,0.18300291112972727,339.8184508026894
+96.3,2.921905964603461,0.33554223572972836,252.03919494602815,2.617229438691881,0.1836542752197603,0.2260467226566336,0.18299497829152897,340.20580505397186
+96.4,2.9219043629094896,0.3354968278635847,252.26677480718664,2.616875257335961,0.18364022483814593,0.22602942906130505,0.18298704545333067,340.5932251928134
+96.5,2.9219027611460815,0.33545142657886345,252.49428878591053,2.616521127315135,0.18362617445653154,0.2260121354659765,0.18297911261513236,340.9807112140895
+96.6,2.921901159313229,0.335406031861912,252.72173688731343,2.6161670485229136,0.18361212407491714,0.22599484187064794,0.18297117977693406,341.3682631126866
+96.7,2.921899557410926,0.3353606436991204,252.94911911649854,2.615813020853139,0.18359807369330275,0.2259775482753194,0.18296324693873575,341.7558808835015
+96.8,2.9218979554391677,0.3353152620769208,253.1764354785583,2.6154590441999823,0.18358402331168838,0.22596025467999087,0.18295531410053745,342.14356452144176
+96.9,2.9218963533979467,0.33526988698178734,253.40368597857454,2.6151051184579415,0.183569972930074,0.22594296108466233,0.18294738126233914,342.53131402142554
+97.0,2.9218947512872577,0.33522451840023615,253.6308706216187,2.6147512435218423,0.1835559225484596,0.2259256674893338,0.18293944842414084,342.91912937838134
+97.1,2.921893149107095,0.33517915631882494,253.85798941275166,2.614397419286835,0.18354187216684523,0.22590837389400525,0.18293151558594253,343.3070105872483
+97.2,2.9218915468574513,0.33513380072415294,254.0850423570238,2.614043645648393,0.18352782178523083,0.22589108029867672,0.18292358274774423,343.69495764297625
+97.3,2.9218899445383224,0.3350884516028607,254.3120294594751,2.6136899225023136,0.18351377140361644,0.22587378670334818,0.18291564990954592,344.0829705405249
+97.4,2.9218883421497006,0.33504310894162986,254.5389507251351,2.6133362497447132,0.18349972102200204,0.22585649310801964,0.18290771707134762,344.471049274865
+97.5,2.9218867396915806,0.33499777272718334,254.76580615902296,2.6129826272720305,0.18348567064038768,0.22583919951269107,0.18289978423314932,344.85919384097707
+97.6,2.9218851371639563,0.3349524429462845,254.99259576614747,2.6126290549810194,0.18347162025877328,0.22582190591736254,0.182891851394951,345.24740423385254
+97.7,2.921883534566822,0.33490711958573777,255.21931955150734,2.612275532768755,0.1834575698771589,0.225804612322034,0.1828839185567527,345.6356804484927
+97.8,2.921881931900171,0.33486180263238774,255.44597752009068,2.6119220605326245,0.18344351949554452,0.22578731872670546,0.1828759857185544,346.0240224799093
+97.9,2.921880329163998,0.3348164920731195,255.67256967687555,2.6115686381703322,0.1834294691139301,0.22577002513137687,0.1828680528803561,346.4124303231245
+98.0,2.921878726358296,0.33477118789485816,255.89909602682957,2.6112152655798937,0.1834154187323157,0.22575273153604833,0.1828601200421578,346.8009039731705
+98.1,2.9218771234830605,0.3347258900845692,256.12555657491066,2.61086194265964,0.1834013683507013,0.2257354379407198,0.1828521872039595,347.18944342508934
+98.2,2.921875520538284,0.33468059862925736,256.351951326066,2.610508669308208,0.18338731796908694,0.22571814434539125,0.18284425436576118,347.57804867393406
+98.3,2.921873917523961,0.33463531351596765,256.578280285233,2.6101554454245477,0.18337326758747255,0.22570085075006271,0.18283632152756288,347.966719714767
+98.4,2.9218723144400855,0.33459003473178406,256.8045434573389,2.609802270907916,0.18335921720585815,0.22568355715473418,0.18282838868936457,348.35545654266116
+98.5,2.9218707112866515,0.33454476226383045,257.03074084730093,2.6094491456578774,0.18334516682424376,0.22566626355940564,0.18282045585116627,348.7442591526991
+98.6,2.9218691080636527,0.3344994960992694,257.2568724600261,2.6090960695743015,0.1833311164426294,0.2256489699640771,0.18281252301296796,349.1331275399739
+98.7,2.9218675047710834,0.33445423622530285,257.4829383004117,2.6087430425573626,0.183317066061015,0.22563167636874856,0.18280459017476966,349.52206169958833
+98.8,2.9218659014089376,0.33440898262917157,257.7089383733448,2.6083900645075384,0.1833030156794006,0.22561438277342,0.18279665733657136,349.9110616266552
+98.9,2.9218642979772094,0.334363735298155,257.9348726837028,2.6080371353256093,0.18328896529778624,0.22559708917809146,0.18278872449837305,350.3001273162973
+99.0,2.921862694475892,0.33431849421957094,258.1607412363527,2.6076842549126535,0.18327491491617184,0.22557979558276292,0.18278079166017475,350.68925876364733
+99.1,2.9218610909049794,0.3342732593807759,258.38654403615215,2.607331423170052,0.18326086453455745,0.22556250198743438,0.18277285882197644,351.07845596384783
+99.2,2.9218594872644665,0.3342280307691647,258.6122810879489,2.6069786399994848,0.18324681415294305,0.22554520839210584,0.18276492598377814,351.46771891205117
+99.3,2.9218578835543463,0.3341828083721698,258.8379523965804,2.606625905302925,0.1832327637713287,0.2255279147967773,0.18275699314557983,351.8570476034196
+99.4,2.9218562797746133,0.33413759217726224,259.063557966875,2.6062732189826456,0.1832187133897143,0.22551062120144877,0.18274906030738153,352.2464420331251
+99.5,2.9218546759252617,0.33409238217195025,259.28909780365063,2.6059205809412123,0.1832046630080999,0.22549332760612023,0.18274112746918322,352.63590219634943
+99.6,2.9218530720062845,0.33404717834378006,259.51457191171585,2.6055679910814846,0.18319061262648548,0.22547603401079164,0.18273319463098492,353.0254280882842
+99.7,2.9218514680176764,0.3340019806803354,259.73998029586966,2.605215449306616,0.1831765622448711,0.2254587404154631,0.18272526179278661,353.41501970413043
+99.8,2.9218498639594315,0.3339567891692371,259.96532296090095,2.6048629555200495,0.18316251186325672,0.22544144682013456,0.1827173289545883,353.8046770390991
+99.9,2.9218482598315436,0.3339116037981434,260.19059991158935,2.6045105096255186,0.18314846148164232,0.22542415322480602,0.18270939611639,354.19440008841076
diff --git a/Documents/Padulles-Hauer/Padulles_Hauer_Test.html b/Documents/Padulles-Hauer/Padulles_Hauer_Test.html
new file mode 100644
index 00000000..845cea12
--- /dev/null
+++ b/Documents/Padulles-Hauer/Padulles_Hauer_Test.html
@@ -0,0 +1,718 @@
+
+
+Padulles_Hauer_Test
+
+
+
+
OPEM Report (Padulles-Hauer Model)
+
What is Padulles-Hauer ?
+
+Padulles-Hauer Dynamic Model is a dynamic electrochemical simulation model of a grid independent proton exchange
+membrane (PEM) fuel cell. This model includes a methanol reformer to generate hydrogen from methanol and the PEM stack.
+The model is used to predict the output voltage and power of a PEMFC. It has to be noted that the reformer model is a
+second order transfer function.
+
+
Inputs
+
+
+
+Input
+
+Description
+
+Value
+
+
+
+
+B
+
+
+Activation voltage constant [V]
+
+
+0.04777
+
+
+
+C
+
+
+Activation constant parameter [A^(-1)]
+
+
+0.0136
+
+
+
+CV
+
+
+Conversion factor
+
+
+2
+
+
+
+E0
+
+
+No load voltage [V]
+
+
+0.6
+
+
+
+KH2
+
+
+Hydrogen valve constant [kmol.s^(-1).atm^(-1)]
+
+
+4.22e-05
+
+
+
+KH2O
+
+
+Water valve constant [kmol.s^(-1).atm^(-1)]
+
+
+7.716e-06
+
+
+
+KO2
+
+
+Oxygen valve constant [kmol.s^(-1).atm^(-1)]
+
+
+2.11e-05
+
+
+
+N0
+
+
+Number of cells
+
+
+5
+
+
+
+Rint
+
+
+Fuel cell internal resistance [ohm]
+
+
+0.00303
+
+
+
+T
+
+
+Fuel cell temperature [K]
+
+
+343
+
+
+
+i-start
+
+
+Cell operating current start point [A]
+
+
+0.1
+
+
+
+i-step
+
+
+Cell operating current step
+
+
+0.1
+
+
+
+i-stop
+
+
+Cell operating current end point [A]
+
+
+100
+
+
+
+qMethanol
+
+
+Molar flow of methanol [kmol.s^(-1)]
+
+
+0.0002
+
+
+
+rho
+
+
+Hydrogen-Oxygen flow rate
+
+
+1.168
+
+
+
+t1
+
+
+Reformer time constant [s]
+
+
+2
+
+
+
+t2
+
+
+Reformer time constant [s]
+
+
+2
+
+
+
+tH2
+
+
+Hydrogen time constant [s]
+
+
+3.37
+
+
+
+tH2O
+
+
+Water time constant [s]
+
+
+18.418
+
+
+
+tO2
+
+
+Oxygen time constant [s]
+
+
+6.74
+
+
+
Overall Parameters
+
+
+
+Parameter
+
+Description
+
+Value
+
+
+
+
+Efficiency|Pmax
+
+
+Cell efficiency at maximum power
+
+
+0.3339116037981434
+
+
+
+Pmax
+
+
+Maximum power [W]
+
+
+260.19059991158935
+
+
+
+Ptotal(Elec)
+
+
+Total electrical power [W]
+
+
+279.8328477108543
+
+
+
+Ptotal(Thermal)
+
+
+Total thermal power [W]
+
+
+333.93715228914607
+
+
+
+VFC|Pmax
+
+
+Cell voltage at maximum power [V]
+
+
+2.6045105096255186
+
+
+
Graphs
+
+
+
+
+
+
+
+
+
+
+
+
+
+Parameter
+
+Description
+
+Value
+
+
+
+
+K
+
+
+Slope of the curve obtained by linear approximation [A^(-1)]
+
+
+-0.0044705456629812465
+
+
+
+Pmax(L-Approx)
+
+
+Maximum power obtained by linear approximation [W]
+
+
+512.5923558882793
+
+
+
+V0
+
+
+Intercept of the curve obtained by linear approximation [V]
+
+
+3.027584868170461
+
+
+
+VFC|Pmax(L-Approx)
+
+
+Cell voltage at maximum power obtained by linear approximation [V]
+
+
+
\ No newline at end of file
diff --git a/Documents/Padulles-Hauer/Padulles_Hauer_Test.opem b/Documents/Padulles-Hauer/Padulles_Hauer_Test.opem
new file mode 100644
index 00000000..d9559d00
--- /dev/null
+++ b/Documents/Padulles-Hauer/Padulles_Hauer_Test.opem
@@ -0,0 +1,11024 @@
+ ___
+ / _ \ _ __ ___ _ __ ___
+| | | || '_ \ / _ \| '_ ` _ \
+| |_| || |_) || __/| | | | | |
+ \___/ | .__/ \___||_| |_| |_|
+ |_|
+Simulation Date : 2019-02-22 18:16:25.053849
+**********
+Padulles-Hauer Model
+
+**********
+Simulation Inputs :
+
+B : 0.04777
+C : 0.0136
+CV : 2
+E0 : 0.6
+KH2 : 4.22e-05
+KH2O : 7.716e-06
+KO2 : 2.11e-05
+N0 : 5
+Name : Padulles_Hauer_Test
+Rint : 0.00303
+T : 343
+i-start : 0.1
+i-step : 0.1
+i-stop : 100
+qMethanol : 0.0002
+rho : 1.168
+t1 : 2
+t2 : 2
+tH2 : 3.37
+tH2O : 18.418
+tO2 : 6.74
+**********
+I :0.1 A
+
+E : 2.9234154992732004 V
+FC Efficiency : 0.41518043908246366
+FC Power : 0.3238407424843217 W
+FC Voltage : 3.2384074248432166 V
+PH2 : 0.19717074233280188 atm
+PH2O : 0.2426831613626925 atm
+PO2 : 0.1906263686382979 atm
+Power-Thermal : 0.2911592575156784 W
+###########
+I :0.2 A
+
+E : 2.9234139617015558 V
+FC Efficiency : 0.4108963136482338
+FC Power : 0.6409982492912448 W
+FC Voltage : 3.204991246456224 V
+PH2 : 0.1971566919511875 atm
+PH2O : 0.24266586776736396 atm
+PO2 : 0.1906184358000996 atm
+Power-Thermal : 0.5890017507087553 W
+###########
+I :0.3 A
+
+E : 2.9234124240659227 V
+FC Efficiency : 0.4083740564879825
+FC Power : 0.955595292181879 W
+FC Voltage : 3.1853176406062635 V
+PH2 : 0.19714264156957312 atm
+PH2O : 0.24264857417203542 atm
+PO2 : 0.1906105029619013 atm
+Power-Thermal : 0.889404707818121 W
+###########
+I :0.4 A
+
+E : 2.9234108863662946 V
+FC Efficiency : 0.4065731449109761
+FC Power : 1.2685082121222457 W
+FC Voltage : 3.171270530305614 V
+PH2 : 0.19712859118795872 atm
+PH2O : 0.24263128057670688 atm
+PO2 : 0.19060257012370302 atm
+Power-Thermal : 1.1914917878777547 W
+###########
+I :0.5 A
+
+E : 2.9234093486026658 V
+FC Efficiency : 0.4051674903968853
+FC Power : 1.5801532125478528 W
+FC Voltage : 3.1603064250957056 V
+PH2 : 0.19711454080634436 atm
+PH2O : 0.24261398698137834 atm
+PO2 : 0.1905946372855047 atm
+Power-Thermal : 1.4948467874521474 W
+###########
+I :0.6 A
+
+E : 2.923407810775032 V
+FC Efficiency : 0.4040118444230801
+FC Power : 1.8907754319000147 W
+FC Voltage : 3.1512923865000246 V
+PH2 : 0.19710049042472996 atm
+PH2O : 0.2425966933860498 atm
+PO2 : 0.1905867044473064 atm
+Power-Thermal : 1.7992245680999854 W
+###########
+I :0.7 A
+
+E : 2.923406272883388 V
+FC Efficiency : 0.4030287270042349
+FC Power : 2.2005368494431226 W
+FC Voltage : 3.1436240706330323 V
+PH2 : 0.19708644004311557 atm
+PH2O : 0.24257939979072127 atm
+PO2 : 0.19057877160910808 atm
+Power-Thermal : 2.1044631505568776 W
+###########
+I :0.8 A
+
+E : 2.9234047349277277 V
+FC Efficiency : 0.4021718894938075
+FC Power : 2.509552590441359 W
+FC Voltage : 3.1369407380516985 V
+PH2 : 0.19707238966150117 atm
+PH2O : 0.24256210619539273 atm
+PO2 : 0.1905708387709098 atm
+Power-Thermal : 2.4104474095586417 W
+###########
+I :0.9 A
+
+E : 2.9234031969080454 V
+FC Efficiency : 0.4014115005665013
+FC Power : 2.81790873397684 W
+FC Voltage : 3.1310097044187106 V
+PH2 : 0.19705833927988675 atm
+PH2O : 0.24254481260006414 atm
+PO2 : 0.19056290593271147 atm
+Power-Thermal : 2.7170912660231608 W
+###########
+I :1.0 A
+
+E : 2.9234016588243374 V
+FC Efficiency : 0.40072719160282416
+FC Power : 3.1256720945020287 W
+FC Voltage : 3.1256720945020287 V
+PH2 : 0.19704428889827239 atm
+PH2O : 0.2425275190047356 atm
+PO2 : 0.1905549730945132 atm
+Power-Thermal : 3.0243279054979717 W
+###########
+I :1.1 A
+
+E : 2.9234001206765963 V
+FC Efficiency : 0.40010443449551725
+FC Power : 3.4328960479715387 W
+FC Voltage : 3.1208145890650347 V
+PH2 : 0.197030238516658 atm
+PH2O : 0.24251022540940706 atm
+PO2 : 0.19054704025631486 atm
+Power-Thermal : 3.3321039520284623 W
+###########
+I :1.2 A
+
+E : 2.9233985824648183 V
+FC Efficiency : 0.39953250222749515
+FC Power : 3.7396242208493544 W
+FC Voltage : 3.116353517374462 V
+PH2 : 0.1970161881350436 atm
+PH2O : 0.24249293181407852 atm
+PO2 : 0.19053910741811658 atm
+Power-Thermal : 3.640375779150646 W
+###########
+I :1.3 A
+
+E : 2.923397044188998 V
+FC Efficiency : 0.3990032485837277
+FC Power : 4.045892940639 W
+FC Voltage : 3.1122253389530767 V
+PH2 : 0.19700213775342923 atm
+PH2O : 0.24247563821874998 atm
+PO2 : 0.19053117457991825 atm
+Power-Thermal : 3.9491070593610007 W
+###########
+I :1.4 A
+
+E : 2.923395505849129 V
+FC Efficiency : 0.3985103413824903
+FC Power : 4.351732927896794 W
+FC Voltage : 3.1083806627834245 V
+PH2 : 0.19698808737181484 atm
+PH2O : 0.24245834462342142 atm
+PO2 : 0.19052324174171997 atm
+Power-Thermal : 4.258267072103206 W
+###########
+I :1.5 A
+
+E : 2.923393967445207 V
+FC Efficiency : 0.3980487608857143
+FC Power : 4.657170502362857 W
+FC Voltage : 3.1047803349085714 V
+PH2 : 0.19697403699020044 atm
+PH2O : 0.24244105102809288 atm
+PO2 : 0.19051530890352164 atm
+Power-Thermal : 4.567829497637144 W
+###########
+I :1.6 A
+
+E : 2.923392428977226 V
+FC Efficiency : 0.39761446042126253
+FC Power : 4.962228466057358 W
+FC Voltage : 3.101392791285848 V
+PH2 : 0.19695998660858605 atm
+PH2O : 0.24242375743276434 atm
+PO2 : 0.19050737606532336 atm
+Power-Thermal : 4.877771533942644 W
+###########
+I :1.7 A
+
+E : 2.9233908904451815 V
+FC Efficiency : 0.3972041300730298
+FC Power : 5.2669267647683755 W
+FC Voltage : 3.098192214569633 V
+PH2 : 0.19694593622697168 atm
+PH2O : 0.2424064638374358 atm
+PO2 : 0.19049944322712503 atm
+Power-Thermal : 5.188073235231625 W
+###########
+I :1.8 A
+
+E : 2.9233893518490675 V
+FC Efficiency : 0.39681502801851076
+FC Power : 5.571282993379892 W
+FC Voltage : 3.0951572185443843 V
+PH2 : 0.19693188584535729 atm
+PH2O : 0.24238917024210727 atm
+PO2 : 0.19049151038892673 atm
+Power-Thermal : 5.498717006620109 W
+###########
+I :1.9 A
+
+E : 2.9233878131888784 V
+FC Efficiency : 0.3964448575287326
+FC Power : 5.875312788575817 W
+FC Voltage : 3.0922698887241142 V
+PH2 : 0.1969178354637429 atm
+PH2O : 0.24237187664677873 atm
+PO2 : 0.19048357755072845 atm
+Power-Thermal : 5.809687211424183 W
+###########
+I :2.0 A
+
+E : 2.9233862744646095 V
+FC Efficiency : 0.3960916755547374
+FC Power : 6.1790301386539035 W
+FC Voltage : 3.0895150693269517 V
+PH2 : 0.19690378508212852 atm
+PH2O : 0.2423545830514502 atm
+PO2 : 0.19047564471253012 atm
+Power-Thermal : 6.120969861346097 W
+###########
+I :2.1 A
+
+E : 2.923384735676255 V
+FC Efficiency : 0.39575382364054146
+FC Power : 6.482447631232071 W
+FC Voltage : 3.086879824396224 V
+PH2 : 0.19688973470051413 atm
+PH2O : 0.24233728945612165 atm
+PO2 : 0.19046771187433184 atm
+Power-Thermal : 6.432552368767931 W
+###########
+I :2.2 A
+
+E : 2.92338319682381 V
+FC Efficiency : 0.3954298749226794
+FC Power : 6.78557665367318 W
+FC Voltage : 3.0843530243968997 V
+PH2 : 0.19687568431889974 atm
+PH2O : 0.2423199958607931 atm
+PO2 : 0.1904597790361335 atm
+Power-Thermal : 6.744423346326822 W
+###########
+I :2.3 A
+
+E : 2.923381657907269 V
+FC Efficiency : 0.39511859292081414
+FC Power : 7.088427556999405 W
+FC Voltage : 3.0819250247823504 V
+PH2 : 0.19686163393728537 atm
+PH2O : 0.24230270226546458 atm
+PO2 : 0.19045184619793523 atm
+Power-Thermal : 7.0565724430005945 W
+###########
+I :2.4 A
+
+E : 2.9233801189266266 V
+FC Efficiency : 0.39481889910524637
+FC Power : 7.391009791250212 W
+FC Voltage : 3.079587413020922 V
+PH2 : 0.19684758355567097 atm
+PH2O : 0.242285408670136 atm
+PO2 : 0.1904439133597369 atm
+Power-Thermal : 7.368990208749787 W
+###########
+I :2.5 A
+
+E : 2.923378579881877 V
+FC Efficiency : 0.39452984708947947
+FC Power : 7.693332018244849 W
+FC Voltage : 3.07733280729794 V
+PH2 : 0.19683353317405658 atm
+PH2O : 0.24226811507480747 atm
+PO2 : 0.19043598052153862 atm
+Power-Thermal : 7.681667981755151 W
+###########
+I :2.6 A
+
+E : 2.923377040773016 V
+FC Efficiency : 0.39425060188740335
+FC Power : 7.995402206276542 W
+FC Voltage : 3.0751546947217467 V
+PH2 : 0.19681948279244216 atm
+PH2O : 0.2422508214794789 atm
+PO2 : 0.1904280476833403 atm
+Power-Thermal : 7.99459779372346 W
+###########
+I :2.7 A
+
+E : 2.923375501600037 V
+FC Efficiency : 0.3939804230873111
+FC Power : 8.297227710218774 W
+FC Voltage : 3.073047300081027 V
+PH2 : 0.19680543241082776 atm
+PH2O : 0.24223352788415034 atm
+PO2 : 0.190420114845142 atm
+Power-Thermal : 8.307772289781228 W
+###########
+I :2.8 A
+
+E : 2.923373962362936 V
+FC Efficiency : 0.3937186510874208
+FC Power : 8.59881533974927 W
+FC Voltage : 3.0710054784818825 V
+PH2 : 0.1967913820292134 atm
+PH2O : 0.2422162342888218 atm
+PO2 : 0.19041218200694368 atm
+Power-Thermal : 8.62118466025073 W
+###########
+I :2.9 A
+
+E : 2.9233724230617057 V
+FC Efficiency : 0.3934646957478549
+FC Power : 8.900171417816479 W
+FC Voltage : 3.0690246268332686 V
+PH2 : 0.196777331647599 atm
+PH2O : 0.24219894069349326 atm
+PO2 : 0.1904042491687454 atm
+Power-Thermal : 8.934828582183522 W
+###########
+I :3.0 A
+
+E : 2.923370883696343 V
+FC Efficiency : 0.39321802696722546
+FC Power : 9.201301831033076 W
+FC Voltage : 3.0671006103443585 V
+PH2 : 0.1967632812659846 atm
+PH2O : 0.24218164709816473 atm
+PO2 : 0.19039631633054707 atm
+Power-Thermal : 9.248698168966925 W
+###########
+I :3.1 A
+
+E : 2.9233693442668414 V
+FC Efficiency : 0.39297816680494896
+FC Power : 9.502212073343667 W
+FC Voltage : 3.0652297010786023 V
+PH2 : 0.19674923088437024 atm
+PH2O : 0.2421643535028362 atm
+PO2 : 0.1903883834923488 atm
+Power-Thermal : 9.562787926656334 W
+###########
+I :3.2 A
+
+E : 2.9233678047731946 V
+FC Efficiency : 0.39274468285467545
+FC Power : 9.8029072840527 W
+FC Voltage : 3.0634085262664685 V
+PH2 : 0.19673518050275585 atm
+PH2O : 0.24214705990750765 atm
+PO2 : 0.19038045065415046 atm
+Power-Thermal : 9.877092715947303 W
+###########
+I :3.3 A
+
+E : 2.9233662652153996 V
+FC Efficiency : 0.3925171826377131
+FC Power : 10.103392281094736 W
+FC Voltage : 3.0616340245741624 V
+PH2 : 0.19672113012114145 atm
+PH2O : 0.2421297663121791 atm
+PO2 : 0.19037251781595219 atm
+Power-Thermal : 10.191607718905265 W
+###########
+I :3.4 A
+
+E : 2.923364725593449 V
+FC Efficiency : 0.39229530883366054
+FC Power : 10.403671590268678 W
+FC Voltage : 3.059903408902552 V
+PH2 : 0.19670707973952706 atm
+PH2O : 0.24211247271685057 atm
+PO2 : 0.19036458497775385 atm
+Power-Thermal : 10.506328409731324 W
+###########
+I :3.5 A
+
+E : 2.923363185907339 V
+FC Efficiency : 0.39207873520256487
+FC Power : 10.703749471030022 W
+FC Voltage : 3.0582141345800062 V
+PH2 : 0.1966930293579127 atm
+PH2O : 0.24209517912152204 atm
+PO2 : 0.19035665213955555 atm
+Power-Thermal : 10.82125052896998 W
+###########
+I :3.6 A
+
+E : 2.923361646157063 V
+FC Efficiency : 0.3918671630816706
+FC Power : 11.003629939333312 W
+FC Voltage : 3.0565638720370307 V
+PH2 : 0.1966789789762983 atm
+PH2O : 0.2420778855261935 atm
+PO2 : 0.19034871930135727 atm
+Power-Thermal : 11.13637006066669 W
+###########
+I :3.7 A
+
+E : 2.923360106342616 V
+FC Efficiency : 0.3916603183622587
+FC Power : 11.303316787934786 W
+FC Voltage : 3.054950483225618 V
+PH2 : 0.1966649285946839 atm
+PH2O : 0.24206059193086493 atm
+PO2 : 0.19034078646315894 atm
+Power-Thermal : 11.451683212065214 W
+###########
+I :3.8 A
+
+E : 2.9233585664639925 V
+FC Efficiency : 0.3914579488697281
+FC Power : 11.602813604498742 W
+FC Voltage : 3.0533720011838796 V
+PH2 : 0.19665087821306954 atm
+PH2O : 0.2420432983355364 atm
+PO2 : 0.19033285362496066 atm
+Power-Thermal : 11.767186395501259 W
+###########
+I :3.9 A
+
+E : 2.9233570265211877 V
+FC Efficiency : 0.3912598220840501
+FC Power : 11.902123787796803 W
+FC Voltage : 3.051826612255591 V
+PH2 : 0.19663682783145514 atm
+PH2O : 0.24202600474020786 atm
+PO2 : 0.19032492078676233 atm
+Power-Thermal : 12.082876212203196 W
+###########
+I :4.0 A
+
+E : 2.9233554865141964 V
+FC Efficiency : 0.3910657231488705
+FC Power : 12.201250562244761 W
+FC Voltage : 3.0503126405611902 V
+PH2 : 0.19662277744984075 atm
+PH2O : 0.24200871114487932 atm
+PO2 : 0.19031698794856405 atm
+Power-Thermal : 12.39874943775524 W
+###########
+I :4.1 A
+
+E : 2.9233539464430125 V
+FC Efficiency : 0.3908754531264826
+FC Power : 12.500196990984913 W
+FC Voltage : 3.048828534386564 V
+PH2 : 0.19660872706822638 atm
+PH2O : 0.24199141754955078 atm
+PO2 : 0.19030905511036572 atm
+Power-Thermal : 12.714803009015087 W
+###########
+I :4.2 A
+
+E : 2.9233524063076306 V
+FC Efficiency : 0.39068882746310907
+FC Power : 12.798965987691455 W
+FC Voltage : 3.047372854212251 V
+PH2 : 0.19659467668661199 atm
+PH2O : 0.24197412395422224 atm
+PO2 : 0.19030112227216744 atm
+Power-Thermal : 13.031034012308549 W
+###########
+I :4.3 A
+
+E : 2.923350866108046 V
+FC Efficiency : 0.3905056746347924
+FC Power : 13.097560327250937 W
+FC Voltage : 3.045944262151381 V
+PH2 : 0.1965806263049976 atm
+PH2O : 0.2419568303588937 atm
+PO2 : 0.1902931894339691 atm
+Power-Thermal : 13.347439672749063 W
+###########
+I :4.4 A
+
+E : 2.9233493258442533 V
+FC Efficiency : 0.3903258349489736
+FC Power : 13.395982655448776 W
+FC Voltage : 3.0445415126019943 V
+PH2 : 0.19656657592338317 atm
+PH2O : 0.2419395367635651 atm
+PO2 : 0.19028525659577084 atm
+Power-Thermal : 13.664017344551228 W
+###########
+I :4.5 A
+
+E : 2.9233477855162464 V
+FC Efficiency : 0.3901491594807609
+FC Power : 13.694235497774708 W
+FC Voltage : 3.043163443949935 V
+PH2 : 0.19655252554176877 atm
+PH2O : 0.24192224316823657 atm
+PO2 : 0.1902773237575725 atm
+Power-Thermal : 13.980764502225295 W
+###########
+I :4.6 A
+
+E : 2.923346245124021 V
+FC Efficiency : 0.3899755091261222
+FC Power : 13.992321267445265 W
+FC Voltage : 3.0418089711837535 V
+PH2 : 0.1965384751601544 atm
+PH2O : 0.24190494957290803 atm
+PO2 : 0.19026939091937423 atm
+Power-Thermal : 14.297678732554735 W
+###########
+I :4.7 A
+
+E : 2.9233447046675707 V
+FC Efficiency : 0.3898047537569099
+FC Power : 14.290242272728321 W
+FC Voltage : 3.0404770793038978 V
+PH2 : 0.19652442477854 atm
+PH2O : 0.2418876559775795 atm
+PO2 : 0.1902614580811759 atm
+Power-Thermal : 14.614757727271682 W
+###########
+I :4.8 A
+
+E : 2.9233431641468917 V
+FC Efficiency : 0.38963677146485104
+FC Power : 14.588000723644024 W
+FC Voltage : 3.0391668174258384 V
+PH2 : 0.19651037439692562 atm
+PH2O : 0.24187036238225096 atm
+PO2 : 0.19025352524297762 atm
+Power-Thermal : 14.931999276355977 W
+###########
+I :4.9 A
+
+E : 2.9233416235619765 V
+FC Efficiency : 0.3894714478834934
+FC Power : 14.885598738107118 W
+FC Voltage : 3.0378772934912486 V
+PH2 : 0.19649632401531125 atm
+PH2O : 0.24185306878692242 atm
+PO2 : 0.19024559240477928 atm
+Power-Thermal : 15.249401261892885 W
+###########
+I :5.0 A
+
+E : 2.923340082912821 V
+FC Efficiency : 0.3893086755786583
+FC Power : 15.183038347567674 W
+FC Voltage : 3.036607669513535 V
+PH2 : 0.19648227363369686 atm
+PH2O : 0.24183577519159385 atm
+PO2 : 0.190237659566581 atm
+Power-Thermal : 15.566961652432328 W
+###########
+I :5.1 A
+
+E : 2.9233385421994202 V
+FC Efficiency : 0.38914835349925586
+FC Power : 15.480321502200397 W
+FC Voltage : 3.0353571572941958 V
+PH2 : 0.19646822325208246 atm
+PH2O : 0.24181848159626532 atm
+PO2 : 0.19022972672838268 atm
+Power-Thermal : 15.884678497799602 W
+###########
+I :5.2 A
+
+E : 2.9233370014217677 V
+FC Efficiency : 0.3889903864814294
+FC Power : 15.777450075686778 W
+FC Voltage : 3.0341250145551495 V
+PH2 : 0.1964541728704681 atm
+PH2O : 0.24180118800093678 atm
+PO2 : 0.19022179389018437 atm
+Power-Thermal : 16.202549924313224 W
+###########
+I :5.3 A
+
+E : 2.923335460579859 V
+FC Efficiency : 0.38883468479993466
+FC Power : 16.0744258696293 W
+FC Voltage : 3.032910541439491 V
+PH2 : 0.1964401224888537 atm
+PH2O : 0.24178389440560824 atm
+PO2 : 0.1902138610519861 atm
+Power-Thermal : 16.5205741303707 W
+###########
+I :5.4 A
+
+E : 2.923333919673688 V
+FC Efficiency : 0.3886811637614524
+FC Power : 16.371250617632377 W
+FC Voltage : 3.031713077339329 V
+PH2 : 0.1964260721072393 atm
+PH2O : 0.2417666008102797 atm
+PO2 : 0.19020592821378776 atm
+Power-Thermal : 16.838749382367627 W
+###########
+I :5.5 A
+
+E : 2.92333237870325 V
+FC Efficiency : 0.38852974333521934
+FC Power : 16.66792598908091 W
+FC Voltage : 3.030531998014711 V
+PH2 : 0.1964120217256249 atm
+PH2O : 0.24174930721495116 atm
+PO2 : 0.19019799537558948 atm
+Power-Thermal : 17.15707401091909 W
+###########
+I :5.6 A
+
+E : 2.923330837668539 V
+FC Efficiency : 0.3883803478169407
+FC Power : 16.96445359264397 W
+FC Voltage : 3.0293667129721378 V
+PH2 : 0.19639797134401055 atm
+PH2O : 0.24173201361962263 atm
+PO2 : 0.19019006253739115 atm
+Power-Thermal : 17.475546407356028 W
+###########
+I :5.7 A
+
+E : 2.9233292965695505 V
+FC Efficiency : 0.3882329055224501
+FC Power : 17.26083497952813 W
+FC Voltage : 3.028216663075111 V
+PH2 : 0.19638392096239615 atm
+PH2O : 0.2417147200242941 atm
+PO2 : 0.19018212969919288 atm
+Power-Thermal : 17.79416502047187 W
+###########
+I :5.8 A
+
+E : 2.9233277554062784 V
+FC Efficiency : 0.3880873485080118
+FC Power : 17.557071646502454 W
+FC Voltage : 3.0270813183624923 V
+PH2 : 0.19636987058078176 atm
+PH2O : 0.24169742642896555 atm
+PO2 : 0.19017419686099454 atm
+Power-Thermal : 18.112928353497548 W
+###########
+I :5.9 A
+
+E : 2.923326214178718 V
+FC Efficiency : 0.3879436123145331
+FC Power : 17.853165038714817 W
+FC Voltage : 3.0259601760533585 V
+PH2 : 0.1963558201991674 atm
+PH2O : 0.24168013283363698 atm
+PO2 : 0.19016626402279627 atm
+Power-Thermal : 18.431834961285187 W
+###########
+I :6.0 A
+
+E : 2.9233246728868627 V
+FC Efficiency : 0.387801635733273
+FC Power : 18.149116552317178 W
+FC Voltage : 3.0248527587195295 V
+PH2 : 0.196341769817553 atm
+PH2O : 0.24166283923830845 atm
+PO2 : 0.19015833118459793 atm
+Power-Thermal : 18.750883447682824 W
+###########
+I :6.1 A
+
+E : 2.923323131530709 V
+FC Efficiency : 0.3876613605909187
+FC Power : 18.444927536915916 W
+FC Voltage : 3.0237586126091665 V
+PH2 : 0.19632771943593857 atm
+PH2O : 0.24164554564297988 atm
+PO2 : 0.19015039834639966 atm
+Power-Thermal : 19.070072463084085 W
+###########
+I :6.2 A
+
+E : 2.92332159011025 V
+FC Efficiency : 0.3875227315521362
+FC Power : 18.74059929786131 W
+FC Voltage : 3.0226773061066625 V
+PH2 : 0.19631366905432418 atm
+PH2O : 0.24162825204765134 atm
+PO2 : 0.19014246550820132 atm
+Power-Thermal : 19.389400702138694 W
+###########
+I :6.3 A
+
+E : 2.923320048625481 V
+FC Efficiency : 0.3873856959379197
+FC Power : 19.036133098389374 W
+FC Voltage : 3.021608428315774 V
+PH2 : 0.19629961867270979 atm
+PH2O : 0.24161095845232278 atm
+PO2 : 0.19013453267000305 atm
+Power-Thermal : 19.708866901610627 W
+###########
+I :6.4 A
+
+E : 2.9233185070763956 V
+FC Efficiency : 0.3872502035582463
+FC Power : 19.331530161627654 W
+FC Voltage : 3.020551587754321 V
+PH2 : 0.19628556829109542 atm
+PH2O : 0.24159366485699424 atm
+PO2 : 0.19012659983180472 atm
+Power-Thermal : 20.02846983837235 W
+###########
+I :6.5 A
+
+E : 2.9233169654629902 V
+FC Efficiency : 0.3871162065577041
+FC Power : 19.6267916724756 W
+FC Voltage : 3.0195064111500924 V
+PH2 : 0.19627151790948102 atm
+PH2O : 0.2415763712616657 atm
+PO2 : 0.19011866699360644 atm
+Power-Thermal : 20.3482083275244 W
+###########
+I :6.6 A
+
+E : 2.923315423785258 V
+FC Efficiency : 0.3869836592729067
+FC Power : 19.921918779369236 W
+FC Voltage : 3.0184725423286722 V
+PH2 : 0.19625746752786663 atm
+PH2O : 0.24155907766633716 atm
+PO2 : 0.1901107341554081 atm
+Power-Thermal : 20.668081220630764 W
+###########
+I :6.7 A
+
+E : 2.9233138820431948 V
+FC Efficiency : 0.3868525181006288
+FC Power : 20.216912595938865 W
+FC Voltage : 3.017449641184905 V
+PH2 : 0.19624341714625226 atm
+PH2O : 0.24154178407100863 atm
+PO2 : 0.19010280131720983 atm
+Power-Thermal : 20.988087404061137 W
+###########
+I :6.8 A
+
+E : 2.9233123402367944 V
+FC Efficiency : 0.3867227413757113
+FC Power : 20.51177420256773 W
+FC Voltage : 3.0164373827305484 V
+PH2 : 0.19622936676463787 atm
+PH2O : 0.2415244904756801 atm
+PO2 : 0.19009486847901153 atm
+Power-Thermal : 21.30822579743227 W
+###########
+I :6.9 A
+
+E : 2.9233107983660513 V
+FC Efficiency : 0.3865942892578791
+FC Power : 20.806504647859054 W
+FC Voltage : 3.015435456211457 V
+PH2 : 0.19621531638302347 atm
+PH2O : 0.24150719688035155 atm
+PO2 : 0.19008693564081322 atm
+Power-Thermal : 21.62849535214095 W
+###########
+I :7.0 A
+
+E : 2.9233092564309606 V
+FC Efficiency : 0.38646712362670244
+FC Power : 21.101104950017955 W
+FC Voltage : 3.014443564288279 V
+PH2 : 0.1962012660014091 atm
+PH2O : 0.241489903285023 atm
+PO2 : 0.19007900280261492 atm
+Power-Thermal : 21.94889504998205 W
+###########
+I :7.1 A
+
+E : 2.923307714431517 V
+FC Efficiency : 0.38634120798400895
+FC Power : 21.395576098154415 W
+FC Voltage : 3.01346142227527 V
+PH2 : 0.1961872156197947 atm
+PH2O : 0.24147260968969447 atm
+PO2 : 0.19007106996441658 atm
+Power-Thermal : 22.269423901845585 W
+###########
+I :7.2 A
+
+E : 2.9233061723677145 V
+FC Efficiency : 0.3862165073631198
+FC Power : 21.68991905351281 W
+FC Voltage : 3.0124887574323345 V
+PH2 : 0.19617316523818032 atm
+PH2O : 0.2414553160943659 atm
+PO2 : 0.1900631371262183 atm
+Power-Thermal : 22.590080946487195 W
+###########
+I :7.3 A
+
+E : 2.9233046302395485 V
+FC Efficiency : 0.38609298824434696
+FC Power : 21.984134750633118 W
+FC Voltage : 3.0115253083059064 V
+PH2 : 0.19615911485656592 atm
+PH2O : 0.24143802249903737 atm
+PO2 : 0.19005520428801997 atm
+Power-Thermal : 22.910865249366886 W
+###########
+I :7.4 A
+
+E : 2.923303088047013 V
+FC Efficiency : 0.3859706184762392
+FC Power : 22.278224098448533 W
+FC Voltage : 3.0105708241146663 V
+PH2 : 0.19614506447495156 atm
+PH2O : 0.24142072890370883 atm
+PO2 : 0.1900472714498217 atm
+Power-Thermal : 23.231775901551472 W
+###########
+I :7.5 A
+
+E : 2.923301545790103 V
+FC Efficiency : 0.3858493672021141
+FC Power : 22.572187981323676 W
+FC Voltage : 3.00962506417649 V
+PH2 : 0.19613101409333716 atm
+PH2O : 0.2414034353083803 atm
+PO2 : 0.19003933861162337 atm
+Power-Thermal : 23.552812018676327 W
+###########
+I :7.6 A
+
+E : 2.923300003468813 V
+FC Efficiency : 0.3857292047914553
+FC Power : 22.86602726003747 W
+FC Voltage : 3.0086877973733515 V
+PH2 : 0.19611696371172277 atm
+PH2O : 0.24138614171305176 atm
+PO2 : 0.1900314057734251 atm
+Power-Thermal : 23.87397273996253 W
+###########
+I :7.7 A
+
+E : 2.9232984610831374 V
+FC Efficiency : 0.3856101027757952
+FC Power : 23.159742772714264 W
+FC Voltage : 3.007758801651203 V
+PH2 : 0.1961029133301084 atm
+PH2O : 0.24136884811772322 atm
+PO2 : 0.19002347293522676 atm
+Power-Thermal : 24.19525722728574 W
+###########
+I :7.8 A
+
+E : 2.9232969186330715 V
+FC Efficiency : 0.3854920337887341
+FC Power : 23.453335335706583 W
+FC Voltage : 3.0068378635521262 V
+PH2 : 0.19608886294849398 atm
+PH2O : 0.24135155452239462 atm
+PO2 : 0.19001554009702848 atm
+Power-Thermal : 24.51666466429342 W
+###########
+I :7.9 A
+
+E : 2.923295376118609 V
+FC Efficiency : 0.38537497150977895
+FC Power : 23.74680574443258 W
+FC Voltage : 3.005924777776276 V
+PH2 : 0.19607481256687959 atm
+PH2O : 0.24133426092706609 atm
+PO2 : 0.19000760725883015 atm
+Power-Thermal : 24.838194255567423 W
+###########
+I :8.0 A
+
+E : 2.923293833539746 V
+FC Efficiency : 0.3852588906117168
+FC Power : 24.040154774171132 W
+FC Voltage : 3.0050193467713915 V
+PH2 : 0.1960607621852652 atm
+PH2O : 0.24131696733173755 atm
+PO2 : 0.18999967442063187 atm
+Power-Thermal : 25.15984522582887 W
+###########
+I :8.1 A
+
+E : 2.923292290896475 V
+FC Efficiency : 0.38514376671125505
+FC Power : 24.33338318081709 W
+FC Voltage : 3.0041213803477893 V
+PH2 : 0.1960467118036508 atm
+PH2O : 0.241299673736409 atm
+PO2 : 0.18999174158243354 atm
+Power-Thermal : 25.481616819182907 W
+###########
+I :8.2 A
+
+E : 2.923290748188792 V
+FC Efficiency : 0.38502957632269164
+FC Power : 24.626491701599356 W
+FC Voltage : 3.003230695316995 V
+PH2 : 0.19603266142203643 atm
+PH2O : 0.24128238014108047 atm
+PO2 : 0.18998380874423526 atm
+Power-Thermal : 25.803508298400644 W
+###########
+I :8.3 A
+
+E : 2.9232892054166912 V
+FC Efficiency : 0.3849162968143928
+FC Power : 24.919481055763796 W
+FC Voltage : 3.0023471151522645 V
+PH2 : 0.19601861104042204 atm
+PH2O : 0.24126508654575193 atm
+PO2 : 0.18997587590603693 atm
+Power-Thermal : 26.12551894423621 W
+###########
+I :8.4 A
+
+E : 2.9232876625801687 V
+FC Efficiency : 0.3848039063678769
+FC Power : 25.212351945223297 W
+FC Voltage : 3.00147046966944 V
+PH2 : 0.19600456065880764 atm
+PH2O : 0.2412477929504234 atm
+PO2 : 0.18996794306783865 atm
+Power-Thermal : 26.447648054776707 W
+###########
+I :8.5 A
+
+E : 2.9232861196792164 V
+FC Efficiency : 0.38469238393931926
+FC Power : 25.50510505517687 W
+FC Voltage : 3.0006005947266905 V
+PH2 : 0.19599051027719328 atm
+PH2O : 0.24123049935509483 atm
+PO2 : 0.18996001022964035 atm
+Power-Thermal : 26.769894944823132 W
+###########
+I :8.6 A
+
+E : 2.923284576713831 V
+FC Efficiency : 0.3845817092233099
+FC Power : 25.79774105469963 W
+FC Voltage : 2.9997373319418177 V
+PH2 : 0.19597645989557888 atm
+PH2O : 0.2412132057597663 atm
+PO2 : 0.18995207739144204 atm
+Power-Thermal : 27.09225894530037 W
+###########
+I :8.7 A
+
+E : 2.923283033684006 V
+FC Efficiency : 0.38447186261870425
+FC Power : 26.090260597305267 W
+FC Voltage : 2.998880528425893 V
+PH2 : 0.1959624095139645 atm
+PH2O : 0.24119591216443775 atm
+PO2 : 0.18994414455324374 atm
+Power-Thermal : 27.41473940269473 W
+###########
+I :8.8 A
+
+E : 2.923281490589737 V
+FC Efficiency : 0.38436282519642684
+FC Power : 26.382664321482743 W
+FC Voltage : 2.9980300365321297 V
+PH2 : 0.19594835913235012 atm
+PH2O : 0.24117861856910922 atm
+PO2 : 0.1899362117150454 atm
+Power-Thermal : 27.737335678517265 W
+###########
+I :8.9 A
+
+E : 2.923279947431018 V
+FC Efficiency : 0.38425457866909357
+FC Power : 26.67495285120848 W
+FC Voltage : 2.99718571361893 V
+PH2 : 0.19593430875073573 atm
+PH2O : 0.24116132497378068 atm
+PO2 : 0.18992827887684713 atm
+Power-Thermal : 28.060047148791526 W
+###########
+I :9.0 A
+
+E : 2.923278404207843 V
+FC Efficiency : 0.38414710536233104
+FC Power : 26.967126796435643 W
+FC Voltage : 2.9963474218261825 V
+PH2 : 0.19592025836912133 atm
+PH2O : 0.24114403137845214 atm
+PO2 : 0.1899203460386488 atm
+Power-Thermal : 28.382873203564362 W
+###########
+I :9.1 A
+
+E : 2.923276860920208 V
+FC Efficiency : 0.3840403881876814
+FC Power : 27.259186753561625 W
+FC Voltage : 2.995515027863915 V
+PH2 : 0.19590620798750694 atm
+PH2O : 0.2411267377831236 atm
+PO2 : 0.18991241320045052 atm
+Power-Thermal : 28.705813246438378 W
+###########
+I :9.2 A
+
+E : 2.9232753175681063 V
+FC Efficiency : 0.3839344106169859
+FC Power : 27.551133305874906 W
+FC Voltage : 2.99468840281249 V
+PH2 : 0.19589215760589257 atm
+PH2O : 0.24110944418779506 atm
+PO2 : 0.1899044803622522 atm
+Power-Thermal : 29.028866694125092 W
+###########
+I :9.3 A
+
+E : 2.923273774151534 V
+FC Efficiency : 0.3838291566581563
+FC Power : 27.842967023982663 W
+FC Voltage : 2.9938674219336194 V
+PH2 : 0.19587810722427818 atm
+PH2O : 0.24109215059246653 atm
+PO2 : 0.1898965475240539 atm
+Power-Thermal : 29.352032976017345 W
+###########
+I :9.4 A
+
+E : 2.9232722306704844 V
+FC Efficiency : 0.38372461083223885
+FC Power : 28.134688466219753 W
+FC Voltage : 2.993051964491463 V
+PH2 : 0.19586405684266378 atm
+PH2O : 0.241074856997138 atm
+PO2 : 0.18988861468585558 atm
+Power-Thermal : 29.675311533780253 W
+###########
+I :9.5 A
+
+E : 2.9232706871249525 V
+FC Efficiency : 0.3836207581516937
+FC Power : 28.426298179040508 W
+FC Voltage : 2.9922419135832112 V
+PH2 : 0.19585000646104941 atm
+PH2O : 0.24105756340180942 atm
+PO2 : 0.1898806818476573 atm
+Power-Thermal : 29.998701820959496 W
+###########
+I :9.6 A
+
+E : 2.923269143514933 V
+FC Efficiency : 0.3835175840998117
+FC Power : 28.7177966973939 W
+FC Voltage : 2.9914371559785313 V
+PH2 : 0.195835956079435 atm
+PH2O : 0.24104026980648086 atm
+PO2 : 0.18987274900945897 atm
+Power-Thermal : 30.322203302606102 W
+###########
+I :9.7 A
+
+E : 2.9232675998404205 V
+FC Efficiency : 0.3834150746111962
+FC Power : 29.009184545083105 W
+FC Voltage : 2.9906375819673308 V
+PH2 : 0.1958219056978206 atm
+PH2O : 0.24102297621115232 atm
+PO2 : 0.1898648161712607 atm
+Power-Thermal : 30.645815454916892 W
+###########
+I :9.8 A
+
+E : 2.92326605610141 V
+FC Efficiency : 0.38331321605324786
+FC Power : 29.30046223511027 W
+FC Voltage : 2.9898430852153335 V
+PH2 : 0.1958078553162062 atm
+PH2O : 0.24100568261582375 atm
+PO2 : 0.18985688333306236 atm
+Power-Thermal : 30.969537764889736 W
+###########
+I :9.9 A
+
+E : 2.9232645122978957 V
+FC Efficiency : 0.3832119952085875
+FC Power : 29.591630270007133 W
+FC Voltage : 2.989053562626983 V
+PH2 : 0.1957938049345918 atm
+PH2O : 0.24098838902049521 atm
+PO2 : 0.18984895049486408 atm
+Power-Thermal : 31.29336972999287 W
+###########
+I :10.0 A
+
+E : 2.9232629684298717 V
+FC Efficiency : 0.3831113992583637
+FC Power : 29.88268914215237 W
+FC Voltage : 2.988268914215237 V
+PH2 : 0.19577975455297744 atm
+PH2O : 0.24097109542516668 atm
+PO2 : 0.18984101765666575 atm
+Power-Thermal : 31.617310857847635 W
+###########
+I :10.1 A
+
+E : 2.9232614244973334 V
+FC Efficiency : 0.38301141576639003
+FC Power : 30.17363933407621 W
+FC Voltage : 2.9874890429778427 V
+PH2 : 0.19576570417136305 atm
+PH2O : 0.24095380182983814 atm
+PO2 : 0.18983308481846747 atm
+Power-Thermal : 31.941360665923792 W
+###########
+I :10.2 A
+
+E : 2.923259880500275 V
+FC Efficiency : 0.3829120326640644
+FC Power : 30.46448131875296 W
+FC Voltage : 2.986713854779702 V
+PH2 : 0.19575165378974865 atm
+PH2O : 0.2409365082345096 atm
+PO2 : 0.18982515198026917 atm
+Power-Thermal : 32.26551868124704 W
+###########
+I :10.3 A
+
+E : 2.9232583364386917 V
+FC Efficiency : 0.38281323823602287
+FC Power : 30.755215559882082 W
+FC Voltage : 2.9859432582409786 V
+PH2 : 0.1957376034081343 atm
+PH2O : 0.24091921463918106 atm
+PO2 : 0.18981721914207086 atm
+Power-Thermal : 32.589784440117924 W
+###########
+I :10.4 A
+
+E : 2.9232567923125776 V
+FC Efficiency : 0.3827150211064885
+FC Power : 31.04584251215835 W
+FC Voltage : 2.9851771646306107 V
+PH2 : 0.1957235530265199 atm
+PH2O : 0.24090192104385252 atm
+PO2 : 0.18980928630387256 atm
+Power-Thermal : 32.914157487841656 W
+###########
+I :10.5 A
+
+E : 2.9232552481219267 V
+FC Efficiency : 0.38261737022627157
+FC Power : 31.336362621531645 W
+FC Voltage : 2.9844154877649185 V
+PH2 : 0.1957095026449055 atm
+PH2O : 0.24088462744852399 atm
+PO2 : 0.18980135346567423 atm
+Power-Thermal : 33.23863737846836 W
+###########
+I :10.6 A
+
+E : 2.9232537038667346 V
+FC Efficiency : 0.38252027486038687
+FC Power : 31.626776325456785 W
+FC Voltage : 2.9836581439110175 V
+PH2 : 0.19569545226329113 atm
+PH2O : 0.24086733385319545 atm
+PO2 : 0.18979342062747595 atm
+Power-Thermal : 33.56322367454322 W
+###########
+I :10.7 A
+
+E : 2.923252159546996 V
+FC Efficiency : 0.38242372457625223
+FC Power : 31.91708405313401 W
+FC Voltage : 2.9829050516947673 V
+PH2 : 0.19568140188167674 atm
+PH2O : 0.2408500402578669 atm
+PO2 : 0.18978548778927762 atm
+Power-Thermal : 33.887915946865995 W
+###########
+I :10.8 A
+
+E : 2.9232506151627042 V
+FC Efficiency : 0.3823277092324354
+FC Power : 32.20728622574037 W
+FC Voltage : 2.982156132012997 V
+PH2 : 0.19566735150006234 atm
+PH2O : 0.24083274666253834 atm
+PO2 : 0.18977755495107934 atm
+Power-Thermal : 34.21271377425964 W
+###########
+I :10.9 A
+
+E : 2.9232490707138554 V
+FC Efficiency : 0.38223221896792126
+FC Power : 32.49738325665267 W
+FC Voltage : 2.9814113079497857 V
+PH2 : 0.19565330111844795 atm
+PH2O : 0.2408154530672098 atm
+PO2 : 0.189769622112881 atm
+Power-Thermal : 34.53761674334734 W
+###########
+I :11.0 A
+
+E : 2.923247526200443 V
+FC Efficiency : 0.3821372441918661
+FC Power : 32.787375551662116 W
+FC Voltage : 2.980670504696556 V
+PH2 : 0.19563925073683358 atm
+PH2O : 0.24079815947188127 atm
+PO2 : 0.18976168927468273 atm
+Power-Thermal : 34.86262444833789 W
+###########
+I :11.1 A
+
+E : 2.9232459816224625 V
+FC Efficiency : 0.3820427755738191
+FC Power : 33.07726350918126 W
+FC Voltage : 2.979933649475789 V
+PH2 : 0.1956252003552192 atm
+PH2O : 0.24078086587655273 atm
+PO2 : 0.1897537564364844 atm
+Power-Thermal : 35.18773649081874 W
+###########
+I :11.2 A
+
+E : 2.9232444369799078 V
+FC Efficiency : 0.3819488040343792
+FC Power : 33.367047520443364 W
+FC Voltage : 2.9792006714681576 V
+PH2 : 0.1956111499736048 atm
+PH2O : 0.2407635722812242 atm
+PO2 : 0.18974582359828612 atm
+Power-Thermal : 35.51295247955664 W
+###########
+I :11.3 A
+
+E : 2.923242892272774 V
+FC Efficiency : 0.3818553207362695
+FC Power : 33.6567279696948 W
+FC Voltage : 2.978471501742902 V
+PH2 : 0.19559709959199037 atm
+PH2O : 0.2407462786858956 atm
+PO2 : 0.1897378907600878 atm
+Power-Thermal : 35.83827203030521 W
+###########
+I :11.4 A
+
+E : 2.9232413475010555 V
+FC Efficiency : 0.38176231707580344
+FC Power : 33.946305234380446 W
+FC Voltage : 2.977746073191267 V
+PH2 : 0.195583049210376 atm
+PH2O : 0.24072898509056706 atm
+PO2 : 0.1897299579218895 atm
+Power-Thermal : 36.16369476561956 W
+###########
+I :11.5 A
+
+E : 2.923239802664747 V
+FC Efficiency : 0.3816697846747245
+FC Power : 34.23577968532279 W
+FC Voltage : 2.977024320462851 V
+PH2 : 0.1955689988287616 atm
+PH2O : 0.24071169149523852 atm
+PO2 : 0.18972202508369118 atm
+Power-Thermal : 36.48922031467722 W
+###########
+I :11.6 A
+
+E : 2.9232382577638423 V
+FC Efficiency : 0.3815777153723984
+FC Power : 34.52515168689461 W
+FC Voltage : 2.9763061799047077 V
+PH2 : 0.19555494844714721 atm
+PH2O : 0.24069439789990998 atm
+PO2 : 0.1897140922454929 atm
+Power-Thermal : 36.814848313105394 W
+###########
+I :11.7 A
+
+E : 2.923236712798337 V
+FC Efficiency : 0.3814861012183416
+FC Power : 34.814421597185856 W
+FC Voltage : 2.9755915895030647 V
+PH2 : 0.19554089806553282 atm
+PH2O : 0.24067710430458145 atm
+PO2 : 0.1897061594072946 atm
+Power-Thermal : 37.14057840281414 W
+###########
+I :11.8 A
+
+E : 2.9232351677682256 V
+FC Efficiency : 0.38139493446506634
+FC Power : 35.10358976816471 W
+FC Voltage : 2.9748804888275173 V
+PH2 : 0.19552684768391845 atm
+PH2O : 0.2406598107092529 atm
+PO2 : 0.1896982265690963 atm
+Power-Thermal : 37.466410231835305 W
+###########
+I :11.9 A
+
+E : 2.9232336226735023 V
+FC Efficiency : 0.3813042075612283
+FC Power : 35.39265654583322 W
+FC Voltage : 2.974172818977581 V
+PH2 : 0.19551279730230406 atm
+PH2O : 0.24064251711392437 atm
+PO2 : 0.189690293730898 atm
+Power-Thermal : 37.79234345416679 W
+###########
+I :12.0 A
+
+E : 2.923232077514162 V
+FC Efficiency : 0.3812139131450615
+FC Power : 35.68162227037776 W
+FC Voltage : 2.97346852253148 V
+PH2 : 0.19549874692068966 atm
+PH2O : 0.24062522351859583 atm
+PO2 : 0.1896823608926997 atm
+Power-Thermal : 38.118377729622246 W
+###########
+I :12.1 A
+
+E : 2.9232305322901992 V
+FC Efficiency : 0.38112404403808453
+FC Power : 35.97048727631442 W
+FC Voltage : 2.9727675434970595 V
+PH2 : 0.1954846965390753 atm
+PH2O : 0.24060792992326727 atm
+PO2 : 0.18967442805450138 atm
+Power-Thermal : 38.444512723685584 W
+###########
+I :12.2 A
+
+E : 2.9232289870016084 V
+FC Efficiency : 0.38103459323906635
+FC Power : 36.25925189262955 W
+FC Voltage : 2.9720698272647175 V
+PH2 : 0.1954706461574609 atm
+PH2O : 0.24059063632793873 atm
+PO2 : 0.18966649521630305 atm
+Power-Thermal : 38.77074810737045 W
+###########
+I :12.3 A
+
+E : 2.923227441648384 V
+FC Efficiency : 0.3809455539182385
+FC Power : 36.5479164429158 W
+FC Voltage : 2.97137532056226 V
+PH2 : 0.1954565957758465 atm
+PH2O : 0.2405733427326102 atm
+PO2 : 0.18965856237810477 atm
+Power-Thermal : 39.09708355708421 W
+###########
+I :12.4 A
+
+E : 2.9232258962305213 V
+FC Efficiency : 0.3808569194117417
+FC Power : 36.83648124550366 W
+FC Voltage : 2.9706839714115856 V
+PH2 : 0.19544254539423214 atm
+PH2O : 0.24055604913728165 atm
+PO2 : 0.18965062953990644 atm
+Power-Thermal : 39.42351875449634 W
+###########
+I :12.5 A
+
+E : 2.923224350748014 V
+FC Efficiency : 0.38076868321629476
+FC Power : 37.12494661358875 W
+FC Voltage : 2.9699957290870995 V
+PH2 : 0.19542849501261775 atm
+PH2O : 0.24053875554195311 atm
+PO2 : 0.18964269670170816 atm
+Power-Thermal : 39.75005338641126 W
+###########
+I :12.6 A
+
+E : 2.9232228052008575 V
+FC Efficiency : 0.3806808389840772
+FC Power : 37.41331285535511 W
+FC Voltage : 2.9693105440758023 V
+PH2 : 0.19541444463100335 atm
+PH2O : 0.24052146194662458 atm
+PO2 : 0.18963476386350983 atm
+Power-Thermal : 40.07668714464489 W
+###########
+I :12.7 A
+
+E : 2.9232212595890457 V
+FC Efficiency : 0.3805933805178122
+FC Power : 37.70158027409448 W
+FC Voltage : 2.9686283680389356 V
+PH2 : 0.19540039424938896 atm
+PH2O : 0.24050416835129604 atm
+PO2 : 0.18962683102531155 atm
+Power-Thermal : 40.40341972590552 W
+###########
+I :12.8 A
+
+E : 2.923219713912574 V
+FC Efficiency : 0.3805063017660449
+FC Power : 37.98974916832193 W
+FC Voltage : 2.9679491537751503 V
+PH2 : 0.1953863438677746 atm
+PH2O : 0.2404868747559675 atm
+PO2 : 0.18961889818711322 atm
+Power-Thermal : 40.730250831678084 W
+###########
+I :12.9 A
+
+E : 2.9232181681714358 V
+FC Efficiency : 0.38041959681860193
+FC Power : 38.27781983188773 W
+FC Voltage : 2.9672728551850955 V
+PH2 : 0.1953722934861602 atm
+PH2O : 0.24046958116063896 atm
+PO2 : 0.18961096534891494 atm
+Power-Thermal : 41.057180168112275 W
+###########
+I :13.0 A
+
+E : 2.923216622365627 V
+FC Efficiency : 0.38033325990222827
+FC Power : 38.565792554085945 W
+FC Voltage : 2.9665994272373806 V
+PH2 : 0.19535824310454578 atm
+PH2O : 0.24045228756531037 atm
+PO2 : 0.1896030325107166 atm
+Power-Thermal : 41.38420744591406 W
+###########
+I :13.1 A
+
+E : 2.923215076495141 V
+FC Efficiency : 0.38024728537638947
+FC Power : 38.85366761975948 W
+FC Voltage : 2.9659288259358383 V
+PH2 : 0.19534419272293138 atm
+PH2O : 0.24043499396998183 atm
+PO2 : 0.18959509967251834 atm
+Power-Thermal : 41.71133238024052 W
+###########
+I :13.2 A
+
+E : 2.9232135305599733 V
+FC Efficiency : 0.38016166772923576
+FC Power : 39.141445309402116 W
+FC Voltage : 2.965261008288039 V
+PH2 : 0.19533014234131701 atm
+PH2O : 0.2404177003746533 atm
+PO2 : 0.18958716683432 atm
+Power-Thermal : 42.038554690597884 W
+###########
+I :13.3 A
+
+E : 2.923211984560118 V
+FC Efficiency : 0.3800764015737155
+FC Power : 39.42912589925725 W
+FC Voltage : 2.9645959322749813 V
+PH2 : 0.19531609195970262 atm
+PH2O : 0.24040040677932475 atm
+PO2 : 0.18957923399612173 atm
+Power-Thermal : 42.36587410074276 W
+###########
+I :13.4 A
+
+E : 2.9232104384955706 V
+FC Efficiency : 0.3799914816438375
+FC Power : 39.716709661413894 W
+FC Voltage : 2.9639335568219325 V
+PH2 : 0.19530204157808823 atm
+PH2O : 0.2403831131839962 atm
+PO2 : 0.18957130115792342 atm
+Power-Thermal : 42.69329033858611 W
+###########
+I :13.5 A
+
+E : 2.9232088923663238 V
+FC Efficiency : 0.37990690279106876
+FC Power : 40.004196863899544 W
+FC Voltage : 2.9632738417703366 V
+PH2 : 0.19528799119647383 atm
+PH2O : 0.24036581958866765 atm
+PO2 : 0.18956336831972512 atm
+Power-Thermal : 43.02080313610046 W
+###########
+I :13.6 A
+
+E : 2.923207346172374 V
+FC Efficiency : 0.3798226599808691
+FC Power : 40.2915877707706 W
+FC Voltage : 2.962616747850779 V
+PH2 : 0.19527394081485946 atm
+PH2O : 0.2403485259933391 atm
+PO2 : 0.1895554354815268 atm
+Power-Thermal : 43.3484122292294 W
+###########
+I :13.7 A
+
+E : 2.9232057999137147 V
+FC Efficiency : 0.37973874828934895
+FC Power : 40.57888264219983 W
+FC Voltage : 2.961962236656922 V
+PH2 : 0.19525989043324507 atm
+PH2O : 0.24033123239801057 atm
+PO2 : 0.1895475026433285 atm
+Power-Thermal : 43.67611735780017 W
+###########
+I :13.8 A
+
+E : 2.9232042535903413 V
+FC Efficiency : 0.3796551629000511
+FC Power : 40.8660817345615 W
+FC Voltage : 2.961310270620398 V
+PH2 : 0.19524584005163068 atm
+PH2O : 0.24031393880268204 atm
+PO2 : 0.1895395698051302 atm
+Power-Thermal : 44.003918265438514 W
+###########
+I :13.9 A
+
+E : 2.9232027072022477 V
+FC Efficiency : 0.37957189910084754
+FC Power : 41.1531853005139 W
+FC Voltage : 2.960660812986611 V
+PH2 : 0.1952317896700163 atm
+PH2O : 0.2402966452073535 atm
+PO2 : 0.18953163696693187 atm
+Power-Thermal : 44.33181469948611 W
+###########
+I :14.0 A
+
+E : 2.9232011607494286 V
+FC Efficiency : 0.37948895228094853
+FC Power : 41.440193589079584 W
+FC Voltage : 2.960013827791399 V
+PH2 : 0.19521773928840191 atm
+PH2O : 0.24027935161202496 atm
+PO2 : 0.1895237041287336 atm
+Power-Thermal : 44.65980641092042 W
+###########
+I :14.1 A
+
+E : 2.923199614231879 V
+FC Efficiency : 0.37940631792801666
+FC Power : 41.72710684572328 W
+FC Voltage : 2.9593692798385303 V
+PH2 : 0.19520368890678752 atm
+PH2O : 0.24026205801669642 atm
+PO2 : 0.18951577129053526 atm
+Power-Thermal : 44.987893154276726 W
+###########
+I :14.2 A
+
+E : 2.923198067649593 V
+FC Efficiency : 0.37932399162538427
+FC Power : 42.01392531242756 W
+FC Voltage : 2.9587271346779973 V
+PH2 : 0.19518963852517315 atm
+PH2O : 0.24024476442136788 atm
+PO2 : 0.18950783845233699 atm
+Power-Thermal : 45.31607468757244 W
+###########
+I :14.3 A
+
+E : 2.9231965210025654 V
+FC Efficiency : 0.37924196904936747
+FC Power : 42.30064922776645 W
+FC Voltage : 2.9580873585850664 V
+PH2 : 0.19517558814355876 atm
+PH2O : 0.24022747082603932 atm
+PO2 : 0.18949990561413865 atm
+Power-Thermal : 45.64435077223356 W
+###########
+I :14.4 A
+
+E : 2.923194974290791 V
+FC Efficiency : 0.3791602459666746
+FC Power : 42.58727882697689 W
+FC Voltage : 2.957449918540062 V
+PH2 : 0.19516153776194436 atm
+PH2O : 0.24021017723071078 atm
+PO2 : 0.18949197277594038 atm
+Power-Thermal : 45.97272117302312 W
+###########
+I :14.5 A
+
+E : 2.923193427514264 V
+FC Efficiency : 0.3790788182319038
+FC Power : 42.87381434202832 W
+FC Voltage : 2.9568147822088497 V
+PH2 : 0.19514748738032997 atm
+PH2O : 0.24019288363538224 atm
+PO2 : 0.18948403993774204 atm
+Power-Thermal : 46.301185657971686 W
+###########
+I :14.6 A
+
+E : 2.923191880672979 V
+FC Efficiency : 0.37899768178512666
+FC Power : 43.16025600169023 W
+FC Voltage : 2.9561819179239883 V
+PH2 : 0.1951334369987156 atm
+PH2O : 0.2401755900400537 atm
+PO2 : 0.18947610709954377 atm
+Power-Thermal : 46.62974399830978 W
+###########
+I :14.7 A
+
+E : 2.9231903337669305 V
+FC Efficiency : 0.37891683264955467
+FC Power : 43.446604031597936 W
+FC Voltage : 2.9555512946665266 V
+PH2 : 0.1951193866171012 atm
+PH2O : 0.24015829644472517 atm
+PO2 : 0.18946817426134543 atm
+Power-Thermal : 46.958395968402066 W
+###########
+I :14.8 A
+
+E : 2.9231887867961137 V
+FC Efficiency : 0.3788362669292844
+FC Power : 43.732858654316594 W
+FC Voltage : 2.9549228820484186 V
+PH2 : 0.1951053362354868 atm
+PH2O : 0.24014100284939657 atm
+PO2 : 0.18946024142314716 atm
+Power-Thermal : 47.28714134568341 W
+###########
+I :14.9 A
+
+E : 2.9231872397605225 V
+FC Efficiency : 0.3787559808071185
+FC Power : 44.01902008940331 W
+FC Voltage : 2.9542966502955244 V
+PH2 : 0.1950912858538724 atm
+PH2O : 0.24012370925406804 atm
+PO2 : 0.18945230858494883 atm
+Power-Thermal : 47.61597991059669 W
+###########
+I :15.0 A
+
+E : 2.9231856926601516 V
+FC Efficiency : 0.3786759705424602
+FC Power : 44.30508855346785 W
+FC Voltage : 2.95367257023119 V
+PH2 : 0.19507723547225803 atm
+PH2O : 0.2401064156587395 atm
+PO2 : 0.18944437574675055 atm
+Power-Thermal : 47.94491144653216 W
+###########
+I :15.1 A
+
+E : 2.9231841454949965 V
+FC Efficiency : 0.3785962324692775
+FC Power : 44.591064260231505 W
+FC Voltage : 2.9530506132603644 V
+PH2 : 0.19506318509064363 atm
+PH2O : 0.24008912206341096 atm
+PO2 : 0.18943644290855224 atm
+Power-Thermal : 48.273935739768504 W
+###########
+I :15.2 A
+
+E : 2.9231825982650506 V
+FC Efficiency : 0.37851676299413334
+FC Power : 44.87694742058445 W
+FC Voltage : 2.9524307513542403 V
+PH2 : 0.19504913470902924 atm
+PH2O : 0.24007182846808242 atm
+PO2 : 0.18942851007035394 atm
+Power-Thermal : 48.603052579415554 W
+###########
+I :15.3 A
+
+E : 2.9231810509703084 V
+FC Efficiency : 0.37843755859428313
+FC Power : 45.16273824264175 W
+FC Voltage : 2.9518129570354086 V
+PH2 : 0.19503508432741484 atm
+PH2O : 0.24005453487275388 atm
+PO2 : 0.18942057723215563 atm
+Power-Thermal : 48.932261757358255 W
+###########
+I :15.4 A
+
+E : 2.923179503610765 V
+FC Efficiency : 0.3783586158158311
+FC Power : 45.44843693179763 W
+FC Voltage : 2.9511972033634826 V
+PH2 : 0.19502103394580048 atm
+PH2O : 0.24003724127742534 atm
+PO2 : 0.18941264439395733 atm
+Power-Thermal : 49.26156306820238 W
+###########
+I :15.5 A
+
+E : 2.9231779561864153 V
+FC Efficiency : 0.3782799312719486
+FC Power : 45.734043690778584 W
+FC Voltage : 2.950583463921199 V
+PH2 : 0.19500698356418608 atm
+PH2O : 0.2400199476820968 atm
+PO2 : 0.18940471155575903 atm
+Power-Thermal : 49.59095630922142 W
+###########
+I :15.6 A
+
+E : 2.9231764086972536 V
+FC Efficiency : 0.3782015016411487
+FC Power : 46.01955871969498 W
+FC Voltage : 2.94997171280096 V
+PH2 : 0.1949929331825717 atm
+PH2O : 0.24000265408676824 atm
+PO2 : 0.1893967787175607 atm
+Power-Thermal : 49.92044128030503 W
+###########
+I :15.7 A
+
+E : 2.9231748611432735 V
+FC Efficiency : 0.3781233236656156
+FC Power : 46.30498221609128 W
+FC Voltage : 2.9493619245918015 V
+PH2 : 0.19497888280095732 atm
+PH2O : 0.2399853604914397 atm
+PO2 : 0.18938884587936242 atm
+Power-Thermal : 50.25001778390872 W
+###########
+I :15.8 A
+
+E : 2.9231733135244706 V
+FC Efficiency : 0.37804539414958827
+FC Power : 46.590314374995266 W
+FC Voltage : 2.948754074366789 V
+PH2 : 0.19496483241934293 atm
+PH2O : 0.23996806689611117 atm
+PO2 : 0.18938091304116408 atm
+Power-Thermal : 50.57968562500474 W
+###########
+I :15.9 A
+
+E : 2.9231717658408396 V
+FC Efficiency : 0.37796770995779433
+FC Power : 46.87555538896566 W
+FC Voltage : 2.948148137670796 V
+PH2 : 0.19495078203772853 atm
+PH2O : 0.23995077330078263 atm
+PO2 : 0.1893729802029658 atm
+Power-Thermal : 50.90944461103435 W
+###########
+I :16.0 A
+
+E : 2.9231702180923747 V
+FC Efficiency : 0.3778902680139322
+FC Power : 47.16070544813874 W
+FC Voltage : 2.9475440905086714 V
+PH2 : 0.19493673165611416 atm
+PH2O : 0.2399334797054541 atm
+PO2 : 0.18936504736476747 atm
+Power-Thermal : 51.23929455186126 W
+###########
+I :16.1 A
+
+E : 2.923168670279071 V
+FC Efficiency : 0.37781306529920256
+FC Power : 47.445764740273866 W
+FC Voltage : 2.94694190933378 V
+PH2 : 0.19492268127449977 atm
+PH2O : 0.23991618611012555 atm
+PO2 : 0.1893571145265692 atm
+Power-Thermal : 51.56923525972615 W
+###########
+I :16.2 A
+
+E : 2.923167122400922 V
+FC Efficiency : 0.377736098850883
+FC Power : 47.73073345079758 W
+FC Voltage : 2.946341571036888 V
+PH2 : 0.19490863089288538 atm
+PH2O : 0.239898892514797 atm
+PO2 : 0.18934918168837087 atm
+Power-Thermal : 51.89926654920242 W
+###########
+I :16.3 A
+
+E : 2.9231655744579226 V
+FC Efficiency : 0.37765936576094866
+FC Power : 48.01561176284702 W
+FC Voltage : 2.9457430529354 V
+PH2 : 0.19489458051127098 atm
+PH2O : 0.23988159891946848 atm
+PO2 : 0.1893412488501726 atm
+Power-Thermal : 52.22938823715299 W
+###########
+I :16.4 A
+
+E : 2.923164026450068 V
+FC Efficiency : 0.37758286317473366
+FC Power : 48.30039985731193 W
+FC Voltage : 2.945146332762923 V
+PH2 : 0.19488053012965662 atm
+PH2O : 0.23986430532413994 atm
+PO2 : 0.18933331601197426 atm
+Power-Thermal : 52.55960014268807 W
+###########
+I :16.5 A
+
+E : 2.9231624783773524 V
+FC Efficiency : 0.37750658828963307
+FC Power : 48.58509791287578 W
+FC Voltage : 2.9445513886591383 V
+PH2 : 0.1948664797480422 atm
+PH2O : 0.23984701172881134 atm
+PO2 : 0.18932538317377598 atm
+Power-Thermal : 52.88990208712422 W
+###########
+I :16.6 A
+
+E : 2.9231609302397703 V
+FC Efficiency : 0.37743053835384544
+FC Power : 48.869706106055915 W
+FC Voltage : 2.9439581991599946 V
+PH2 : 0.1948524293664278 atm
+PH2O : 0.2398297181334828 atm
+PO2 : 0.18931745033557767 atm
+Power-Thermal : 53.2202938939441 W
+###########
+I :16.7 A
+
+E : 2.9231593820373165 V
+FC Efficiency : 0.37735471066515186
+FC Power : 49.15422461124269 W
+FC Voltage : 2.943366743188185 V
+PH2 : 0.1948383789848134 atm
+PH2O : 0.23981242453815427 atm
+PO2 : 0.18930951749737937 atm
+Power-Thermal : 53.550775388757316 W
+###########
+I :16.8 A
+
+E : 2.923157833769985 V
+FC Efficiency : 0.37727910256973174
+FC Power : 49.438653600737645 W
+FC Voltage : 2.9427770000439075 V
+PH2 : 0.19482432860319904 atm
+PH2O : 0.23979513094282573 atm
+PO2 : 0.18930158465918107 atm
+Power-Thermal : 53.88134639926236 W
+###########
+I :16.9 A
+
+E : 2.923156285437771 V
+FC Efficiency : 0.3772037114610144
+FC Power : 49.72299324479091 W
+FC Voltage : 2.9421889493959124 V
+PH2 : 0.19481027822158464 atm
+PH2O : 0.23977783734749716 atm
+PO2 : 0.18929365182098276 atm
+Power-Thermal : 54.21200675520908 W
+###########
+I :17.0 A
+
+E : 2.923154737040668 V
+FC Efficiency : 0.3771285347785633
+FC Power : 50.00724371163749 W
+FC Voltage : 2.9416025712727936 V
+PH2 : 0.19479622783997025 atm
+PH2O : 0.23976054375216863 atm
+PO2 : 0.18928571898278446 atm
+Power-Thermal : 54.54275628836252 W
+###########
+I :17.1 A
+
+E : 2.923153188578672 V
+FC Efficiency : 0.37705357000699435
+FC Power : 50.291405167532915 W
+FC Voltage : 2.941017846054556 V
+PH2 : 0.19478217745835585 atm
+PH2O : 0.2397432501568401 atm
+PO2 : 0.18927778614458618 atm
+Power-Thermal : 54.8735948324671 W
+###########
+I :17.2 A
+
+E : 2.923151640051777 V
+FC Efficiency : 0.376978814674925
+FC Power : 50.57547777678794 W
+FC Voltage : 2.940434754464415 V
+PH2 : 0.1947681270767415 atm
+PH2O : 0.23972595656151155 atm
+PO2 : 0.18926985330638785 atm
+Power-Thermal : 55.20452222321207 W
+###########
+I :17.3 A
+
+E : 2.923150091459977 V
+FC Efficiency : 0.37690426635395313
+FC Power : 50.85946170180244 W
+FC Voltage : 2.9398532775608346 V
+PH2 : 0.1947540766951271 atm
+PH2O : 0.239708662966183 atm
+PO2 : 0.18926192046818957 atm
+Power-Thermal : 55.53553829819757 W
+###########
+I :17.4 A
+
+E : 2.9231485428032675 V
+FC Efficiency : 0.3768299226576674
+FC Power : 51.143357103098616 W
+FC Voltage : 2.939273396729806 V
+PH2 : 0.1947400263135127 atm
+PH2O : 0.23969136937085447 atm
+PO2 : 0.18925398762999124 atm
+Power-Thermal : 55.866642896901375 W
+###########
+I :17.5 A
+
+E : 2.923146994081643 V
+FC Efficiency : 0.3767557812406837
+FC Power : 51.42716413935333 W
+FC Voltage : 2.938695093677333 V
+PH2 : 0.19472597593189833 atm
+PH2O : 0.23967407577552594 atm
+PO2 : 0.1892460547917929 atm
+Power-Thermal : 56.19783586064668 W
+###########
+I :17.6 A
+
+E : 2.9231454452950967 V
+FC Efficiency : 0.3766818397977103
+FC Power : 51.71088296742968 W
+FC Voltage : 2.938118350422141 V
+PH2 : 0.19471192555028394 atm
+PH2O : 0.2396567821801974 atm
+PO2 : 0.18923812195359463 atm
+Power-Thermal : 56.52911703257033 W
+###########
+I :17.7 A
+
+E : 2.9231438964436247 V
+FC Efficiency : 0.3766080960626397
+FC Power : 51.99451374240803 W
+FC Voltage : 2.9375431492885893 V
+PH2 : 0.19469787516866954 atm
+PH2O : 0.23963948858486886 atm
+PO2 : 0.1892301891153963 atm
+Power-Thermal : 56.86048625759197 W
+###########
+I :17.8 A
+
+E : 2.923142347527221 V
+FC Efficiency : 0.3765345478076647
+FC Power : 52.27805661761617 W
+FC Voltage : 2.936969472899785 V
+PH2 : 0.19468382478705518 atm
+PH2O : 0.23962219498954032 atm
+PO2 : 0.18922225627719802 atm
+Power-Thermal : 57.19194338238383 W
+###########
+I :17.9 A
+
+E : 2.9231407985458797 V
+FC Efficiency : 0.37646119284242097
+FC Power : 52.56151174465881 W
+FC Voltage : 2.9363973041708835 V
+PH2 : 0.19466977440544078 atm
+PH2O : 0.23960490139421176 atm
+PO2 : 0.1892143234389997 atm
+Power-Thermal : 57.523488255341185 W
+###########
+I :18.0 A
+
+E : 2.923139249499596 V
+FC Efficiency : 0.37638802901315227
+FC Power : 52.84487927344658 W
+FC Voltage : 2.9358266263025876 V
+PH2 : 0.1946557240238264 atm
+PH2O : 0.23958760779888322 atm
+PO2 : 0.1892063906008014 atm
+Power-Thermal : 57.85512072655343 W
+###########
+I :18.1 A
+
+E : 2.923137700388364 V
+FC Efficiency : 0.376315054201899
+FC Power : 53.1281593522241 W
+FC Voltage : 2.935257422774812 V
+PH2 : 0.194641673642212 atm
+PH2O : 0.23957031420355468 atm
+PO2 : 0.18919845776260308 atm
+Power-Thermal : 58.18684064777591 W
+###########
+I :18.2 A
+
+E : 2.923136151212179 V
+FC Efficiency : 0.3762422663257099
+FC Power : 53.41135212759777 W
+FC Voltage : 2.934689677340537 V
+PH2 : 0.19462762326059757 atm
+PH2O : 0.23955302060822609 atm
+PO2 : 0.1891905249244048 atm
+Power-Thermal : 58.51864787240223 W
+###########
+I :18.3 A
+
+E : 2.923134601971035 V
+FC Efficiency : 0.3761696633358739
+FC Power : 53.694457744562655 W
+FC Voltage : 2.934123374019817 V
+PH2 : 0.1946135728789832 atm
+PH2O : 0.23953572701289755 atm
+PO2 : 0.1891825920862065 atm
+Power-Thermal : 58.85054225543736 W
+###########
+I :18.4 A
+
+E : 2.9231330526649257 V
+FC Efficiency : 0.3760972432171745
+FC Power : 53.97747634652888 W
+FC Voltage : 2.933558497093961 V
+PH2 : 0.1945995224973688 atm
+PH2O : 0.239518433417569 atm
+PO2 : 0.1891746592480082 atm
+Power-Thermal : 59.182523653471115 W
+###########
+I :18.5 A
+
+E : 2.923131503293847 V
+FC Efficiency : 0.37602500398716304
+FC Power : 54.260408075347634 W
+FC Voltage : 2.932995031099872 V
+PH2 : 0.19458547211575442 atm
+PH2O : 0.23950113982224047 atm
+PO2 : 0.1891667264098099 atm
+Power-Thermal : 59.51459192465237 W
+###########
+I :18.6 A
+
+E : 2.923129953857793 V
+FC Efficiency : 0.37595294369545257
+FC Power : 54.54325307133627 W
+FC Voltage : 2.93243296082453 V
+PH2 : 0.19457142173414005 atm
+PH2O : 0.23948384622691193 atm
+PO2 : 0.18915879357161158 atm
+Power-Thermal : 59.84674692866375 W
+###########
+I :18.7 A
+
+E : 2.9231284043567585 V
+FC Efficiency : 0.37588106042302966
+FC Power : 54.826011473303105 W
+FC Voltage : 2.9318722712996315 V
+PH2 : 0.19455737135252565 atm
+PH2O : 0.2394665526315834 atm
+PO2 : 0.18915086073341328 atm
+Power-Thermal : 60.1789885266969 W
+###########
+I :18.8 A
+
+E : 2.923126854790738 V
+FC Efficiency : 0.37580935228158563
+FC Power : 55.10868341857172 W
+FC Voltage : 2.931312947796368 V
+PH2 : 0.19454332097091126 atm
+PH2O : 0.23944925903625486 atm
+PO2 : 0.189142927895215 atm
+Power-Thermal : 60.51131658142829 W
+###########
+I :18.9 A
+
+E : 2.923125305159725 V
+FC Efficiency : 0.3757378174128644
+FC Power : 55.39126904300446 W
+FC Voltage : 2.930754975820342 V
+PH2 : 0.19452927058929687 atm
+PH2O : 0.23943196544092632 atm
+PO2 : 0.18913499505701667 atm
+Power-Thermal : 60.843730956995536 W
+###########
+I :19.0 A
+
+E : 2.923123755463716 V
+FC Efficiency : 0.37566645398802895
+FC Power : 55.673768481025895 W
+FC Voltage : 2.930198341106626 V
+PH2 : 0.1945152202076825 atm
+PH2O : 0.23941467184559778 atm
+PO2 : 0.1891270622188184 atm
+Power-Thermal : 61.17623151897411 W
+###########
+I :19.1 A
+
+E : 2.9231222057027035 V
+FC Efficiency : 0.37559526020704265
+FC Power : 55.95618186564522 W
+FC Voltage : 2.9296430296149327 V
+PH2 : 0.1945011698260681 atm
+PH2O : 0.23939737825026924 atm
+PO2 : 0.18911912938062006 atm
+Power-Thermal : 61.5088181343548 W
+###########
+I :19.2 A
+
+E : 2.923120655876683 V
+FC Efficiency : 0.3755242342980682
+FC Power : 56.2385093284787 W
+FC Voltage : 2.9290890275249324 V
+PH2 : 0.1944871194444537 atm
+PH2O : 0.23938008465494068 atm
+PO2 : 0.18911119654242173 atm
+Power-Thermal : 61.8414906715213 W
+###########
+I :19.3 A
+
+E : 2.9231191059856494 V
+FC Efficiency : 0.37545337451688193
+FC Power : 56.520750999771415 W
+FC Voltage : 2.9285363212316793 V
+PH2 : 0.19447306906283934 atm
+PH2O : 0.23936279105961214 atm
+PO2 : 0.18910326370422345 atm
+Power-Thermal : 62.1742490002286 W
+###########
+I :19.4 A
+
+E : 2.923117556029597 V
+FC Efficiency : 0.3753826791463024
+FC Power : 56.80290700841847 W
+FC Voltage : 2.9279848973411586 V
+PH2 : 0.19445901868122495 atm
+PH2O : 0.2393454974642836 atm
+PO2 : 0.18909533086602512 atm
+Power-Thermal : 62.50709299158152 W
+###########
+I :19.5 A
+
+E : 2.9231160060085197 V
+FC Efficiency : 0.3753121464956341
+FC Power : 57.084977481985945 W
+FC Voltage : 2.927434742665946 V
+PH2 : 0.19444496829961055 atm
+PH2O : 0.23932820386895506 atm
+PO2 : 0.18908739802782684 atm
+Power-Thermal : 62.84002251801406 W
+###########
+I :19.6 A
+
+E : 2.9231144559224127 V
+FC Efficiency : 0.37524177490012656
+FC Power : 57.36696254673136 W
+FC Voltage : 2.9268858442209873 V
+PH2 : 0.1944309179179962 atm
+PH2O : 0.23931091027362653 atm
+PO2 : 0.1890794651896285 atm
+Power-Thermal : 63.17303745326866 W
+###########
+I :19.7 A
+
+E : 2.9231129057712706 V
+FC Efficiency : 0.37517156272044533
+FC Power : 57.64886232762363 W
+FC Voltage : 2.9263381892194738 V
+PH2 : 0.1944168675363818 atm
+PH2O : 0.239293616678298 atm
+PO2 : 0.18907153235143023 atm
+Power-Thermal : 63.50613767237637 W
+###########
+I :19.8 A
+
+E : 2.9231113555550876 V
+FC Efficiency : 0.3751015083421572
+FC Power : 57.930676948362766 W
+FC Voltage : 2.9257917650688263 V
+PH2 : 0.1944028171547674 atm
+PH2O : 0.23927632308296945 atm
+PO2 : 0.18906359951323193 atm
+Power-Thermal : 63.83932305163725 W
+###########
+I :19.9 A
+
+E : 2.923109805273858 V
+FC Efficiency : 0.37503161017522896
+FC Power : 58.21240653139903 W
+FC Voltage : 2.925246559366786 V
+PH2 : 0.194388766773153 atm
+PH2O : 0.2392590294876409 atm
+PO2 : 0.18905566667503362 atm
+Power-Thermal : 64.17259346860097 W
+###########
+I :20.0 A
+
+E : 2.9231082549275773 V
+FC Efficiency : 0.3749618666535377
+FC Power : 58.49405119795189 W
+FC Voltage : 2.9247025598975944 V
+PH2 : 0.19437471639153858 atm
+PH2O : 0.23924173589231232 atm
+PO2 : 0.18904773383683532 atm
+Power-Thermal : 64.50594880204812 W
+###########
+I :20.1 A
+
+E : 2.9231067045162398 V
+FC Efficiency : 0.3748922762343941
+FC Power : 58.77561106802831 W
+FC Voltage : 2.924159754628274 V
+PH2 : 0.19436066600992422 atm
+PH2O : 0.23922444229698378 atm
+PO2 : 0.18903980099863701 atm
+Power-Thermal : 64.8393889319717 W
+###########
+I :20.2 A
+
+E : 2.923105154039839 V
+FC Efficiency : 0.374822837398077
+FC Power : 59.05708626044101 W
+FC Voltage : 2.9236181317050005 V
+PH2 : 0.19434661562830982 atm
+PH2O : 0.23920714870165524 atm
+PO2 : 0.1890318681604387 atm
+Power-Thermal : 65.172913739559 W
+###########
+I :20.3 A
+
+E : 2.9231036034983697 V
+FC Efficiency : 0.3747535486473795
+FC Power : 59.33847689282608 W
+FC Voltage : 2.9230776794495603 V
+PH2 : 0.19433256524669543 atm
+PH2O : 0.2391898551063267 atm
+PO2 : 0.1890239353222404 atm
+Power-Thermal : 65.50652310717393 W
+###########
+I :20.4 A
+
+E : 2.923102052891828 V
+FC Efficiency : 0.37468440850716744
+FC Power : 59.619783081660486 W
+FC Voltage : 2.9225383863559062 V
+PH2 : 0.19431851486508106 atm
+PH2O : 0.23917256151099817 atm
+PO2 : 0.1890160024840421 atm
+Power-Thermal : 65.84021691833952 W
+###########
+I :20.5 A
+
+E : 2.9231005022202066 V
+FC Efficiency : 0.37461541552394634
+FC Power : 59.901004942279016 W
+FC Voltage : 2.9220002410867814 V
+PH2 : 0.19430446448346667 atm
+PH2O : 0.2391552679156696 atm
+PO2 : 0.18900806964584382 atm
+Power-Thermal : 66.17399505772099 W
+###########
+I :20.6 A
+
+E : 2.923098951483501 V
+FC Efficiency : 0.37454656826544086
+FC Power : 60.18214258889105 W
+FC Voltage : 2.921463232470439 V
+PH2 : 0.19429041410185227 atm
+PH2O : 0.23913797432034106 atm
+PO2 : 0.1890001368076455 atm
+Power-Thermal : 66.50785741110897 W
+###########
+I :20.7 A
+
+E : 2.923097400681706 V
+FC Efficiency : 0.37447786532018407
+FC Power : 60.46319613459693 W
+FC Voltage : 2.920927349497436 V
+PH2 : 0.1942763637202379 atm
+PH2O : 0.23912068072501252 atm
+PO2 : 0.18899220396944721 atm
+Power-Thermal : 66.84180386540308 W
+###########
+I :20.8 A
+
+E : 2.9230958498148145 V
+FC Efficiency : 0.37440930529711525
+FC Power : 60.744165691403985 W
+FC Voltage : 2.920392581317499 V
+PH2 : 0.1942623133386235 atm
+PH2O : 0.239103387129684 atm
+PO2 : 0.18898427113124888 atm
+Power-Thermal : 67.17583430859602 W
+###########
+I :20.9 A
+
+E : 2.923094298882823 V
+FC Efficiency : 0.37434088682518973
+FC Power : 61.02505137024243 W
+FC Voltage : 2.91985891723648 V
+PH2 : 0.19424826295700912 atm
+PH2O : 0.23908609353435545 atm
+PO2 : 0.18897633829305055 atm
+Power-Thermal : 67.50994862975757 W
+###########
+I :21.0 A
+
+E : 2.923092747885725 V
+FC Efficiency : 0.3742726085529959
+FC Power : 61.30585328098073 W
+FC Voltage : 2.919326346713368 V
+PH2 : 0.19423421257539472 atm
+PH2O : 0.2390687999390269 atm
+PO2 : 0.18896840545485227 atm
+Power-Thermal : 67.84414671901928 W
+###########
+I :21.1 A
+
+E : 2.923091196823515 V
+FC Efficiency : 0.374204469148382
+FC Power : 61.58657153244072 W
+FC Voltage : 2.91879485935738 V
+PH2 : 0.19422016219378035 atm
+PH2O : 0.23905150634369837 atm
+PO2 : 0.18896047261665394 atm
+Power-Thermal : 68.1784284675593 W
+###########
+I :21.2 A
+
+E : 2.923089645696188 V
+FC Efficiency : 0.37413646729809263
+FC Power : 61.8672062324126 W
+FC Voltage : 2.9182644449251227 V
+PH2 : 0.19420611181216596 atm
+PH2O : 0.23903421274836983 atm
+PO2 : 0.18895253977845566 atm
+Power-Thermal : 68.51279376758741 W
+###########
+I :21.3 A
+
+E : 2.9230880945037385 V
+FC Efficiency : 0.3740686017074123
+FC Power : 62.14775748766949 W
+FC Voltage : 2.917735093317816 V
+PH2 : 0.19419206143055157 atm
+PH2O : 0.2390169191530413 atm
+PO2 : 0.18894460694025733 atm
+Power-Thermal : 68.84724251233052 W
+###########
+I :21.4 A
+
+E : 2.9230865432461606 V
+FC Efficiency : 0.37400087109981833
+FC Power : 62.42822540398168 W
+FC Voltage : 2.917206794578583 V
+PH2 : 0.1941780110489372 atm
+PH2O : 0.23899962555771273 atm
+PO2 : 0.18893667410205905 atm
+Power-Thermal : 69.18177459601833 W
+###########
+I :21.5 A
+
+E : 2.9230849919234485 V
+FC Efficiency : 0.3739332742166419
+FC Power : 62.70861008613085 W
+FC Voltage : 2.916679538889807 V
+PH2 : 0.1941639606673228 atm
+PH2O : 0.2389823319623842 atm
+PO2 : 0.18892874126386075 atm
+Power-Thermal : 69.51638991386916 W
+###########
+I :21.6 A
+
+E : 2.9230834405355983 V
+FC Efficiency : 0.3738658098167361
+FC Power : 62.988911637923714 W
+FC Voltage : 2.916153316570542 V
+PH2 : 0.1941499102857084 atm
+PH2O : 0.23896503836705565 atm
+PO2 : 0.18892080842566245 atm
+Power-Thermal : 69.8510883620763 W
+###########
+I :21.7 A
+
+E : 2.923081889082603 V
+FC Efficiency : 0.37379847667615274
+FC Power : 63.26913016220562 W
+FC Voltage : 2.915628118073992 V
+PH2 : 0.194135859904094 atm
+PH2O : 0.2389477447717271 atm
+PO2 : 0.18891287558746414 atm
+Power-Thermal : 70.18586983779439 W
+###########
+I :21.8 A
+
+E : 2.923080337564458 V
+FC Efficiency : 0.37373127358782554
+FC Power : 63.549265760873865 W
+FC Voltage : 2.9151039339850398 V
+PH2 : 0.1941218095224796 atm
+PH2O : 0.23893045117639852 atm
+PO2 : 0.18890494274926584 atm
+Power-Thermal : 70.52073423912614 W
+###########
+I :21.9 A
+
+E : 2.923078785981157 V
+FC Efficiency : 0.37366419936126144
+FC Power : 63.829318534890675 W
+FC Voltage : 2.9145807550178393 V
+PH2 : 0.19410775914086523 atm
+PH2O : 0.23891315758106998 atm
+PO2 : 0.18889700991106753 atm
+Power-Thermal : 70.85568146510933 W
+###########
+I :22.0 A
+
+E : 2.9230772343326947 V
+FC Efficiency : 0.3735972528222383
+FC Power : 64.1092885842961 W
+FC Voltage : 2.914058572013459 V
+PH2 : 0.19409370875925083 atm
+PH2O : 0.23889586398574145 atm
+PO2 : 0.18888907707286925 atm
+Power-Thermal : 71.1907114157039 W
+###########
+I :22.1 A
+
+E : 2.923075682619067 V
+FC Efficiency : 0.37353043281251025
+FC Power : 64.38917600822053 W
+FC Voltage : 2.9135373759375804 V
+PH2 : 0.19407965837763644 atm
+PH2O : 0.2388785703904129 atm
+PO2 : 0.18888114423467092 atm
+Power-Thermal : 71.52582399177949 W
+###########
+I :22.2 A
+
+E : 2.9230741308402663 V
+FC Efficiency : 0.3734637381895185
+FC Power : 64.66898090489703 W
+FC Voltage : 2.9130171578782442 V
+PH2 : 0.19406560799602207 atm
+PH2O : 0.23886127679508437 atm
+PO2 : 0.18887321139647265 atm
+Power-Thermal : 71.86101909510299 W
+###########
+I :22.3 A
+
+E : 2.9230725789962886 V
+FC Efficiency : 0.3733971678261096
+FC Power : 64.94870337167352 W
+FC Voltage : 2.912497909043655 V
+PH2 : 0.19405155761440768 atm
+PH2O : 0.23884398319975583 atm
+PO2 : 0.1888652785582743 atm
+Power-Thermal : 72.19629662832651 W
+###########
+I :22.4 A
+
+E : 2.923071027087128 V
+FC Efficiency : 0.3733307206102601
+FC Power : 65.22834350502465 W
+FC Voltage : 2.9119796207600293 V
+PH2 : 0.19403750723279328 atm
+PH2O : 0.2388266896044273 atm
+PO2 : 0.18885734572007604 atm
+Power-Thermal : 72.53165649497535 W
+###########
+I :22.5 A
+
+E : 2.9230694751127793 V
+FC Efficiency : 0.3732643954448065
+FC Power : 65.50790140056354 W
+FC Voltage : 2.911462284469491 V
+PH2 : 0.19402345685117892 atm
+PH2O : 0.23880939600909876 atm
+PO2 : 0.1888494128818777 atm
+Power-Thermal : 72.86709859943646 W
+###########
+I :22.6 A
+
+E : 2.9230679230732366 V
+FC Efficiency : 0.3731981912471815
+FC Power : 65.78737715305317 W
+FC Voltage : 2.910945891728016 V
+PH2 : 0.19400940646956452 atm
+PH2O : 0.23879210241377022 atm
+PO2 : 0.18884148004367937 atm
+Power-Thermal : 73.20262284694685 W
+###########
+I :22.7 A
+
+E : 2.9230663709684945 V
+FC Efficiency : 0.37313210694915694
+FC Power : 66.06677085641773 W
+FC Voltage : 2.9104304342034246 V
+PH2 : 0.19399535608795013 atm
+PH2O : 0.23877480881844165 atm
+PO2 : 0.1888335472054811 atm
+Power-Thermal : 73.53822914358227 W
+###########
+I :22.8 A
+
+E : 2.9230648187985473 V
+FC Efficiency : 0.373066141496591
+FC Power : 66.34608260375376 W
+FC Voltage : 2.90991590367341 V
+PH2 : 0.19398130570633573 atm
+PH2O : 0.23875751522311311 atm
+PO2 : 0.18882561436728276 atm
+Power-Thermal : 73.87391739624626 W
+###########
+I :22.9 A
+
+E : 2.9230632665633904 V
+FC Efficiency : 0.3730002938491822
+FC Power : 66.62531248734092 W
+FC Voltage : 2.9094022920236213 V
+PH2 : 0.19396725532472137 atm
+PH2O : 0.23874022162778458 atm
+PO2 : 0.18881768152908449 atm
+Power-Thermal : 74.20968751265907 W
+###########
+I :23.0 A
+
+E : 2.9230617142630173 V
+FC Efficiency : 0.37293456298022726
+FC Power : 66.90446059865278 W
+FC Voltage : 2.908889591245773 V
+PH2 : 0.19395320494310697 atm
+PH2O : 0.23872292803245604 atm
+PO2 : 0.18880974869088615 atm
+Power-Thermal : 74.54553940134723 W
+###########
+I :23.1 A
+
+E : 2.923060161897423 V
+FC Efficiency : 0.3728689478763863
+FC Power : 67.1835270283673 W
+FC Voltage : 2.9083777934358133 V
+PH2 : 0.19393915456149258 atm
+PH2O : 0.2387056344371275 atm
+PO2 : 0.18880181585268788 atm
+Power-Thermal : 74.88147297163273 W
+###########
+I :23.2 A
+
+E : 2.9230586094666022 V
+FC Efficiency : 0.3728034475374512
+FC Power : 67.46251186637717 W
+FC Voltage : 2.9078668907921195 V
+PH2 : 0.1939251041798782 atm
+PH2O : 0.23868834084179896 atm
+PO2 : 0.18879388301448957 atm
+Power-Thermal : 75.21748813362284 W
+###########
+I :23.3 A
+
+E : 2.9230570569705487 V
+FC Efficiency : 0.3727380609761194
+FC Power : 67.74141520179995 W
+FC Voltage : 2.907356875613732 V
+PH2 : 0.19391105379826382 atm
+PH2O : 0.23867104724647042 atm
+PO2 : 0.18878595017629127 atm
+Power-Thermal : 75.55358479820006 W
+###########
+I :23.4 A
+
+E : 2.923055504409258 V
+FC Efficiency : 0.372672787217774
+FC Power : 68.0202371229881 W
+FC Voltage : 2.9068477402986375 V
+PH2 : 0.1938970034166494 atm
+PH2O : 0.23865375365114183 atm
+PO2 : 0.18877801733809296 atm
+Power-Thermal : 75.88976287701189 W
+###########
+I :23.5 A
+
+E : 2.923053951782724 V
+FC Efficiency : 0.3726076253002659
+FC Power : 68.29897771753875 W
+FC Voltage : 2.9063394773420743 V
+PH2 : 0.193882953035035 atm
+PH2O : 0.2386364600558133 atm
+PO2 : 0.18877008449989466 atm
+Power-Thermal : 76.22602228246126 W
+###########
+I :23.6 A
+
+E : 2.9230523990909414 V
+FC Efficiency : 0.37254257427370313
+FC Power : 68.57763707230328 W
+FC Voltage : 2.9058320793348846 V
+PH2 : 0.1938689026534206 atm
+PH2O : 0.23861916646048476 atm
+PO2 : 0.18876215166169635 atm
+Power-Thermal : 76.56236292769674 W
+###########
+I :23.7 A
+
+E : 2.923050846333905 V
+FC Efficiency : 0.37247763320024313
+FC Power : 68.85621527339696 W
+FC Voltage : 2.905325538961897 V
+PH2 : 0.19385485227180624 atm
+PH2O : 0.23860187286515622 atm
+PO2 : 0.18875421882349808 atm
+Power-Thermal : 76.89878472660305 W
+###########
+I :23.8 A
+
+E : 2.923049293511608 V
+FC Efficiency : 0.3724128011538895
+FC Power : 69.13471240620805 W
+FC Voltage : 2.9048198490003383 V
+PH2 : 0.19384080189019184 atm
+PH2O : 0.23858457926982768 atm
+PO2 : 0.18874628598529974 atm
+Power-Thermal : 77.23528759379197 W
+###########
+I :23.9 A
+
+E : 2.923047740624047 V
+FC Efficiency : 0.3723480772202942
+FC Power : 69.41312855540725 W
+FC Voltage : 2.9043150023182953 V
+PH2 : 0.19382675150857745 atm
+PH2O : 0.23856728567449914 atm
+PO2 : 0.18873835314710147 atm
+Power-Thermal : 77.57187144459274 W
+###########
+I :24.0 A
+
+E : 2.923046187671215 V
+FC Efficiency : 0.3722834604965621
+FC Power : 69.69146380495643 W
+FC Voltage : 2.9038109918731845 V
+PH2 : 0.19381270112696308 atm
+PH2O : 0.23854999207917058 atm
+PO2 : 0.18873042030890314 atm
+Power-Thermal : 77.90853619504358 W
+###########
+I :24.1 A
+
+E : 2.9230446346531065 V
+FC Efficiency : 0.3722189500910608
+FC Power : 69.96971823811762 W
+FC Voltage : 2.9033078107102743 V
+PH2 : 0.1937986507453487 atm
+PH2O : 0.23853269848384204 atm
+PO2 : 0.18872248747070486 atm
+Power-Thermal : 78.2452817618824 W
+###########
+I :24.2 A
+
+E : 2.9230430815697166 V
+FC Efficiency : 0.37215454512323437
+FC Power : 70.24789193746172 W
+FC Voltage : 2.9028054519612283 V
+PH2 : 0.1937846003637343 atm
+PH2O : 0.2385154048885135 atm
+PO2 : 0.18871455463250653 atm
+Power-Thermal : 78.58210806253828 W
+###########
+I :24.3 A
+
+E : 2.92304152842104 V
+FC Efficiency : 0.3720902447234203
+FC Power : 70.52598498487708 W
+FC Voltage : 2.9023039088426783 V
+PH2 : 0.19377054998211993 atm
+PH2O : 0.23849811129318496 atm
+PO2 : 0.1887066217943082 atm
+Power-Thermal : 78.91901501512292 W
+###########
+I :24.4 A
+
+E : 2.923039975207071 V
+FC Efficiency : 0.37202604803267064
+FC Power : 70.80399746157788 W
+FC Voltage : 2.901803174654831 V
+PH2 : 0.19375649960050553 atm
+PH2O : 0.23848081769785642 atm
+PO2 : 0.18869868895610992 atm
+Power-Thermal : 79.25600253842212 W
+###########
+I :24.5 A
+
+E : 2.9230384219278034 V
+FC Efficiency : 0.3719619542025767
+FC Power : 71.08192944811242 W
+FC Voltage : 2.9013032427800987 V
+PH2 : 0.19374244921889114 atm
+PH2O : 0.23846352410252789 atm
+PO2 : 0.18869075611791158 atm
+Power-Thermal : 79.59307055188759 W
+###########
+I :24.6 A
+
+E : 2.9230368685832326 V
+FC Efficiency : 0.3718979623950974
+FC Power : 71.3597810243713 W
+FC Voltage : 2.9008041066817603 V
+PH2 : 0.19372839883727674 atm
+PH2O : 0.23844623050719935 atm
+PO2 : 0.1886828232797133 atm
+Power-Thermal : 79.9302189756287 W
+###########
+I :24.7 A
+
+E : 2.9230353151733524 V
+FC Efficiency : 0.3718340717823911
+FC Power : 71.63755226959546 W
+FC Voltage : 2.9003057599026505 V
+PH2 : 0.19371434845566238 atm
+PH2O : 0.2384289369118708 atm
+PO2 : 0.188674890441515 atm
+Power-Thermal : 80.26744773040454 W
+###########
+I :24.8 A
+
+E : 2.9230337616981577 V
+FC Efficiency : 0.37177028154665037
+FC Power : 71.91524326238407 W
+FC Voltage : 2.8998081960638733 V
+PH2 : 0.19370029807404798 atm
+PH2O : 0.23841164331654227 atm
+PO2 : 0.1886669576033167 atm
+Power-Thermal : 80.60475673761596 W
+###########
+I :24.9 A
+
+E : 2.923032208157643 V
+FC Efficiency : 0.3717065908799411
+FC Power : 72.19285408070216 W
+FC Voltage : 2.8993114088635408 V
+PH2 : 0.1936862476924336 atm
+PH2O : 0.23839434972121373 atm
+PO2 : 0.1886590247651184 atm
+Power-Thermal : 80.94214591929784 W
+###########
+I :25.0 A
+
+E : 2.9230306545518037 V
+FC Efficiency : 0.3716429989840436
+FC Power : 72.47038480188851 W
+FC Voltage : 2.8988153920755404 V
+PH2 : 0.19367219731081922 atm
+PH2O : 0.23837705612588517 atm
+PO2 : 0.1886510919269201 atm
+Power-Thermal : 81.2796151981115 W
+###########
+I :25.1 A
+
+E : 2.9230291008806324 V
+FC Efficiency : 0.37157950507029786
+FC Power : 72.74783550266292 W
+FC Voltage : 2.8983201395483236 V
+PH2 : 0.1936581469292048 atm
+PH2O : 0.2383597625305566 atm
+PO2 : 0.18864315908872178 atm
+Power-Thermal : 81.61716449733709 W
+###########
+I :25.2 A
+
+E : 2.9230275471441254 V
+FC Efficiency : 0.3715161083594514
+FC Power : 73.02520625913377 W
+FC Voltage : 2.897825645203721 V
+PH2 : 0.1936440965475904 atm
+PH2O : 0.23834246893522806 atm
+PO2 : 0.18863522625052348 atm
+Power-Thermal : 81.95479374086624 W
+###########
+I :25.3 A
+
+E : 2.923025993342276 V
+FC Efficiency : 0.3714528080815101
+FC Power : 73.30249714680521 W
+FC Voltage : 2.897331903035779 V
+PH2 : 0.193630046165976 atm
+PH2O : 0.2383251753398995 atm
+PO2 : 0.18862729341232518 atm
+Power-Thermal : 82.2925028531948 W
+###########
+I :25.4 A
+
+E : 2.923024439475079 V
+FC Efficiency : 0.3713896034755923
+FC Power : 73.57970824058435 W
+FC Voltage : 2.89683890710962 V
+PH2 : 0.19361599578436162 atm
+PH2O : 0.23830788174457096 atm
+PO2 : 0.1886193605741269 atm
+Power-Thermal : 82.63029175941566 W
+###########
+I :25.5 A
+
+E : 2.9230228855425286 V
+FC Efficiency : 0.3713264937897855
+FC Power : 73.85683961478834 W
+FC Voltage : 2.896346651560327 V
+PH2 : 0.19360194540274725 atm
+PH2O : 0.23829058814924242 atm
+PO2 : 0.18861142773592857 atm
+Power-Thermal : 82.96816038521168 W
+###########
+I :25.6 A
+
+E : 2.9230213315446205 V
+FC Efficiency : 0.3712634782810062
+FC Power : 74.13389134315132 W
+FC Voltage : 2.8958551305918485 V
+PH2 : 0.19358789502113286 atm
+PH2O : 0.23827329455391388 atm
+PO2 : 0.1886034948977303 atm
+Power-Thermal : 83.30610865684869 W
+###########
+I :25.7 A
+
+E : 2.9230197774813482 V
+FC Efficiency : 0.3712005562148615
+FC Power : 74.41086349883115 W
+FC Voltage : 2.89536433847592 V
+PH2 : 0.19357384463951846 atm
+PH2O : 0.23825600095858535 atm
+PO2 : 0.18859556205953196 atm
+Power-Thermal : 83.64413650116886 W
+###########
+I :25.8 A
+
+E : 2.9230182233527064 V
+FC Efficiency : 0.371137726865515
+FC Power : 74.68775615441625 W
+FC Voltage : 2.8948742695510172 V
+PH2 : 0.1935597942579041 atm
+PH2O : 0.2382387073632568 atm
+PO2 : 0.18858762922133368 atm
+Power-Thermal : 83.98224384558377 W
+###########
+I :25.9 A
+
+E : 2.9230166691586894 V
+FC Efficiency : 0.37107498951555373
+FC Power : 74.96456938193217 W
+FC Voltage : 2.894384918221319 V
+PH2 : 0.1935457438762897 atm
+PH2O : 0.23822141376792827 atm
+PO2 : 0.18857969638313535 atm
+Power-Thermal : 84.32043061806785 W
+###########
+I :26.0 A
+
+E : 2.923015114899292 V
+FC Efficiency : 0.37101234345585854
+FC Power : 75.24130325284813 W
+FC Voltage : 2.893896278955697 V
+PH2 : 0.1935316934946753 atm
+PH2O : 0.23820412017259973 atm
+PO2 : 0.18857176354493702 atm
+Power-Thermal : 84.6586967471519 W
+###########
+I :26.1 A
+
+E : 2.9230135605745087 V
+FC Efficiency : 0.37094978798547695
+FC Power : 75.5179578380834 W
+FC Voltage : 2.89340834628672 V
+PH2 : 0.19351764311306094 atm
+PH2O : 0.2381868265772712 atm
+PO2 : 0.18856383070673874 atm
+Power-Thermal : 84.99704216191662 W
+###########
+I :26.2 A
+
+E : 2.9230120061843348 V
+FC Efficiency : 0.37088732241149786
+FC Power : 75.79453320801372 W
+FC Voltage : 2.892921114809684 V
+PH2 : 0.19350359273144654 atm
+PH2O : 0.23816953298194266 atm
+PO2 : 0.1885558978685404 atm
+Power-Thermal : 85.33546679198629 W
+###########
+I :26.3 A
+
+E : 2.923010451728763 V
+FC Efficiency : 0.3708249460489292
+FC Power : 76.07102943247733 W
+FC Voltage : 2.8924345791816477 V
+PH2 : 0.19348954234983215 atm
+PH2O : 0.2381522393866141 atm
+PO2 : 0.18854796503034213 atm
+Power-Thermal : 85.67397056752267 W
+###########
+I :26.4 A
+
+E : 2.923008897207789 V
+FC Efficiency : 0.3707626582205777
+FC Power : 76.34744658078135 W
+FC Voltage : 2.891948734120506 V
+PH2 : 0.19347549196821776 atm
+PH2O : 0.23813494579128555 atm
+PO2 : 0.18854003219214382 atm
+Power-Thermal : 86.01255341921865 W
+###########
+I :26.5 A
+
+E : 2.9230073426214065 V
+FC Efficiency : 0.3707004582569309
+FC Power : 76.62378472170762 W
+FC Voltage : 2.891463574404061 V
+PH2 : 0.1934614415866034 atm
+PH2O : 0.238117652195957 atm
+PO2 : 0.18853209935394552 atm
+Power-Thermal : 86.35121527829239 W
+###########
+I :26.6 A
+
+E : 2.9230057879696107 V
+FC Efficiency : 0.37063834549604174
+FC Power : 76.90004392351875 W
+FC Voltage : 2.8909790948691256 V
+PH2 : 0.193447391204989 atm
+PH2O : 0.23810035860062848 atm
+PO2 : 0.18852416651574722 atm
+Power-Thermal : 86.68995607648127 W
+###########
+I :26.7 A
+
+E : 2.9230042332523967 V
+FC Efficiency : 0.3705763192834145
+FC Power : 77.17622425396391 W
+FC Voltage : 2.8904952904106334 V
+PH2 : 0.1934333408233746 atm
+PH2O : 0.23808306500529994 atm
+PO2 : 0.1885162336775489 atm
+Power-Thermal : 87.0287757460361 W
+###########
+I :26.8 A
+
+E : 2.923002678469757 V
+FC Efficiency : 0.3705143789718936
+FC Power : 77.45232578028464 W
+FC Voltage : 2.89001215598077 V
+PH2 : 0.19341929044176023 atm
+PH2O : 0.2380657714099714 atm
+PO2 : 0.1885083008393506 atm
+Power-Thermal : 87.36767421971537 W
+###########
+I :26.9 A
+
+E : 2.9230011236216886 V
+FC Efficiency : 0.37045252392155453
+FC Power : 77.72834856922057 W
+FC Voltage : 2.8895296865881255 V
+PH2 : 0.1934052400601458 atm
+PH2O : 0.2380484778146428 atm
+PO2 : 0.18850036800115233 atm
+Power-Thermal : 87.70665143077943 W
+###########
+I :27.0 A
+
+E : 2.922999568708184 V
+FC Efficiency : 0.37039075349959594
+FC Power : 78.0042926870149 W
+FC Voltage : 2.889047877296848 V
+PH2 : 0.19339118967853142 atm
+PH2O : 0.23803118421931427 atm
+PO2 : 0.188492435162954 atm
+Power-Thermal : 88.04570731298512 W
+###########
+I :27.1 A
+
+E : 2.9229980137292384 V
+FC Efficiency : 0.3703290670802348
+FC Power : 78.28015819942004 W
+FC Voltage : 2.8885667232258316 V
+PH2 : 0.19337713929691702 atm
+PH2O : 0.23801389062398573 atm
+PO2 : 0.18848450232475572 atm
+Power-Thermal : 88.38484180057998 W
+###########
+I :27.2 A
+
+E : 2.922996458684846 V
+FC Efficiency : 0.3702674640446029
+FC Power : 78.55594517170296 W
+FC Voltage : 2.888086219547903 V
+PH2 : 0.19336308891530263 atm
+PH2O : 0.2379965970286572 atm
+PO2 : 0.1884765694865574 atm
+Power-Thermal : 88.72405482829704 W
+###########
+I :27.3 A
+
+E : 2.922994903575002 V
+FC Efficiency : 0.3702059437806453
+FC Power : 78.83165366865062 W
+FC Voltage : 2.8876063614890333 V
+PH2 : 0.19334903853368826 atm
+PH2O : 0.23797930343332865 atm
+PO2 : 0.1884686366483591 atm
+Power-Thermal : 89.06334633134941 W
+###########
+I :27.4 A
+
+E : 2.9229933483997 V
+FC Efficiency : 0.37014450568302026
+FC Power : 79.10728375457509 W
+FC Voltage : 2.8871271443275583 V
+PH2 : 0.19333498815207387 atm
+PH2O : 0.23796200983800012 atm
+PO2 : 0.18846070381016078 atm
+Power-Thermal : 89.40271624542491 W
+###########
+I :27.5 A
+
+E : 2.9229917931589355 V
+FC Efficiency : 0.37008314915300256
+FC Power : 79.38283549331905 W
+FC Voltage : 2.88664856339342 V
+PH2 : 0.19332093777045947 atm
+PH2O : 0.23794471624267158 atm
+PO2 : 0.1884527709719625 atm
+Power-Thermal : 89.74216450668096 W
+###########
+I :27.6 A
+
+E : 2.9229902378527024 V
+FC Efficiency : 0.37002187359838595
+FC Power : 79.65830894826054 W
+FC Voltage : 2.8861706140674106 V
+PH2 : 0.1933068873888451 atm
+PH2O : 0.237927422647343 atm
+PO2 : 0.18844483813376417 atm
+Power-Thermal : 90.08169105173948 W
+###########
+I :27.7 A
+
+E : 2.9229886824809945 V
+FC Efficiency : 0.3699606784333899
+FC Power : 79.93370418231824 W
+FC Voltage : 2.885693291780442 V
+PH2 : 0.1932928370072307 atm
+PH2O : 0.23791012905201447 atm
+PO2 : 0.18843690529556584 atm
+Power-Thermal : 90.42129581768177 W
+###########
+I :27.8 A
+
+E : 2.9229871270438075 V
+FC Efficiency : 0.369899563078567
+FC Power : 80.20902125795646 W
+FC Voltage : 2.8852165920128225 V
+PH2 : 0.19327878662561632 atm
+PH2O : 0.23789283545668594 atm
+PO2 : 0.18842897245736756 atm
+Power-Thermal : 90.76097874204355 W
+###########
+I :27.9 A
+
+E : 2.922985571541136 V
+FC Efficiency : 0.369838526960711
+FC Power : 80.48426023718993 W
+FC Voltage : 2.884740510293546 V
+PH2 : 0.19326473624400195 atm
+PH2O : 0.2378755418613574 atm
+PO2 : 0.18842103961916923 atm
+Power-Thermal : 91.10073976281008 W
+###########
+I :28.0 A
+
+E : 2.9229840159729727 V
+FC Efficiency : 0.3697775695127685
+FC Power : 80.75942118158865 W
+FC Voltage : 2.8842650421995946 V
+PH2 : 0.19325068586238756 atm
+PH2O : 0.23785824826602886 atm
+PO2 : 0.18841310678097095 atm
+Power-Thermal : 91.44057881841137 W
+###########
+I :28.1 A
+
+E : 2.922982460339314 V
+FC Efficiency : 0.3697166901737509
+FC Power : 81.03450415228274 W
+FC Voltage : 2.8837901833552575 V
+PH2 : 0.19323663548077316 atm
+PH2O : 0.23784095467070032 atm
+PO2 : 0.18840517394277265 atm
+Power-Thermal : 91.78049584771728 W
+###########
+I :28.2 A
+
+E : 2.9229809046401534 V
+FC Efficiency : 0.36965588838864827
+FC Power : 81.30950920996706 W
+FC Voltage : 2.8833159294314563 V
+PH2 : 0.19322258509915877 atm
+PH2O : 0.23782366107537178 atm
+PO2 : 0.18839724110457434 atm
+Power-Thermal : 92.12049079003295 W
+###########
+I :28.3 A
+
+E : 2.9229793488754856 V
+FC Efficiency : 0.36959516360834416
+FC Power : 81.5844364149059 W
+FC Voltage : 2.8828422761450847 V
+PH2 : 0.1932085347175444 atm
+PH2O : 0.23780636748004325 atm
+PO2 : 0.18838930826637604 atm
+Power-Thermal : 92.46056358509412 W
+###########
+I :28.4 A
+
+E : 2.9229777930453054 V
+FC Efficiency : 0.3695345152895334
+FC Power : 81.85928582693745 W
+FC Voltage : 2.882369219258361 V
+PH2 : 0.19319448433593 atm
+PH2O : 0.2377890738847147 atm
+PO2 : 0.18838137542817773 atm
+Power-Thermal : 92.80071417306256 W
+###########
+I :28.5 A
+
+E : 2.9229762371496064 V
+FC Efficiency : 0.36947394289463964
+FC Power : 82.1340575054784 W
+FC Voltage : 2.8818967545781895 V
+PH2 : 0.1931804339543156 atm
+PH2O : 0.23777178028938614 atm
+PO2 : 0.18837344258997943 atm
+Power-Thermal : 93.14094249452161 W
+###########
+I :28.6 A
+
+E : 2.9229746811883843 V
+FC Efficiency : 0.36941344589173547
+FC Power : 82.40875150952836 W
+FC Voltage : 2.8814248779555367 V
+PH2 : 0.1931663835727012 atm
+PH2O : 0.23775448669405758 atm
+PO2 : 0.18836550975178115 atm
+Power-Thermal : 93.48124849047167 W
+###########
+I :28.7 A
+
+E : 2.922973125161633 V
+FC Efficiency : 0.3693530237544631
+FC Power : 82.68336789767412 W
+FC Voltage : 2.8809535852848125 V
+PH2 : 0.19315233319108682 atm
+PH2O : 0.23773719309872904 atm
+PO2 : 0.18835757691358282 atm
+Power-Thermal : 93.82163210232589 W
+###########
+I :28.8 A
+
+E : 2.9229715690693463 V
+FC Efficiency : 0.3692926759619575
+FC Power : 82.95790672809413 W
+FC Voltage : 2.8804828725032685 V
+PH2 : 0.19313828280947243 atm
+PH2O : 0.2377198995034005 atm
+PO2 : 0.18834964407538454 atm
+Power-Thermal : 94.16209327190587 W
+###########
+I :28.9 A
+
+E : 2.92297001291152 V
+FC Efficiency : 0.36923240199876994
+FC Power : 83.23236805856273 W
+FC Voltage : 2.8800127355904057 V
+PH2 : 0.19312423242785803 atm
+PH2O : 0.23770260590807193 atm
+PO2 : 0.1883417112371862 atm
+Power-Thermal : 94.50263194143729 W
+###########
+I :29.0 A
+
+E : 2.9229684566881478 V
+FC Efficiency : 0.36917220135479284
+FC Power : 83.50675194645416 W
+FC Voltage : 2.8795431705673846 V
+PH2 : 0.19311018204624364 atm
+PH2O : 0.2376853123127434 atm
+PO2 : 0.18833377839898793 atm
+Power-Thermal : 94.84324805354585 W
+###########
+I :29.1 A
+
+E : 2.9229669003992242 V
+FC Efficiency : 0.369112073525187
+FC Power : 83.78105844874695 W
+FC Voltage : 2.8790741734964587 V
+PH2 : 0.19309613166462927 atm
+PH2O : 0.23766801871741486 atm
+PO2 : 0.1883258455607896 atm
+Power-Thermal : 95.18394155125307 W
+###########
+I :29.2 A
+
+E : 2.9229653440447434 V
+FC Efficiency : 0.36905201801030824
+FC Power : 84.0552876220278 W
+FC Voltage : 2.8786057404804044 V
+PH2 : 0.19308208128301488 atm
+PH2O : 0.23765072512208632 atm
+PO2 : 0.18831791272259132 atm
+Power-Thermal : 95.5247123779722 W
+###########
+I :29.3 A
+
+E : 2.9229637876247008 V
+FC Efficiency : 0.3689920343156374
+FC Power : 84.32943952249578 W
+FC Voltage : 2.8781378676619718 V
+PH2 : 0.19306803090140048 atm
+PH2O : 0.23763343152675778 atm
+PO2 : 0.188309979884393 atm
+Power-Thermal : 95.86556047750425 W
+###########
+I :29.4 A
+
+E : 2.9229622311390897 V
+FC Efficiency : 0.36893212195170993
+FC Power : 84.60351420596612 W
+FC Voltage : 2.877670551223338 V
+PH2 : 0.19305398051978612 atm
+PH2O : 0.23761613793142924 atm
+PO2 : 0.18830204704619471 atm
+Power-Thermal : 96.20648579403388 W
+###########
+I :29.5 A
+
+E : 2.9229606745879053 V
+FC Efficiency : 0.36887228043404724
+FC Power : 84.87751172787426 W
+FC Voltage : 2.8772037873855685 V
+PH2 : 0.19303993013817172 atm
+PH2O : 0.2375988443361007 atm
+PO2 : 0.18829411420799638 atm
+Power-Thermal : 96.54748827212575 W
+###########
+I :29.6 A
+
+E : 2.9229591179711423 V
+FC Efficiency : 0.36881250928308945
+FC Power : 85.1514321432797 W
+FC Voltage : 2.876737572408098 V
+PH2 : 0.19302587975655733 atm
+PH2O : 0.23758155074077217 atm
+PO2 : 0.18828618136979808 atm
+Power-Thermal : 96.88856785672031 W
+###########
+I :29.7 A
+
+E : 2.922957561288795 V
+FC Efficiency : 0.368752808024129
+FC Power : 85.42527550686972 W
+FC Voltage : 2.8762719025882064 V
+PH2 : 0.19301182937494296 atm
+PH2O : 0.23756425714544363 atm
+PO2 : 0.18827824853159977 atm
+Power-Thermal : 97.22972449313028 W
+###########
+I :29.8 A
+
+E : 2.922956004540857 V
+FC Efficiency : 0.36869317618724495
+FC Power : 85.69904187296322 W
+FC Voltage : 2.8758067742605107 V
+PH2 : 0.19299777899332857 atm
+PH2O : 0.23754696355011506 atm
+PO2 : 0.18827031569340147 atm
+Power-Thermal : 97.57095812703679 W
+###########
+I :29.9 A
+
+E : 2.922954447727324 V
+FC Efficiency : 0.3686336133072394
+FC Power : 85.97273129551438 W
+FC Voltage : 2.8753421837964677 V
+PH2 : 0.19298372861171417 atm
+PH2O : 0.23752966995478653 atm
+PO2 : 0.18826238285520316 atm
+Power-Thermal : 97.91226870448563 W
+###########
+I :30.0 A
+
+E : 2.92295289084819 V
+FC Efficiency : 0.3685741189235743
+FC Power : 86.2463438281164 W
+FC Voltage : 2.8748781276038797 V
+PH2 : 0.19296967823009978 atm
+PH2O : 0.237512376359458 atm
+PO2 : 0.18825445001700486 atm
+Power-Thermal : 98.25365617188362 W
+###########
+I :30.1 A
+
+E : 2.922951333903449 V
+FC Efficiency : 0.36851469258030917
+FC Power : 86.51987952400499 W
+FC Voltage : 2.8744146021264116 V
+PH2 : 0.1929556278484854 atm
+PH2O : 0.23749508276412945 atm
+PO2 : 0.18824651717880655 atm
+Power-Thermal : 98.59512047599503 W
+###########
+I :30.2 A
+
+E : 2.922949776893096 V
+FC Efficiency : 0.3684553338260404
+FC Power : 86.79333843606209 W
+FC Voltage : 2.8739516038431154 V
+PH2 : 0.19294157746687102 atm
+PH2O : 0.2374777891688009 atm
+PO2 : 0.18823858434060825 atm
+Power-Thermal : 98.93666156393792 W
+###########
+I :30.3 A
+
+E : 2.9229482198171257 V
+FC Efficiency : 0.368396042213841
+FC Power : 87.06672061681918 W
+FC Voltage : 2.8734891292679596 V
+PH2 : 0.19292752708525662 atm
+PH2O : 0.23746049557347237 atm
+PO2 : 0.18823065150240997 atm
+Power-Thermal : 99.27827938318083 W
+###########
+I :30.4 A
+
+E : 2.922946662675532 V
+FC Efficiency : 0.36833681730120166
+FC Power : 87.34002611846094 W
+FC Voltage : 2.873027174949373 V
+PH2 : 0.1929134767036422 atm
+PH2O : 0.23744320197814378 atm
+PO2 : 0.18822271866421164 atm
+Power-Thermal : 99.61997388153907 W
+###########
+I :30.5 A
+
+E : 2.92294510546831 V
+FC Efficiency : 0.3682776586499732
+FC Power : 87.61325499282862 W
+FC Voltage : 2.872565737469791 V
+PH2 : 0.19289942632202783 atm
+PH2O : 0.23742590838281524 atm
+PO2 : 0.18821478582601336 atm
+Power-Thermal : 99.96174500717139 W
+###########
+I :30.6 A
+
+E : 2.922943548195453 V
+FC Efficiency : 0.36821856582630824
+FC Power : 87.88640729142325 W
+FC Voltage : 2.8721048134452043 V
+PH2 : 0.19288537594041344 atm
+PH2O : 0.2374086147874867 atm
+PO2 : 0.18820685298781503 atm
+Power-Thermal : 100.30359270857676 W
+###########
+I :30.7 A
+
+E : 2.9229419908569563 V
+FC Efficiency : 0.3681595384006067
+FC Power : 88.15948306540929 W
+FC Voltage : 2.8716443995247327 V
+PH2 : 0.19287132555879904 atm
+PH2O : 0.23739132119215817 atm
+PO2 : 0.18819892014961676 atm
+Power-Thermal : 100.64551693459072 W
+###########
+I :30.8 A
+
+E : 2.9229404334528146 V
+FC Efficiency : 0.36810057594745943
+FC Power : 88.43248236561766 W
+FC Voltage : 2.8711844923901837 V
+PH2 : 0.19285727517718465 atm
+PH2O : 0.23737402759682963 atm
+PO2 : 0.18819098731141842 atm
+Power-Thermal : 100.98751763438236 W
+###########
+I :30.9 A
+
+E : 2.9229388759830224 V
+FC Efficiency : 0.36804167804559407
+FC Power : 88.70540524254908 W
+FC Voltage : 2.8707250887556337 V
+PH2 : 0.19284322479557028 atm
+PH2O : 0.2373567340015011 atm
+PO2 : 0.18818305447322015 atm
+Power-Thermal : 101.32959475745092 W
+###########
+I :31.0 A
+
+E : 2.9229373184475733 V
+FC Efficiency : 0.3679828442778217
+FC Power : 88.97825174637728 W
+FC Voltage : 2.8702661853670093 V
+PH2 : 0.1928291744139559 atm
+PH2O : 0.23733944040617255 atm
+PO2 : 0.1881751216350218 atm
+Power-Thermal : 101.67174825362272 W
+###########
+I :31.1 A
+
+E : 2.922935760846462 V
+FC Efficiency : 0.36792407423098417
+FC Power : 89.25102192695215 W
+FC Voltage : 2.8698077790016767 V
+PH2 : 0.1928151240323415 atm
+PH2O : 0.237322146810844 atm
+PO2 : 0.18816718879682354 atm
+Power-Thermal : 102.01397807304787 W
+###########
+I :31.2 A
+
+E : 2.9229342031796843 V
+FC Efficiency : 0.36786536749590276
+FC Power : 89.52371583380291 W
+FC Voltage : 2.869349866468042 V
+PH2 : 0.19280107365072713 atm
+PH2O : 0.23730485321551545 atm
+PO2 : 0.1881592559586252 atm
+Power-Thermal : 102.3562841661971 W
+###########
+I :31.3 A
+
+E : 2.9229326454472333 V
+FC Efficiency : 0.3678067236673265
+FC Power : 89.79633351614109 W
+FC Voltage : 2.8688924446051467 V
+PH2 : 0.19278702326911273 atm
+PH2O : 0.2372875596201869 atm
+PO2 : 0.1881513231204269 atm
+Power-Thermal : 102.69866648385891 W
+###########
+I :31.4 A
+
+E : 2.9229310876491033 V
+FC Efficiency : 0.36774814234388237
+FC Power : 90.06887502286366 W
+FC Voltage : 2.8684355102822825 V
+PH2 : 0.19277297288749834 atm
+PH2O : 0.23727026602485837 atm
+PO2 : 0.1881433902822286 atm
+Power-Thermal : 103.04112497713633 W
+###########
+I :31.5 A
+
+E : 2.9229295297852897 V
+FC Efficiency : 0.3676896231280264
+FC Power : 90.3413404025561 W
+FC Voltage : 2.867979060398606 V
+PH2 : 0.19275892250588397 atm
+PH2O : 0.23725297242952983 atm
+PO2 : 0.1881354574440303 atm
+Power-Thermal : 103.38365959744392 W
+###########
+I :31.6 A
+
+E : 2.922927971855786 V
+FC Efficiency : 0.36763116562599435
+FC Power : 90.6137297034951 W
+FC Voltage : 2.867523091882756 V
+PH2 : 0.19274487212426958 atm
+PH2O : 0.2372356788342013 atm
+PO2 : 0.18812752460583199 atm
+Power-Thermal : 103.72627029650494 W
+###########
+I :31.7 A
+
+E : 2.9229264138605875 V
+FC Efficiency : 0.3675727694477546
+FC Power : 90.88604297365181 W
+FC Voltage : 2.867067601692486 V
+PH2 : 0.19273082174265518 atm
+PH2O : 0.23721838523887276 atm
+PO2 : 0.18811959176763368 atm
+Power-Thermal : 104.0689570263482 W
+###########
+I :31.8 A
+
+E : 2.9229248557996885 V
+FC Efficiency : 0.36751443420696106
+FC Power : 91.15828026069462 W
+FC Voltage : 2.866612586814296 V
+PH2 : 0.1927167713610408 atm
+PH2O : 0.23720109164354422 atm
+PO2 : 0.1881116589294354 atm
+Power-Thermal : 104.4117197393054 W
+###########
+I :31.9 A
+
+E : 2.922923297673083 V
+FC Efficiency : 0.36745615952090604
+FC Power : 91.43044161199185 W
+FC Voltage : 2.8661580442630674 V
+PH2 : 0.19270272097942642 atm
+PH2O : 0.23718379804821568 atm
+PO2 : 0.18810372609123707 atm
+Power-Thermal : 104.75455838800815 W
+###########
+I :32.0 A
+
+E : 2.922921739480766 V
+FC Efficiency : 0.3673979450104761
+FC Power : 91.70252707461485 W
+FC Voltage : 2.865703971081714 V
+PH2 : 0.19268867059781203 atm
+PH2O : 0.23716650445288712 atm
+PO2 : 0.1880957932530388 atm
+Power-Thermal : 105.09747292538516 W
+###########
+I :32.1 A
+
+E : 2.9229201812227315 V
+FC Efficiency : 0.36733979030010605
+FC Power : 91.97453669534056 W
+FC Voltage : 2.8652503643408274 V
+PH2 : 0.1926746202161976 atm
+PH2O : 0.23714921085755855 atm
+PO2 : 0.18808786041484046 atm
+Power-Thermal : 105.44046330465946 W
+###########
+I :32.2 A
+
+E : 2.922918622898974 V
+FC Efficiency : 0.3672816950177351
+FC Power : 92.24647052065437 W
+FC Voltage : 2.864797221138334 V
+PH2 : 0.1926605698345832 atm
+PH2O : 0.23713191726223 atm
+PO2 : 0.1880799275766422 atm
+Power-Thermal : 105.78352947934566 W
+###########
+I :32.3 A
+
+E : 2.9229170645094884 V
+FC Efficiency : 0.36722365879476393
+FC Power : 92.51832859675281 W
+FC Voltage : 2.8643445385991586 V
+PH2 : 0.19264651945296885 atm
+PH2O : 0.23711462366690148 atm
+PO2 : 0.18807199473844385 atm
+Power-Thermal : 106.12667140324717 W
+###########
+I :32.4 A
+
+E : 2.922915506054269 V
+FC Efficiency : 0.367165681266011
+FC Power : 92.7901109695463 W
+FC Voltage : 2.863892313874886 V
+PH2 : 0.19263246907135445 atm
+PH2O : 0.2370973300715729 atm
+PO2 : 0.18806406190024558 atm
+Power-Thermal : 106.4698890304537 W
+###########
+I :32.5 A
+
+E : 2.9229139475333095 V
+FC Efficiency : 0.36710776206967105
+FC Power : 93.06181768466162 W
+FC Voltage : 2.8634405441434345 V
+PH2 : 0.19261841868974006 atm
+PH2O : 0.23708003647624437 atm
+PO2 : 0.18805612906204724 atm
+Power-Thermal : 106.8131823153384 W
+###########
+I :32.6 A
+
+E : 2.9229123889466053 V
+FC Efficiency : 0.3670499008472737
+FC Power : 93.33344878744475 W
+FC Voltage : 2.8629892266087347 V
+PH2 : 0.19260436830812566 atm
+PH2O : 0.23706274288091583 atm
+PO2 : 0.18804819622384897 atm
+Power-Thermal : 107.15655121255527 W
+###########
+I :32.7 A
+
+E : 2.92291083029415 V
+FC Efficiency : 0.3669920972436416
+FC Power : 93.60500432296325 W
+FC Voltage : 2.862538358500405 V
+PH2 : 0.1925903179265113 atm
+PH2O : 0.2370454492855873 atm
+PO2 : 0.18804026338565064 atm
+Power-Thermal : 107.49999567703678 W
+###########
+I :32.8 A
+
+E : 2.9229092715759397 V
+FC Efficiency : 0.366934350906852
+FC Power : 93.87648433600901 W
+FC Voltage : 2.8620879370734458 V
+PH2 : 0.1925762675448969 atm
+PH2O : 0.23702815569025876 atm
+PO2 : 0.18803233054745236 atm
+Power-Thermal : 107.84351566399098 W
+###########
+I :32.9 A
+
+E : 2.922907712791967 V
+FC Efficiency : 0.3668766614881951
+FC Power : 94.14788887110063 W
+FC Voltage : 2.861637959607922 V
+PH2 : 0.1925622171632825 atm
+PH2O : 0.23701086209493022 atm
+PO2 : 0.18802439770925403 atm
+Power-Thermal : 108.18711112889937 W
+###########
+I :33.0 A
+
+E : 2.922906153942227 V
+FC Efficiency : 0.36681902864213645
+FC Power : 94.41921797248592 W
+FC Voltage : 2.8611884234086644 V
+PH2 : 0.19254816678166814 atm
+PH2O : 0.23699356849960168 atm
+PO2 : 0.18801646487105572 atm
+Power-Thermal : 108.53078202751409 W
+###########
+I :33.1 A
+
+E : 2.9229045950267145 V
+FC Efficiency : 0.36676145202627797
+FC Power : 94.69047168414446 W
+FC Voltage : 2.8607393258049685 V
+PH2 : 0.19253411640005375 atm
+PH2O : 0.23697627490427314 atm
+PO2 : 0.18800853203285742 atm
+Power-Thermal : 108.87452831585556 W
+###########
+I :33.2 A
+
+E : 2.922903036045424 V
+FC Efficiency : 0.36670393130132045
+FC Power : 94.96165004978995 W
+FC Voltage : 2.8602906641502996 V
+PH2 : 0.19252006601843935 atm
+PH2O : 0.2369589813089446 atm
+PO2 : 0.1880005991946591 atm
+Power-Thermal : 109.21834995021007 W
+###########
+I :33.3 A
+
+E : 2.9229014769983492 V
+FC Efficiency : 0.3666464661310256
+FC Power : 95.23275311287259 W
+FC Voltage : 2.859842435822 V
+PH2 : 0.19250601563682498 atm
+PH2O : 0.23694168771361604 atm
+PO2 : 0.1879926663564608 atm
+Power-Thermal : 109.56224688712742 W
+###########
+I :33.4 A
+
+E : 2.922899917885485 V
+FC Efficiency : 0.3665890561821801
+FC Power : 95.50378091658156 W
+FC Voltage : 2.859394638221005 V
+PH2 : 0.1924919652552106 atm
+PH2O : 0.2369243941182875 atm
+PO2 : 0.1879847335182625 atm
+Power-Thermal : 109.90621908341845 W
+###########
+I :33.5 A
+
+E : 2.922898358706826 V
+FC Efficiency : 0.36653170112455885
+FC Power : 95.77473350384724 W
+FC Voltage : 2.8589472687715594 V
+PH2 : 0.1924779148735962 atm
+PH2O : 0.23690710052295896 atm
+PO2 : 0.18797680068006423 atm
+Power-Thermal : 110.25026649615278 W
+###########
+I :33.6 A
+
+E : 2.9228967994623662 V
+FC Efficiency : 0.3664744006308898
+FC Power : 96.04561091734361 W
+FC Voltage : 2.8585003249209406 V
+PH2 : 0.1924638644919818 atm
+PH2O : 0.23688980692763043 atm
+PO2 : 0.1879688678418659 atm
+Power-Thermal : 110.5943890826564 W
+###########
+I :33.7 A
+
+E : 2.922895240152101 V
+FC Efficiency : 0.3664171543768186
+FC Power : 96.31641319949055 W
+FC Voltage : 2.8580538041391854 V
+PH2 : 0.19244981411036743 atm
+PH2O : 0.2368725133323019 atm
+PO2 : 0.18796093500366762 atm
+Power-Thermal : 110.93858680050947 W
+###########
+I :33.8 A
+
+E : 2.9228936807760233 V
+FC Efficiency : 0.36635996204087384
+FC Power : 96.58714039245596 W
+FC Voltage : 2.857607703918816 V
+PH2 : 0.192435763728753 atm
+PH2O : 0.2368552197369733 atm
+PO2 : 0.18795300216546929 atm
+Power-Thermal : 111.28285960754403 W
+###########
+I :33.9 A
+
+E : 2.9228921213341286 V
+FC Efficiency : 0.3663028233044334
+FC Power : 96.8577925381583 W
+FC Voltage : 2.857162021774581 V
+PH2 : 0.19242171334713862 atm
+PH2O : 0.23683792614164476 atm
+PO2 : 0.187945069327271 atm
+Power-Thermal : 111.6272074618417 W
+###########
+I :34.0 A
+
+E : 2.922890561826411 V
+FC Efficiency : 0.36624573785169073
+FC Power : 97.1283696782684 W
+FC Voltage : 2.856716755243188 V
+PH2 : 0.19240766296552422 atm
+PH2O : 0.23682063254631622 atm
+PO2 : 0.18793713648907268 atm
+Power-Thermal : 111.97163032173162 W
+###########
+I :34.1 A
+
+E : 2.922889002252866 V
+FC Efficiency : 0.36618870536962167
+FC Power : 97.39887185421198 W
+FC Voltage : 2.856271901883049 V
+PH2 : 0.19239361258390986 atm
+PH2O : 0.23680333895098768 atm
+PO2 : 0.1879292036508744 atm
+Power-Thermal : 112.31612814578804 W
+###########
+I :34.2 A
+
+E : 2.9228874426134865 V
+FC Efficiency : 0.3661317255479516
+FC Power : 97.66929910717158 W
+FC Voltage : 2.8558274592740225 V
+PH2 : 0.19237956220229546 atm
+PH2O : 0.23678604535565914 atm
+PO2 : 0.18792127081267607 atm
+Power-Thermal : 112.66070089282846 W
+###########
+I :34.3 A
+
+E : 2.9228858829082673 V
+FC Efficiency : 0.36607479807912396
+FC Power : 97.93965147808882 W
+FC Voltage : 2.855383425017167 V
+PH2 : 0.19236551182068107 atm
+PH2O : 0.2367687517603306 atm
+PO2 : 0.1879133379744778 atm
+Power-Thermal : 113.00534852191117 W
+###########
+I :34.4 A
+
+E : 2.922884323137204 V
+FC Efficiency : 0.3660179226582683
+FC Power : 98.20992900766657 W
+FC Voltage : 2.8549397967344934 V
+PH2 : 0.19235146143906667 atm
+PH2O : 0.23675145816500207 atm
+PO2 : 0.18790540513627946 atm
+Power-Thermal : 113.35007099233343 W
+###########
+I :34.5 A
+
+E : 2.922882763300289 V
+FC Efficiency : 0.3659610989831689
+FC Power : 98.48013173637077 W
+FC Voltage : 2.854496572068718 V
+PH2 : 0.1923374110574523 atm
+PH2O : 0.23673416456967353 atm
+PO2 : 0.18789747229808118 atm
+Power-Thermal : 113.69486826362925 W
+###########
+I :34.6 A
+
+E : 2.9228812033975187 V
+FC Efficiency : 0.3659043267542343
+FC Power : 98.75025970443278 W
+FC Voltage : 2.854053748683028 V
+PH2 : 0.1923233606758379 atm
+PH2O : 0.23671687097434496 atm
+PO2 : 0.18788953945988285 atm
+Power-Thermal : 114.03974029556726 W
+###########
+I :34.7 A
+
+E : 2.922879643428886 V
+FC Efficiency : 0.3658476056744668
+FC Power : 99.0203129518512 W
+FC Voltage : 2.853611324260841 V
+PH2 : 0.19230931029422352 atm
+PH2O : 0.23669957737901642 atm
+PO2 : 0.18788160662168454 atm
+Power-Thermal : 114.38468704814883 W
+###########
+I :34.8 A
+
+E : 2.922878083394387 V
+FC Efficiency : 0.36579093544943286
+FC Power : 99.29029151839407 W
+FC Voltage : 2.853169296505577 V
+PH2 : 0.19229525991260915 atm
+PH2O : 0.23668228378368789 atm
+PO2 : 0.18787367378348624 atm
+Power-Thermal : 114.72970848160593 W
+###########
+I :34.9 A
+
+E : 2.922876523294015 V
+FC Efficiency : 0.3657343157872335
+FC Power : 99.5601954436007 W
+FC Voltage : 2.8527276631404215 V
+PH2 : 0.19228120953099476 atm
+PH2O : 0.23666499018835935 atm
+PO2 : 0.18786574094528793 atm
+Power-Thermal : 115.0748045563993 W
+###########
+I :35.0 A
+
+E : 2.922874963127764 V
+FC Efficiency : 0.36567774639847506
+FC Power : 99.8300247667837 W
+FC Voltage : 2.8522864219081057 V
+PH2 : 0.19226715914938036 atm
+PH2O : 0.2366476965930308 atm
+PO2 : 0.18785780810708963 atm
+Power-Thermal : 115.41997523321632 W
+###########
+I :35.1 A
+
+E : 2.92287340289563 V
+FC Efficiency : 0.36562122699624133
+FC Power : 100.09977952703095 W
+FC Voltage : 2.851845570570682 V
+PH2 : 0.192253108767766 atm
+PH2O : 0.23663040299770227 atm
+PO2 : 0.18784987526889133 atm
+Power-Thermal : 115.76522047296908 W
+###########
+I :35.2 A
+
+E : 2.9228718425976057 V
+FC Efficiency : 0.3655647572960642
+FC Power : 100.3694597632074 W
+FC Voltage : 2.851405106909301 V
+PH2 : 0.1922390583861516 atm
+PH2O : 0.23661310940237373 atm
+PO2 : 0.18784194243069305 atm
+Power-Thermal : 116.11054023679262 W
+###########
+I :35.3 A
+
+E : 2.9228702822336867 V
+FC Efficiency : 0.3655083370158974
+FC Power : 100.63906551395719 W
+FC Voltage : 2.850965028724 V
+PH2 : 0.1922250080045372 atm
+PH2O : 0.2365958158070452 atm
+PO2 : 0.18783400959249472 atm
+Power-Thermal : 116.4559344860428 W
+###########
+I :35.4 A
+
+E : 2.9228687218038676 V
+FC Efficiency : 0.36545196587608764
+FC Power : 100.90859681770532 W
+FC Voltage : 2.8505253338334837 V
+PH2 : 0.1922109576229228 atm
+PH2O : 0.23657852221171666 atm
+PO2 : 0.18782607675429644 atm
+Power-Thermal : 116.80140318229468 W
+###########
+I :35.5 A
+
+E : 2.922867161308141 V
+FC Efficiency : 0.3653956435993483
+FC Power : 101.17805371265955 W
+FC Voltage : 2.850086020074917 V
+PH2 : 0.1921969072413084 atm
+PH2O : 0.23656122861638806 atm
+PO2 : 0.1878181439160981 atm
+Power-Thermal : 117.14694628734046 W
+###########
+I :35.6 A
+
+E : 2.922865600746504 V
+FC Efficiency : 0.3653393699107332
+FC Power : 101.44743623681241 W
+FC Voltage : 2.8496470853037192 V
+PH2 : 0.19218285685969402 atm
+PH2O : 0.23654393502105953 atm
+PO2 : 0.18781021107789983 atm
+Power-Thermal : 117.49256376318762 W
+###########
+I :35.7 A
+
+E : 2.9228640401189487 V
+FC Efficiency : 0.3652831445376092
+FC Power : 101.71674442794267 W
+FC Voltage : 2.849208527393352 V
+PH2 : 0.19216880647807963 atm
+PH2O : 0.236526641425731 atm
+PO2 : 0.1878022782397015 atm
+Power-Thermal : 117.83825557205735 W
+###########
+I :35.8 A
+
+E : 2.9228624794254716 V
+FC Efficiency : 0.3652269672096316
+FC Power : 101.98597832361753 W
+FC Voltage : 2.8487703442351267 V
+PH2 : 0.19215475609646523 atm
+PH2O : 0.23650934783040245 atm
+PO2 : 0.18779434540150322 atm
+Power-Thermal : 118.18402167638247 W
+###########
+I :35.9 A
+
+E : 2.9228609186660655 V
+FC Efficiency : 0.36517083765871755
+FC Power : 102.2551379611941 W
+FC Voltage : 2.848332533737997 V
+PH2 : 0.19214070571485087 atm
+PH2O : 0.23649205423507388 atm
+PO2 : 0.1877864125633049 atm
+Power-Thermal : 118.52986203880592 W
+###########
+I :36.0 A
+
+E : 2.922859357840725 V
+FC Efficiency : 0.36511475561902146
+FC Power : 102.52422337782123 W
+FC Voltage : 2.8478950938283676 V
+PH2 : 0.19212665533323647 atm
+PH2O : 0.23647476063974535 atm
+PO2 : 0.1877784797251066 atm
+Power-Thermal : 118.87577662217878 W
+###########
+I :36.1 A
+
+E : 2.922857796949445 V
+FC Efficiency : 0.36505872082691027
+FC Power : 102.7932346104414 W
+FC Voltage : 2.8474580224499 V
+PH2 : 0.19211260495162208 atm
+PH2O : 0.2364574670444168 atm
+PO2 : 0.18777054688690828 atm
+Power-Thermal : 119.22176538955863 W
+###########
+I :36.2 A
+
+E : 2.92285623599222 V
+FC Efficiency : 0.3650027330209384
+FC Power : 103.06217169579217 W
+FC Voltage : 2.8470213175633194 V
+PH2 : 0.1920985545700077 atm
+PH2O : 0.23644017344908827 atm
+PO2 : 0.18776261404871 atm
+Power-Thermal : 119.56782830420786 W
+###########
+I :36.3 A
+
+E : 2.9228546749690443 V
+FC Efficiency : 0.3649467919418242
+FC Power : 103.3310346704081 W
+FC Voltage : 2.846584977146229 V
+PH2 : 0.19208450418839332 atm
+PH2O : 0.23642287985375973 atm
+PO2 : 0.18775468121051167 atm
+Power-Thermal : 119.9139653295919 W
+###########
+I :36.4 A
+
+E : 2.9228531138799125 V
+FC Efficiency : 0.3648908973324259
+FC Power : 103.59982357062236 W
+FC Voltage : 2.846148999192922 V
+PH2 : 0.19207045380677892 atm
+PH2O : 0.2364055862584312 atm
+PO2 : 0.18774674837231337 atm
+Power-Thermal : 120.26017642937765 W
+###########
+I :36.5 A
+
+E : 2.9228515527248184 V
+FC Efficiency : 0.36483504893771784
+FC Power : 103.86853843256827 W
+FC Voltage : 2.8457133817141993 V
+PH2 : 0.19205640342516453 atm
+PH2O : 0.23638829266310266 atm
+PO2 : 0.18773881553411506 atm
+Power-Thermal : 120.60646156743174 W
+###########
+I :36.6 A
+
+E : 2.922849991503757 V
+FC Efficiency : 0.36477924650476795
+FC Power : 104.13717929218116 W
+FC Voltage : 2.84527812273719 V
+PH2 : 0.19204235304355016 atm
+PH2O : 0.23637099906777412 atm
+PO2 : 0.18773088269591676 atm
+Power-Thermal : 120.95282070781886 W
+###########
+I :36.7 A
+
+E : 2.922848430216723 V
+FC Efficiency : 0.3647234897827144
+FC Power : 104.40574618519985 W
+FC Voltage : 2.844843220305173 V
+PH2 : 0.19202830266193577 atm
+PH2O : 0.23635370547244558 atm
+PO2 : 0.18772294985771848 atm
+Power-Thermal : 121.29925381480018 W
+###########
+I :36.8 A
+
+E : 2.9228468688637097 V
+FC Efficiency : 0.36466777852274307
+FC Power : 104.67423914716818 W
+FC Voltage : 2.8444086724773965 V
+PH2 : 0.19201425228032137 atm
+PH2O : 0.23633641187711704 atm
+PO2 : 0.18771501701952015 atm
+Power-Thermal : 121.64576085283181 W
+###########
+I :36.9 A
+
+E : 2.9228453074447125 V
+FC Efficiency : 0.36461211247806574
+FC Power : 104.94265821343689 W
+FC Voltage : 2.843974477328913 V
+PH2 : 0.192000201898707 atm
+PH2O : 0.23631911828178848 atm
+PO2 : 0.18770708418132187 atm
+Power-Thermal : 121.99234178656312 W
+###########
+I :37.0 A
+
+E : 2.9228437459597254 V
+FC Efficiency : 0.3645564914038976
+FC Power : 105.21100341916487 W
+FC Voltage : 2.843540632950402 V
+PH2 : 0.1919861515170926 atm
+PH2O : 0.23630182468645994 atm
+PO2 : 0.18769915134312354 atm
+Power-Thermal : 122.33899658083514 W
+###########
+I :37.1 A
+
+E : 2.9228421844087435 V
+FC Efficiency : 0.36450091505743626
+FC Power : 105.47927479932092 W
+FC Voltage : 2.843107137448003 V
+PH2 : 0.19197210113547822 atm
+PH2O : 0.2362845310911314 atm
+PO2 : 0.18769121850492526 atm
+Power-Thermal : 122.6857252006791 W
+###########
+I :37.2 A
+
+E : 2.9228406227917603 V
+FC Efficiency : 0.3644453831978396
+FC Power : 105.74747238868514 W
+FC Voltage : 2.8426739889431487 V
+PH2 : 0.1919580507538638 atm
+PH2O : 0.2362672374958028 atm
+PO2 : 0.18768328566672693 atm
+Power-Thermal : 123.03252761131489 W
+###########
+I :37.3 A
+
+E : 2.9228390611087707 V
+FC Efficiency : 0.3643898955862054
+FC Power : 106.0155962218506 W
+FC Voltage : 2.8422411855724024 V
+PH2 : 0.1919440003722494 atm
+PH2O : 0.23624994390047427 atm
+PO2 : 0.18767535282852865 atm
+Power-Thermal : 123.3794037781494 W
+###########
+I :37.4 A
+
+E : 2.922837499359769 V
+FC Efficiency : 0.3643344519855504
+FC Power : 106.28364633322477 W
+FC Voltage : 2.8418087254872932 V
+PH2 : 0.19192994999063503 atm
+PH2O : 0.23623265030514573 atm
+PO2 : 0.18766741999033032 atm
+Power-Thermal : 123.72635366677524 W
+###########
+I :37.5 A
+
+E : 2.9228359375447495 V
+FC Efficiency : 0.3642790521607897
+FC Power : 106.55162275703098 W
+FC Voltage : 2.8413766068541597 V
+PH2 : 0.19191589960902064 atm
+PH2O : 0.2362153567098172 atm
+PO2 : 0.18765948715213204 atm
+Power-Thermal : 124.07337724296903 W
+###########
+I :37.6 A
+
+E : 2.9228343756637063 V
+FC Efficiency : 0.36422369587871634
+FC Power : 106.81952552730993 W
+FC Voltage : 2.8409448278539875 V
+PH2 : 0.19190184922740625 atm
+PH2O : 0.23619806311448865 atm
+PO2 : 0.1876515543139337 atm
+Power-Thermal : 124.42047447269009 W
+###########
+I :37.7 A
+
+E : 2.9228328137166355 V
+FC Efficiency : 0.3641683829079821
+FC Power : 107.08735467792123 W
+FC Voltage : 2.8405133866822605 V
+PH2 : 0.19188779884579188 atm
+PH2O : 0.23618076951916012 atm
+PO2 : 0.18764362147573543 atm
+Power-Thermal : 124.7676453220788 W
+###########
+I :37.8 A
+
+E : 2.9228312517035295 V
+FC Efficiency : 0.36411311301907673
+FC Power : 107.35511024254458 W
+FC Voltage : 2.8400822815487987 V
+PH2 : 0.19187374846417748 atm
+PH2O : 0.23616347592383158 atm
+PO2 : 0.1876356886375371 atm
+Power-Thermal : 125.11488975745542 W
+###########
+I :37.9 A
+
+E : 2.9228296896243835 V
+FC Efficiency : 0.3640578859843093
+FC Power : 107.62279225468151 W
+FC Voltage : 2.8396515106776126 V
+PH2 : 0.1918596980825631 atm
+PH2O : 0.23614618232850304 atm
+PO2 : 0.18762775579933882 atm
+Power-Thermal : 125.4622077453185 W
+###########
+I :38.0 A
+
+E : 2.9228281274791916 V
+FC Efficiency : 0.36400270157778886
+FC Power : 107.89040074765663 W
+FC Voltage : 2.8392210723067532 V
+PH2 : 0.19184564770094872 atm
+PH2O : 0.2361288887331745 atm
+PO2 : 0.1876198229611405 atm
+Power-Thermal : 125.80959925234339 W
+###########
+I :38.1 A
+
+E : 2.922826565267949 V
+FC Efficiency : 0.3639475595754055
+FC Power : 108.15793575461902 W
+FC Voltage : 2.838790964688163 V
+PH2 : 0.19183159731933433 atm
+PH2O : 0.23611159513784596 atm
+PO2 : 0.18761189012294222 atm
+Power-Thermal : 126.15706424538101 W
+###########
+I :38.2 A
+
+E : 2.92282500299065 V
+FC Efficiency : 0.36389245975481155
+FC Power : 108.42539730854367 W
+FC Voltage : 2.83836118608753 V
+PH2 : 0.19181754693771993 atm
+PH2O : 0.2360943015425174 atm
+PO2 : 0.18760395728474388 atm
+Power-Thermal : 126.50460269145637 W
+###########
+I :38.3 A
+
+E : 2.922823440647288 V
+FC Efficiency : 0.3638374018954032
+FC Power : 108.69278544223276 W
+FC Voltage : 2.8379317347841453 V
+PH2 : 0.19180349655610554 atm
+PH2O : 0.23607700794718886 atm
+PO2 : 0.18759602444654558 atm
+Power-Thermal : 126.85221455776724 W
+###########
+I :38.4 A
+
+E : 2.9228218782378583 V
+FC Efficiency : 0.36378238577830246
+FC Power : 108.96010018831716 W
+FC Voltage : 2.8375026090707594 V
+PH2 : 0.19178944617449117 atm
+PH2O : 0.23605971435186032 atm
+PO2 : 0.1875880916083473 atm
+Power-Thermal : 127.19989981168285 W
+###########
+I :38.5 A
+
+E : 2.9228203157623556 V
+FC Efficiency : 0.36372741118633906
+FC Power : 109.22734157925763 W
+FC Voltage : 2.8370738072534447 V
+PH2 : 0.19177539579287678 atm
+PH2O : 0.23604242075653178 atm
+PO2 : 0.18758015877014897 atm
+Power-Thermal : 127.5476584207424 W
+###########
+I :38.6 A
+
+E : 2.9228187532207732 V
+FC Efficiency : 0.3636724779040327
+FC Power : 109.49450964734618 W
+FC Voltage : 2.836645327651455 V
+PH2 : 0.19176134541126238 atm
+PH2O : 0.23602512716120325 atm
+PO2 : 0.1875722259319507 atm
+Power-Thermal : 127.89549035265385 W
+###########
+I :38.7 A
+
+E : 2.922817190613106 V
+FC Efficiency : 0.3636175857175756
+FC Power : 109.76160442470737 W
+FC Voltage : 2.8362171685970896 V
+PH2 : 0.19174729502964802 atm
+PH2O : 0.2360078335658747 atm
+PO2 : 0.18756429309375236 atm
+Power-Thermal : 128.24339557529265 W
+###########
+I :38.8 A
+
+E : 2.9228156279393493 V
+FC Efficiency : 0.3635627344148157
+FC Power : 110.02862594329982 W
+FC Voltage : 2.8357893284355624 V
+PH2 : 0.19173324464803362 atm
+PH2O : 0.23599053997054617 atm
+PO2 : 0.18755636025555408 atm
+Power-Thermal : 128.59137405670018 W
+###########
+I :38.9 A
+
+E : 2.9228140651994963 V
+FC Efficiency : 0.3635079237852384
+FC Power : 110.29557423491705 W
+FC Voltage : 2.83536180552486 V
+PH2 : 0.19171919426641923 atm
+PH2O : 0.23597324637521763 atm
+PO2 : 0.18754842741735575 atm
+Power-Thermal : 128.93942576508294 W
+###########
+I :39.0 A
+
+E : 2.9228125023935414 V
+FC Efficiency : 0.3634531536199512
+FC Power : 110.56244933118916 W
+FC Voltage : 2.8349345982356193 V
+PH2 : 0.1917051438848048 atm
+PH2O : 0.23595595277988904 atm
+PO2 : 0.18754049457915747 atm
+Power-Thermal : 129.28755066881087 W
+###########
+I :39.1 A
+
+E : 2.9228109395214803 V
+FC Efficiency : 0.36339842371166614
+FC Power : 110.82925126358396 W
+FC Voltage : 2.834507704950996 V
+PH2 : 0.1916910935031904 atm
+PH2O : 0.2359386591845605 atm
+PO2 : 0.18753256174095914 atm
+Power-Thermal : 129.63574873641608 W
+###########
+I :39.2 A
+
+E : 2.922809376583306 V
+FC Efficiency : 0.36334373385468355
+FC Power : 111.09598006340806 W
+FC Voltage : 2.834081124066532 V
+PH2 : 0.19167704312157605 atm
+PH2O : 0.23592136558923196 atm
+PO2 : 0.18752462890276086 atm
+Power-Thermal : 129.98401993659198 W
+###########
+I :39.3 A
+
+E : 2.922807813579013 V
+FC Efficiency : 0.3632890838448763
+FC Power : 111.36263576180838 W
+FC Voltage : 2.8336548539900352 V
+PH2 : 0.19166299273996165 atm
+PH2O : 0.23590407199390342 atm
+PO2 : 0.18751669606456253 atm
+Power-Thermal : 130.33236423819162 W
+###########
+I :39.4 A
+
+E : 2.9228062505085974 V
+FC Efficiency : 0.36323447347967336
+FC Power : 111.6292183897732 W
+FC Voltage : 2.833228893141452 V
+PH2 : 0.19164894235834726 atm
+PH2O : 0.2358867783985749 atm
+PO2 : 0.18750876322636426 atm
+Power-Thermal : 130.6807816102268 W
+###########
+I :39.5 A
+
+E : 2.9228046873720515 V
+FC Efficiency : 0.3631799025580437
+FC Power : 111.89572797813328 W
+FC Voltage : 2.8328032399527414 V
+PH2 : 0.1916348919767329 atm
+PH2O : 0.23586948480324632 atm
+PO2 : 0.18750083038816592 atm
+Power-Thermal : 131.02927202186672 W
+###########
+I :39.6 A
+
+E : 2.922803124169371 V
+FC Efficiency : 0.36312537088048213
+FC Power : 112.16216455756333 W
+FC Voltage : 2.8323778928677608 V
+PH2 : 0.1916208415951185 atm
+PH2O : 0.23585219120791778 atm
+PO2 : 0.18749289754996765 atm
+Power-Thermal : 131.3778354424367 W
+###########
+I :39.7 A
+
+E : 2.9228015609005493 V
+FC Efficiency : 0.36307087824899215
+FC Power : 112.42852815858292 W
+FC Voltage : 2.8319528503421387 V
+PH2 : 0.1916067912135041 atm
+PH2O : 0.23583489761258924 atm
+PO2 : 0.18748496471176931 atm
+Power-Thermal : 131.72647184141712 W
+###########
+I :39.8 A
+
+E : 2.9227999975655816 V
+FC Efficiency : 0.36301642446707183
+FC Power : 112.69481881155778 W
+FC Voltage : 2.8315281108431605 V
+PH2 : 0.19159274083188974 atm
+PH2O : 0.2358176040172607 atm
+PO2 : 0.18747703187357104 atm
+Power-Thermal : 132.07518118844223 W
+###########
+I :39.9 A
+
+E : 2.9227984341644624 V
+FC Efficiency : 0.36296200933969874
+FC Power : 112.96103654670105 W
+FC Voltage : 2.8311036728496504 V
+PH2 : 0.19157869045027534 atm
+PH2O : 0.23580031042193217 atm
+PO2 : 0.1874690990353727 atm
+Power-Thermal : 132.42396345329897 W
+###########
+I :40.0 A
+
+E : 2.9227968706971854 V
+FC Efficiency : 0.36290763267331455
+FC Power : 113.22718139407415 W
+FC Voltage : 2.830679534851854 V
+PH2 : 0.19156464006866095 atm
+PH2O : 0.23578301682660363 atm
+PO2 : 0.1874611661971744 atm
+Power-Thermal : 132.77281860592586 W
+###########
+I :40.1 A
+
+E : 2.922795307163746 V
+FC Efficiency : 0.36285329427581114
+FC Power : 113.49325338358823 W
+FC Voltage : 2.8302556953513274 V
+PH2 : 0.19155058968704655 atm
+PH2O : 0.2357657232312751 atm
+PO2 : 0.18745323335897612 atm
+Power-Thermal : 133.1217466164118 W
+###########
+I :40.2 A
+
+E : 2.922793743564137 V
+FC Efficiency : 0.36279899395651577
+FC Power : 113.7592525450051 W
+FC Voltage : 2.8298321528608232 V
+PH2 : 0.19153653930543219 atm
+PH2O : 0.23574842963594655 atm
+PO2 : 0.1874453005207778 atm
+Power-Thermal : 133.47074745499492 W
+###########
+I :40.3 A
+
+E : 2.9227921798983547 V
+FC Efficiency : 0.36274473152617664
+FC Power : 114.02517890793838 W
+FC Voltage : 2.8294089059041783 V
+PH2 : 0.1915224889238178 atm
+PH2O : 0.23573113604061802 atm
+PO2 : 0.18743736768257951 atm
+Power-Thermal : 133.81982109206163 W
+###########
+I :40.4 A
+
+E : 2.9227906161663917 V
+FC Efficiency : 0.3626905067969492
+FC Power : 114.29103250185464 W
+FC Voltage : 2.828985953016204 V
+PH2 : 0.1915084385422034 atm
+PH2O : 0.23571384244528945 atm
+PO2 : 0.18742943484438118 atm
+Power-Thermal : 134.16896749814538 W
+###########
+I :40.5 A
+
+E : 2.9227890523682443 V
+FC Efficiency : 0.36263631958238224
+FC Power : 114.55681335607456 W
+FC Voltage : 2.8285632927425817 V
+PH2 : 0.19149438816058903 atm
+PH2O : 0.2356965488499609 atm
+PO2 : 0.1874215020061829 atm
+Power-Thermal : 134.51818664392545 W
+###########
+I :40.6 A
+
+E : 2.9227874885039054 V
+FC Efficiency : 0.3625821696974034
+FC Power : 114.82252149977374 W
+FC Voltage : 2.8281409236397472 V
+PH2 : 0.19148033777897464 atm
+PH2O : 0.23567925525463237 atm
+PO2 : 0.18741356916798457 atm
+Power-Thermal : 134.86747850022627 W
+###########
+I :40.7 A
+
+E : 2.92278592457337 V
+FC Efficiency : 0.36252805695830687
+FC Power : 115.08815696198413 W
+FC Voltage : 2.827718844274794 V
+PH2 : 0.1914662873973602 atm
+PH2O : 0.2356619616593038 atm
+PO2 : 0.1874056363297863 atm
+Power-Thermal : 135.2168430380159 W
+###########
+I :40.8 A
+
+E : 2.9227843605766326 V
+FC Efficiency : 0.36247398118273877
+FC Power : 115.35371977159478 W
+FC Voltage : 2.8272970532253625 V
+PH2 : 0.19145223701574582 atm
+PH2O : 0.23564466806397524 atm
+PO2 : 0.18739770349158796 atm
+Power-Thermal : 135.56628022840522 W
+###########
+I :40.9 A
+
+E : 2.9227827965136868 V
+FC Efficiency : 0.3624199421896844
+FC Power : 115.61920995735312 W
+FC Voltage : 2.8268755490795385 V
+PH2 : 0.19143818663413142 atm
+PH2O : 0.2356273744686467 atm
+PO2 : 0.1873897706533897 atm
+Power-Thermal : 135.91579004264688 W
+###########
+I :41.0 A
+
+E : 2.9227812323845277 V
+FC Efficiency : 0.36236593979945564
+FC Power : 115.88462754786593 W
+FC Voltage : 2.8264543304357543 V
+PH2 : 0.19142413625251706 atm
+PH2O : 0.23561008087331817 atm
+PO2 : 0.18738183781519135 atm
+Power-Thermal : 136.26537245213407 W
+###########
+I :41.1 A
+
+E : 2.9227796681891496 V
+FC Efficiency : 0.362311973833677
+FC Power : 116.1499725716002 W
+FC Voltage : 2.826033395902681 V
+PH2 : 0.19141008587090266 atm
+PH2O : 0.23559278727798963 atm
+PO2 : 0.18737390497699308 atm
+Power-Thermal : 136.61502742839983 W
+###########
+I :41.2 A
+
+E : 2.9227781039275467 V
+FC Efficiency : 0.36225804411527385
+FC Power : 116.41524505688442 W
+FC Voltage : 2.825612744099136 V
+PH2 : 0.19139603548928827 atm
+PH2O : 0.2355754936826611 atm
+PO2 : 0.18736597213879475 atm
+Power-Thermal : 136.96475494311562 W
+###########
+I :41.3 A
+
+E : 2.922776539599714 V
+FC Efficiency : 0.3622041504684593
+FC Power : 116.68044503190946 W
+FC Voltage : 2.8251923736539823 V
+PH2 : 0.1913819851076739 atm
+PH2O : 0.23555820008733255 atm
+PO2 : 0.18735803930059647 atm
+Power-Thermal : 137.31455496809053 W
+###########
+I :41.4 A
+
+E : 2.9227749752056447 V
+FC Efficiency : 0.3621502927187213
+FC Power : 116.94557252472947 W
+FC Voltage : 2.824772283206026 V
+PH2 : 0.1913679347260595 atm
+PH2O : 0.23554090649200402 atm
+PO2 : 0.18735010646239814 atm
+Power-Thermal : 137.66442747527054 W
+###########
+I :41.5 A
+
+E : 2.9227734107453345 V
+FC Efficiency : 0.3620964706928116
+FC Power : 117.2106275632631 W
+FC Voltage : 2.8243524714039303 V
+PH2 : 0.1913538843444451 atm
+PH2O : 0.23552361289667548 atm
+PO2 : 0.18734217362419986 atm
+Power-Thermal : 138.01437243673692 W
+###########
+I :41.6 A
+
+E : 2.9227718462187773 V
+FC Efficiency : 0.3620426842187325
+FC Power : 117.47561017529432 W
+FC Voltage : 2.8239329369061132 V
+PH2 : 0.19133983396283075 atm
+PH2O : 0.23550631930134694 atm
+PO2 : 0.18733424078600155 atm
+Power-Thermal : 138.3643898247057 W
+###########
+I :41.7 A
+
+E : 2.922770281625967 V
+FC Efficiency : 0.3619889331257249
+FC Power : 117.7405203884733 W
+FC Voltage : 2.8235136783806545 V
+PH2 : 0.19132578358121635 atm
+PH2O : 0.23548902570601837 atm
+PO2 : 0.18732630794780322 atm
+Power-Thermal : 138.71447961152674 W
+###########
+I :41.8 A
+
+E : 2.9227687169668988 V
+FC Efficiency : 0.3619352172442574
+FC Power : 118.00535823031768 W
+FC Voltage : 2.823094694505208 V
+PH2 : 0.19131173319960196 atm
+PH2O : 0.23547173211068984 atm
+PO2 : 0.18731837510960495 atm
+Power-Thermal : 139.0646417696823 W
+###########
+I :41.9 A
+
+E : 2.9227671522415664 V
+FC Efficiency : 0.3618815364060131
+FC Power : 118.2701237282132 W
+FC Voltage : 2.8226759839669024 V
+PH2 : 0.19129768281798756 atm
+PH2O : 0.2354544385153613 atm
+PO2 : 0.1873104422714066 atm
+Power-Thermal : 139.4148762717868 W
+###########
+I :42.0 A
+
+E : 2.9227655874499647 V
+FC Efficiency : 0.36182789044387936
+FC Power : 118.53481690941487 W
+FC Voltage : 2.822257545462259 V
+PH2 : 0.1912836324363732 atm
+PH2O : 0.23543714492003276 atm
+PO2 : 0.18730250943320834 atm
+Power-Thermal : 139.76518309058514 W
+###########
+I :42.1 A
+
+E : 2.9227640225920877 V
+FC Efficiency : 0.3617742791919355
+FC Power : 118.79943780104779 W
+FC Voltage : 2.821839377697097 V
+PH2 : 0.1912695820547588 atm
+PH2O : 0.23541985132470422 atm
+PO2 : 0.18729457659501 atm
+Power-Thermal : 140.11556219895223 W
+###########
+I :42.2 A
+
+E : 2.92276245766793 V
+FC Efficiency : 0.3617207024854418
+FC Power : 119.06398643010803 W
+FC Voltage : 2.821421479386446 V
+PH2 : 0.1912555316731444 atm
+PH2O : 0.23540255772937568 atm
+PO2 : 0.18728664375681173 atm
+Power-Thermal : 140.466013569892 W
+###########
+I :42.3 A
+
+E : 2.9227608926774855 V
+FC Efficiency : 0.36166716016082834
+FC Power : 119.3284628234637 W
+FC Voltage : 2.821003849254461 V
+PH2 : 0.19124148129153004 atm
+PH2O : 0.23538526413404715 atm
+PO2 : 0.1872787109186134 atm
+Power-Thermal : 140.8165371765363 W
+###########
+I :42.4 A
+
+E : 2.9227593276207497 V
+FC Efficiency : 0.361613652055684
+FC Power : 119.59286700785584 W
+FC Voltage : 2.820586486034336 V
+PH2 : 0.19122743090991565 atm
+PH2O : 0.2353679705387186 atm
+PO2 : 0.18727077808041512 atm
+Power-Thermal : 141.16713299214416 W
+###########
+I :42.5 A
+
+E : 2.922757762497716 V
+FC Efficiency : 0.3615601780087453
+FC Power : 119.85719900989906 W
+FC Voltage : 2.820169388468213 V
+PH2 : 0.19121338052830122 atm
+PH2O : 0.23535067694339 atm
+PO2 : 0.18726284524221679 atm
+Power-Thermal : 141.51780099010097 W
+###########
+I :42.6 A
+
+E : 2.9227561973083787 V
+FC Efficiency : 0.3615067378598856
+FC Power : 120.1214588560828 W
+FC Voltage : 2.8197525553071077 V
+PH2 : 0.19119933014668683 atm
+PH2O : 0.23533338334806148 atm
+PO2 : 0.1872549124040185 atm
+Power-Thermal : 141.86854114391724 W
+###########
+I :42.7 A
+
+E : 2.922754632052733 V
+FC Efficiency : 0.3614533314501049
+FC Power : 120.38564657277196 W
+FC Voltage : 2.8193359853108184 V
+PH2 : 0.19118527976507244 atm
+PH2O : 0.23531608975273294 atm
+PO2 : 0.18724697956582018 atm
+Power-Thermal : 142.21935342722807 W
+###########
+I :42.8 A
+
+E : 2.9227530667307726 V
+FC Efficiency : 0.3613999586215188
+FC Power : 120.64976218620784 W
+FC Voltage : 2.818919677247847 V
+PH2 : 0.19117122938345807 atm
+PH2O : 0.2352987961574044 atm
+PO2 : 0.1872390467276219 atm
+Power-Thermal : 142.57023781379215 W
+###########
+I :42.9 A
+
+E : 2.9227515013424927 V
+FC Efficiency : 0.36134661921734845
+FC Power : 120.91380572250915 W
+FC Voltage : 2.8185036298953183 V
+PH2 : 0.19115717900184367 atm
+PH2O : 0.23528150256207586 atm
+PO2 : 0.18723111388942357 atm
+Power-Thermal : 142.92119427749086 W
+###########
+I :43.0 A
+
+E : 2.922749935887887 V
+FC Efficiency : 0.3612933130819097
+FC Power : 121.17777720767253 W
+FC Voltage : 2.818087842038896 V
+PH2 : 0.19114312862022928 atm
+PH2O : 0.2352642089667473 atm
+PO2 : 0.1872231810512253 atm
+Power-Thermal : 143.27222279232748 W
+###########
+I :43.1 A
+
+E : 2.9227483703669495 V
+FC Efficiency : 0.3612400400606038
+FC Power : 121.4416766675738 W
+FC Voltage : 2.81767231247271 V
+PH2 : 0.1911290782386149 atm
+PH2O : 0.23524691537141876 atm
+PO2 : 0.18721524821302696 atm
+Power-Thermal : 143.62332333242622 W
+###########
+I :43.2 A
+
+E : 2.9227468047796745 V
+FC Efficiency : 0.3611867999999064
+FC Power : 121.70550412796848 W
+FC Voltage : 2.8172570399992702 V
+PH2 : 0.19111502785700052 atm
+PH2O : 0.23522962177609022 atm
+PO2 : 0.18720731537482868 atm
+Power-Thermal : 143.97449587203155 W
+###########
+I :43.3 A
+
+E : 2.9227452391260575 V
+FC Efficiency : 0.3611335927473583
+FC Power : 121.9692596144928 W
+FC Voltage : 2.816842023429395 V
+PH2 : 0.19110097747538612 atm
+PH2O : 0.23521232818076168 atm
+PO2 : 0.18719938253663038 atm
+Power-Thermal : 144.3257403855072 W
+###########
+I :43.4 A
+
+E : 2.922743673406093 V
+FC Efficiency : 0.3610804181515556
+FC Power : 122.2329431526646 W
+FC Voltage : 2.8164272615821337 V
+PH2 : 0.19108692709377176 atm
+PH2O : 0.23519503458543314 atm
+PO2 : 0.18719144969843204 atm
+Power-Thermal : 144.6770568473354 W
+###########
+I :43.5 A
+
+E : 2.922742107619774 V
+FC Efficiency : 0.36102727606213897
+FC Power : 122.49655476788377 W
+FC Voltage : 2.816012753284684 V
+PH2 : 0.19107287671215736 atm
+PH2O : 0.2351777409901046 atm
+PO2 : 0.18718351686023377 atm
+Power-Thermal : 145.02844523211627 W
+###########
+I :43.6 A
+
+E : 2.9227405417670953 V
+FC Efficiency : 0.36097416632978563
+FC Power : 122.76009448543351 W
+FC Voltage : 2.8155984973723283 V
+PH2 : 0.19105882633054297 atm
+PH2O : 0.23516044739477607 atm
+PO2 : 0.18717558402203543 atm
+Power-Thermal : 145.3799055145665 W
+###########
+I :43.7 A
+
+E : 2.922738975848052 V
+FC Efficiency : 0.360921088806199
+FC Power : 123.023562330481 W
+FC Voltage : 2.8151844926883522 V
+PH2 : 0.19104477594892857 atm
+PH2O : 0.23514315379944753 atm
+PO2 : 0.18716765118383716 atm
+Power-Thermal : 145.73143766951904 W
+###########
+I :43.8 A
+
+E : 2.9227374098626377 V
+FC Efficiency : 0.3608680433440989
+FC Power : 123.28695832807794 W
+FC Voltage : 2.8147707380839715 V
+PH2 : 0.1910307255673142 atm
+PH2O : 0.235125860204119 atm
+PO2 : 0.18715971834563883 atm
+Power-Thermal : 146.08304167192205 W
+###########
+I :43.9 A
+
+E : 2.9227358438108473 V
+FC Efficiency : 0.36081502979721314
+FC Power : 123.55028250316172 W
+FC Voltage : 2.8143572324182626 V
+PH2 : 0.1910166751856998 atm
+PH2O : 0.23510856660879045 atm
+PO2 : 0.18715178550744055 atm
+Power-Thermal : 146.4347174968383 W
+###########
+I :44.0 A
+
+E : 2.9227342776926757 V
+FC Efficiency : 0.3607620480202681
+FC Power : 123.81353488055603 W
+FC Voltage : 2.8139439745580916 V
+PH2 : 0.19100262480408542 atm
+PH2O : 0.2350912730134619 atm
+PO2 : 0.18714385266924222 atm
+Power-Thermal : 146.786465119444 W
+###########
+I :44.1 A
+
+E : 2.9227327115081154 V
+FC Efficiency : 0.360709097868979
+FC Power : 124.0767154849714 W
+FC Voltage : 2.813530963378036 V
+PH2 : 0.19098857442247105 atm
+PH2O : 0.23507397941813335 atm
+PO2 : 0.18713591983104394 atm
+Power-Thermal : 147.13828451502863 W
+###########
+I :44.2 A
+
+E : 2.9227311452571625 V
+FC Efficiency : 0.36065617920004195
+FC Power : 124.33982434100648 W
+FC Voltage : 2.8131181977603275 V
+PH2 : 0.19097452404085663 atm
+PH2O : 0.23505668582280478 atm
+PO2 : 0.1871279869928456 atm
+Power-Thermal : 147.49017565899356 W
+###########
+I :44.3 A
+
+E : 2.9227295789398107 V
+FC Efficiency : 0.36060329187112444
+FC Power : 124.60286147314835 W
+FC Voltage : 2.812705676594771 V
+PH2 : 0.19096047365924224 atm
+PH2O : 0.23503939222747622 atm
+PO2 : 0.18712005415464733 atm
+Power-Thermal : 147.84213852685164 W
+###########
+I :44.4 A
+
+E : 2.922728012556054 V
+FC Efficiency : 0.3605504357408568
+FC Power : 124.86582690577353 W
+FC Voltage : 2.8122933987786833 V
+PH2 : 0.19094642327762784 atm
+PH2O : 0.23502209863214768 atm
+PO2 : 0.187112121316449 atm
+Power-Thermal : 148.19417309422647 W
+###########
+I :44.5 A
+
+E : 2.9227264461058877 V
+FC Efficiency : 0.3604976106688235
+FC Power : 125.12872066314864 W
+FC Voltage : 2.8118813632168234 V
+PH2 : 0.19093237289601345 atm
+PH2O : 0.23500480503681914 atm
+PO2 : 0.18710418847825072 atm
+Power-Thermal : 148.54627933685137 W
+###########
+I :44.6 A
+
+E : 2.922724879589306 V
+FC Efficiency : 0.3604448165155544
+FC Power : 125.39154276943106 W
+FC Voltage : 2.811469568821324 V
+PH2 : 0.19091832251439908 atm
+PH2O : 0.2349875114414906 atm
+PO2 : 0.1870962556400524 atm
+Power-Thermal : 148.89845723056897 W
+###########
+I :44.7 A
+
+E : 2.9227233130063017 V
+FC Efficiency : 0.3603920531425164
+FC Power : 125.65429324866977 W
+FC Voltage : 2.811058014511628 V
+PH2 : 0.19090427213278469 atm
+PH2O : 0.23497021784616207 atm
+PO2 : 0.1870883228018541 atm
+Power-Thermal : 149.25070675133026 W
+###########
+I :44.8 A
+
+E : 2.9227217463568715 V
+FC Efficiency : 0.36033932041210565
+FC Power : 125.91697212480621 W
+FC Voltage : 2.8106466992144243 V
+PH2 : 0.1908902217511703 atm
+PH2O : 0.23495292425083353 atm
+PO2 : 0.18708038996365578 atm
+Power-Thermal : 149.6030278751938 W
+###########
+I :44.9 A
+
+E : 2.9227201796410087 V
+FC Efficiency : 0.3602866181876382
+FC Power : 126.17957942167465 W
+FC Voltage : 2.810235621863578 V
+PH2 : 0.19087617136955592 atm
+PH2O : 0.234935630655505 atm
+PO2 : 0.1870724571254575 atm
+Power-Thermal : 149.95542057832535 W
+###########
+I :45.0 A
+
+E : 2.9227186128587066 V
+FC Efficiency : 0.3602339463333422
+FC Power : 126.44211516300312 W
+FC Voltage : 2.8098247814000694 V
+PH2 : 0.19086212098794153 atm
+PH2O : 0.23491833706017645 atm
+PO2 : 0.1870645242872592 atm
+Power-Thermal : 150.3078848369969 W
+###########
+I :45.1 A
+
+E : 2.9227170460099616 V
+FC Efficiency : 0.36018130471435067
+FC Power : 126.70457937241429 W
+FC Voltage : 2.809414176771935 V
+PH2 : 0.19084807060632714 atm
+PH2O : 0.23490104346484791 atm
+PO2 : 0.18705659144906087 atm
+Power-Thermal : 150.66042062758575 W
+###########
+I :45.2 A
+
+E : 2.9227154790947667 V
+FC Efficiency : 0.36012869319669194
+FC Power : 126.96697207342572 W
+FC Voltage : 2.8090038069341974 V
+PH2 : 0.19083402022471277 atm
+PH2O : 0.23488374986951938 atm
+PO2 : 0.1870486586108626 atm
+Power-Thermal : 151.0130279265743 W
+###########
+I :45.3 A
+
+E : 2.922713912113117 V
+FC Efficiency : 0.3600761116472832
+FC Power : 127.22929328945104 W
+FC Voltage : 2.808593670848809 V
+PH2 : 0.19081996984309837 atm
+PH2O : 0.2348664562741908 atm
+PO2 : 0.18704072577266426 atm
+Power-Thermal : 151.36570671054895 W
+###########
+I :45.4 A
+
+E : 2.922712345065006 V
+FC Efficiency : 0.36002355993392143
+FC Power : 127.49154304380026 W
+FC Voltage : 2.8081837674845875 V
+PH2 : 0.19080591946148398 atm
+PH2O : 0.23484916267886227 atm
+PO2 : 0.18703279293446598 atm
+Power-Thermal : 151.71845695619973 W
+###########
+I :45.5 A
+
+E : 2.922710777950429 V
+FC Efficiency : 0.35997103792527674
+FC Power : 127.75372135968071 W
+FC Voltage : 2.8077740958171584 V
+PH2 : 0.19079186907986959 atm
+PH2O : 0.23483186908353373 atm
+PO2 : 0.18702486009626765 atm
+Power-Thermal : 152.07127864031932 W
+###########
+I :45.6 A
+
+E : 2.92270921076938 V
+FC Efficiency : 0.35991854549088387
+FC Power : 128.0158282601976 W
+FC Voltage : 2.8073646548288944 V
+PH2 : 0.19077781869825522 atm
+PH2O : 0.2348145754882052 atm
+PO2 : 0.18701692725806937 atm
+Power-Thermal : 152.42417173980243 W
+###########
+I :45.7 A
+
+E : 2.922707643521853 V
+FC Efficiency : 0.359866082501135
+FC Power : 128.27786376835462 W
+FC Voltage : 2.8069554435088535 V
+PH2 : 0.19076376831664082 atm
+PH2O : 0.23479728189287666 atm
+PO2 : 0.18700899441987104 atm
+Power-Thermal : 152.77713623164541 W
+###########
+I :45.8 A
+
+E : 2.922706076207842 V
+FC Efficiency : 0.3598136488272723
+FC Power : 128.53982790705476 W
+FC Voltage : 2.806546460852724 V
+PH2 : 0.19074971793502643 atm
+PH2O : 0.23477998829754812 atm
+PO2 : 0.18700106158167276 atm
+Power-Thermal : 153.13017209294526 W
+###########
+I :45.9 A
+
+E : 2.922704508827343 V
+FC Efficiency : 0.3597612443413804
+FC Power : 128.80172069910103 W
+FC Voltage : 2.8061377058627675 V
+PH2 : 0.190735667553412 atm
+PH2O : 0.23476269470221953 atm
+PO2 : 0.18699312874347443 atm
+Power-Thermal : 153.483279300899 W
+###########
+I :46.0 A
+
+E : 2.922702941380349 V
+FC Efficiency : 0.359708868916379
+FC Power : 129.06354216719677 W
+FC Voltage : 2.805729177547756 V
+PH2 : 0.19072161717179764 atm
+PH2O : 0.234745401106891 atm
+PO2 : 0.18698519590527615 atm
+Power-Thermal : 153.83645783280323 W
+###########
+I :46.1 A
+
+E : 2.922701373866855 V
+FC Efficiency : 0.3596565224260156
+FC Power : 129.3252923339467 W
+FC Voltage : 2.8053208749229217 V
+PH2 : 0.19070756679018325 atm
+PH2O : 0.23472810751156245 atm
+PO2 : 0.18697726306707782 atm
+Power-Thermal : 154.18970766605332 W
+###########
+I :46.2 A
+
+E : 2.9226998062868548 V
+FC Efficiency : 0.3596042047448585
+FC Power : 129.58697122185723 W
+FC Voltage : 2.8049127970098966 V
+PH2 : 0.19069351640856885 atm
+PH2O : 0.2347108139162339 atm
+PO2 : 0.18696933022887954 atm
+Power-Thermal : 154.5430287781428 W
+###########
+I :46.3 A
+
+E : 2.9226982386403435 V
+FC Efficiency : 0.35955191574828976
+FC Power : 129.84857885333736 W
+FC Voltage : 2.8045049428366604 V
+PH2 : 0.19067946602695446 atm
+PH2O : 0.23469352032090537 atm
+PO2 : 0.1869613973906812 atm
+Power-Thermal : 154.89642114666262 W
+###########
+I :46.4 A
+
+E : 2.922696670927314 V
+FC Efficiency : 0.3594996553124977
+FC Power : 130.11011525069918 W
+FC Voltage : 2.8040973114374825 V
+PH2 : 0.1906654156453401 atm
+PH2O : 0.23467622672557684 atm
+PO2 : 0.18695346455248293 atm
+Power-Thermal : 155.24988474930083 W
+###########
+I :46.5 A
+
+E : 2.9226951031477624 V
+FC Efficiency : 0.3594474233144706
+FC Power : 130.3715804361585 W
+FC Voltage : 2.803689901852871 V
+PH2 : 0.1906513652637257 atm
+PH2O : 0.2346589331302483 atm
+PO2 : 0.18694553171428463 atm
+Power-Thermal : 155.60341956384153 W
+###########
+I :46.6 A
+
+E : 2.922693535301682 V
+FC Efficiency : 0.3593952196319892
+FC Power : 130.63297443183546 W
+FC Voltage : 2.803282713129516 V
+PH2 : 0.1906373148821113 atm
+PH2O : 0.23464163953491973 atm
+PO2 : 0.18693759887608632 atm
+Power-Thermal : 155.95702556816457 W
+###########
+I :46.7 A
+
+E : 2.922691967389068 V
+FC Efficiency : 0.35934304414362067
+FC Power : 130.89429725975526 W
+FC Voltage : 2.8028757443202412 V
+PH2 : 0.19062326450049694 atm
+PH2O : 0.2346243459395912 atm
+PO2 : 0.18692966603788802 atm
+Power-Thermal : 156.31070274024475 W
+###########
+I :46.8 A
+
+E : 2.9226903994099134 V
+FC Efficiency : 0.35929089672871073
+FC Power : 131.15554894184856 W
+FC Voltage : 2.802468994483944 V
+PH2 : 0.19060921411888254 atm
+PH2O : 0.23460705234426266 atm
+PO2 : 0.1869217331996897 atm
+Power-Thermal : 156.66445105815143 W
+###########
+I :46.9 A
+
+E : 2.922688831364214 V
+FC Efficiency : 0.35923877726737835
+FC Power : 131.41672949995237 W
+FC Voltage : 2.8020624626855515 V
+PH2 : 0.19059516373726815 atm
+PH2O : 0.23458975874893412 atm
+PO2 : 0.1869138003614914 atm
+Power-Thermal : 157.01827050004763 W
+###########
+I :47.0 A
+
+E : 2.922687263251963 V
+FC Efficiency : 0.3591866856405083
+FC Power : 131.67783895581033 W
+FC Voltage : 2.8016561479959647 V
+PH2 : 0.19058111335565378 atm
+PH2O : 0.23457246515360558 atm
+PO2 : 0.18690586752329308 atm
+Power-Thermal : 157.37216104418968 W
+###########
+I :47.1 A
+
+E : 2.9226856950731555 V
+FC Efficiency : 0.3591346217297446
+FC Power : 131.93887733107357 W
+FC Voltage : 2.801250049492008 V
+PH2 : 0.1905670629740394 atm
+PH2O : 0.23455517155827704 atm
+PO2 : 0.1868979346850948 atm
+Power-Thermal : 157.72612266892645 W
+###########
+I :47.2 A
+
+E : 2.922684126827786 V
+FC Efficiency : 0.35908258541748467
+FC Power : 132.19984464730118 W
+FC Voltage : 2.8008441662563808 V
+PH2 : 0.190553012592425 atm
+PH2O : 0.2345378779629485 atm
+PO2 : 0.18689000184689647 atm
+Power-Thermal : 158.08015535269885 W
+###########
+I :47.3 A
+
+E : 2.922682558515848 V
+FC Efficiency : 0.3590305765868723
+FC Power : 132.4607409259607 W
+FC Voltage : 2.8004384973776046 V
+PH2 : 0.1905389622108106 atm
+PH2O : 0.23452058436761997 atm
+PO2 : 0.1868820690086982 atm
+Power-Thermal : 158.43425907403932 W
+###########
+I :47.4 A
+
+E : 2.9226809901373363 V
+FC Efficiency : 0.3589785951217922
+FC Power : 132.721566188429 W
+FC Voltage : 2.800033041949979 V
+PH2 : 0.19052491182919623 atm
+PH2O : 0.23450329077229143 atm
+PO2 : 0.18687413617049986 atm
+Power-Thermal : 158.788433811571 W
+###########
+I :47.5 A
+
+E : 2.922679421692245 V
+FC Efficiency : 0.3589266409068624
+FC Power : 132.98232045599252 W
+FC Voltage : 2.799627799073527 V
+PH2 : 0.19051086144758184 atm
+PH2O : 0.23448599717696286 atm
+PO2 : 0.18686620333230158 atm
+Power-Thermal : 159.14267954400748 W
+###########
+I :47.6 A
+
+E : 2.92267785318057 V
+FC Efficiency : 0.35887471382742964
+FC Power : 133.2430037498481 W
+FC Voltage : 2.7992227678539514 V
+PH2 : 0.19049681106596741 atm
+PH2O : 0.2344687035816343 atm
+PO2 : 0.18685827049410325 atm
+Power-Thermal : 159.49699625015194 W
+###########
+I :47.7 A
+
+E : 2.922676284602303 V
+FC Efficiency : 0.35882281376956193
+FC Power : 133.50361609110325 W
+FC Voltage : 2.7988179474025836 V
+PH2 : 0.19048276068435302 atm
+PH2O : 0.23445140998630576 atm
+PO2 : 0.18685033765590495 atm
+Power-Thermal : 159.8513839088968 W
+###########
+I :47.8 A
+
+E : 2.92267471595744 V
+FC Efficiency : 0.3587709406200436
+FC Power : 133.76415750077706 W
+FC Voltage : 2.79841333683634 V
+PH2 : 0.19046871030273865 atm
+PH2O : 0.23443411639097722 atm
+PO2 : 0.18684240481770664 atm
+Power-Thermal : 160.20584249922294 W
+###########
+I :47.9 A
+
+E : 2.9226731472459755 V
+FC Efficiency : 0.3587190942663683
+FC Power : 134.02462799980051 W
+FC Voltage : 2.7980089352776725 V
+PH2 : 0.19045465992112426 atm
+PH2O : 0.23441682279564865 atm
+PO2 : 0.18683447197950834 atm
+Power-Thermal : 160.5603720001995 W
+###########
+I :48.0 A
+
+E : 2.922671578467903 V
+FC Efficiency : 0.35866727459673386
+FC Power : 134.28502760901716 W
+FC Voltage : 2.7976047418545242 V
+PH2 : 0.19044060953950986 atm
+PH2O : 0.23439952920032012 atm
+PO2 : 0.18682653914131003 atm
+Power-Thermal : 160.91497239098285 W
+###########
+I :48.1 A
+
+E : 2.922670009623217 V
+FC Efficiency : 0.3586154815000361
+FC Power : 134.54535634918355 W
+FC Voltage : 2.7972007557002816 V
+PH2 : 0.19042655915789547 atm
+PH2O : 0.23438223560499158 atm
+PO2 : 0.18681860630311176 atm
+Power-Thermal : 161.26964365081648 W
+###########
+I :48.2 A
+
+E : 2.9226684407119126 V
+FC Efficiency : 0.358563714865863
+FC Power : 134.80561424096987 W
+FC Voltage : 2.7967969759537317 V
+PH2 : 0.1904125087762811 atm
+PH2O : 0.23436494200966304 atm
+PO2 : 0.18681067346491345 atm
+Power-Thermal : 161.62438575903016 W
+###########
+I :48.3 A
+
+E : 2.922666871733983 V
+FC Efficiency : 0.35851197458448925
+FC Power : 135.06580130496047 W
+FC Voltage : 2.7963934017590164 V
+PH2 : 0.1903984583946667 atm
+PH2O : 0.2343476484143345 atm
+PO2 : 0.18680274062671515 atm
+Power-Thermal : 161.9791986950395 W
+###########
+I :48.4 A
+
+E : 2.922665302689424 V
+FC Efficiency : 0.35846026054687014
+FC Power : 135.32591756165442 W
+FC Voltage : 2.7959900322655873 V
+PH2 : 0.19038440801305231 atm
+PH2O : 0.23433035481900596 atm
+PO2 : 0.18679480778851684 atm
+Power-Thermal : 162.33408243834558 W
+###########
+I :48.5 A
+
+E : 2.9226637335782284 V
+FC Efficiency : 0.35840857264463605
+FC Power : 135.58596303146584 W
+FC Voltage : 2.7955868666281614 V
+PH2 : 0.19037035763143795 atm
+PH2O : 0.23431306122367743 atm
+PO2 : 0.18678687495031854 atm
+Power-Thermal : 162.6890369685342 W
+###########
+I :48.6 A
+
+E : 2.9226621644003914 V
+FC Efficiency : 0.35835691077008736
+FC Power : 135.84593773472474 W
+FC Voltage : 2.7951839040066817 V
+PH2 : 0.19035630724982355 atm
+PH2O : 0.2342957676283489 atm
+PO2 : 0.18677894211212023 atm
+Power-Thermal : 163.0440622652753 W
+###########
+I :48.7 A
+
+E : 2.9226605951559073 V
+FC Efficiency : 0.35830527481618824
+FC Power : 136.10584169167728 W
+FC Voltage : 2.7947811435662686 V
+PH2 : 0.19034225686820916 atm
+PH2O : 0.23427847403302035 atm
+PO2 : 0.18677100927392193 atm
+Power-Thermal : 163.39915830832274 W
+###########
+I :48.8 A
+
+E : 2.92265902584477 V
+FC Efficiency : 0.3582536646765618
+FC Power : 136.36567492248648 W
+FC Voltage : 2.7943785844771822 V
+PH2 : 0.1903282064865948 atm
+PH2O : 0.23426118043769179 atm
+PO2 : 0.18676307643572362 atm
+Power-Thermal : 163.75432507751353 W
+###########
+I :48.9 A
+
+E : 2.9226574564669745 V
+FC Efficiency : 0.3582020802454841
+FC Power : 136.62543744723257 W
+FC Voltage : 2.7939762259147765 V
+PH2 : 0.1903141561049804 atm
+PH2O : 0.23424388684236325 atm
+PO2 : 0.18675514359752532 atm
+Power-Thermal : 164.10956255276744 W
+###########
+I :49.0 A
+
+E : 2.9226558870225148 V
+FC Efficiency : 0.3581505214178796
+FC Power : 136.8851292859136 W
+FC Voltage : 2.793574067059461 V
+PH2 : 0.190300105723366 atm
+PH2O : 0.2342265932470347 atm
+PO2 : 0.18674721075932701 atm
+Power-Thermal : 164.46487071408643 W
+###########
+I :49.1 A
+
+E : 2.922654317511385 V
+FC Efficiency : 0.358098988089315
+FC Power : 137.14475045844588 W
+FC Voltage : 2.7931721070966575 V
+PH2 : 0.1902860553417516 atm
+PH2O : 0.23420929965170617 atm
+PO2 : 0.1867392779211287 atm
+Power-Thermal : 164.82024954155415 W
+###########
+I :49.2 A
+
+E : 2.92265274793358 V
+FC Efficiency : 0.35804748015599475
+FC Power : 137.40430098466456 W
+FC Voltage : 2.792770345216759 V
+PH2 : 0.19027200496013724 atm
+PH2O : 0.23419200605637763 atm
+PO2 : 0.1867313450829304 atm
+Power-Thermal : 165.17569901533548 W
+###########
+I :49.3 A
+
+E : 2.9226511782890934 V
+FC Efficiency : 0.3579959975147552
+FC Power : 137.66378088432396 W
+FC Voltage : 2.7923687806150905 V
+PH2 : 0.19025795457852285 atm
+PH2O : 0.2341747124610491 atm
+PO2 : 0.1867234122447321 atm
+Power-Thermal : 165.53121911567604 W
+###########
+I :49.4 A
+
+E : 2.9226496085779203 V
+FC Efficiency : 0.35794454006306026
+FC Power : 137.92319017709838 W
+FC Voltage : 2.79196741249187 V
+PH2 : 0.19024390419690843 atm
+PH2O : 0.2341574188657205 atm
+PO2 : 0.18671547940653377 atm
+Power-Thermal : 165.88680982290163 W
+###########
+I :49.5 A
+
+E : 2.9226480388000544 V
+FC Efficiency : 0.35789310769899546
+FC Power : 138.18252888258215 W
+FC Voltage : 2.791566240052165 V
+PH2 : 0.19022985381529403 atm
+PH2O : 0.23414012527039196 atm
+PO2 : 0.18670754656833546 atm
+Power-Thermal : 166.24247111741786 W
+###########
+I :49.6 A
+
+E : 2.9226464689554903 V
+FC Efficiency : 0.35784170032126367
+FC Power : 138.44179702029052 W
+FC Voltage : 2.791165262505857 V
+PH2 : 0.19021580343367966 atm
+PH2O : 0.23412283167506343 atm
+PO2 : 0.18669961373013716 atm
+Power-Thermal : 166.59820297970953 W
+###########
+I :49.7 A
+
+E : 2.922644899044222 V
+FC Efficiency : 0.3577903178291798
+FC Power : 138.70099460965986 W
+FC Voltage : 2.7907644790676027 V
+PH2 : 0.19020175305206527 atm
+PH2O : 0.2341055380797349 atm
+PO2 : 0.18669168089193885 atm
+Power-Thermal : 166.95400539034017 W
+###########
+I :49.8 A
+
+E : 2.9226433290662444 V
+FC Efficiency : 0.35773896012266576
+FC Power : 138.9601216700483 W
+FC Voltage : 2.790363888956793 V
+PH2 : 0.19018770267045088 atm
+PH2O : 0.23408824448440635 atm
+PO2 : 0.18668374805374058 atm
+Power-Thermal : 167.30987832995172 W
+###########
+I :49.9 A
+
+E : 2.922641759021552 V
+FC Efficiency : 0.35768762710224594
+FC Power : 139.21917822073615 W
+FC Voltage : 2.7899634913975184 V
+PH2 : 0.19017365228883648 atm
+PH2O : 0.2340709508890778 atm
+PO2 : 0.18667581521554227 atm
+Power-Thermal : 167.66582177926384 W
+###########
+I :50.0 A
+
+E : 2.9226401889101385 V
+FC Efficiency : 0.35763631866904194
+FC Power : 139.47816428092636 W
+FC Voltage : 2.7895632856185273 V
+PH2 : 0.19015960190722211 atm
+PH2O : 0.23405365729374927 atm
+PO2 : 0.18666788237734397 atm
+Power-Thermal : 168.02183571907366 W
+###########
+I :50.1 A
+
+E : 2.9226386187319986 V
+FC Efficiency : 0.3575850347247681
+FC Power : 139.7370798697449 W
+FC Voltage : 2.7891632708531913 V
+PH2 : 0.19014555152560772 atm
+PH2O : 0.2340363636984207 atm
+PO2 : 0.18665994953914566 atm
+Power-Thermal : 168.37792013025515 W
+###########
+I :50.2 A
+
+E : 2.9226370484871262 V
+FC Efficiency : 0.3575337751717268
+FC Power : 139.99592500624138 W
+FC Voltage : 2.7887634463394693 V
+PH2 : 0.19013150114399333 atm
+PH2O : 0.23401907010309217 atm
+PO2 : 0.18665201670094736 atm
+Power-Thermal : 168.73407499375867 W
+###########
+I :50.3 A
+
+E : 2.9226354781755157 V
+FC Efficiency : 0.3574825399128035
+FC Power : 140.25469970938934 W
+FC Voltage : 2.7883638113198677 V
+PH2 : 0.19011745076237896 atm
+PH2O : 0.23400177650776363 atm
+PO2 : 0.18664408386274906 atm
+Power-Thermal : 169.09030029061066 W
+###########
+I :50.4 A
+
+E : 2.922633907797162 V
+FC Efficiency : 0.3574313288514627
+FC Power : 140.51340399808703 W
+FC Voltage : 2.787964365041409 V
+PH2 : 0.19010340038076456 atm
+PH2O : 0.2339844829124351 atm
+PO2 : 0.18663615102455075 atm
+Power-Thermal : 169.44659600191298 W
+###########
+I :50.5 A
+
+E : 2.9226323373520593 V
+FC Efficiency : 0.3573801418917426
+FC Power : 140.7720378911574 W
+FC Voltage : 2.787565106755592 V
+PH2 : 0.19008934999915017 atm
+PH2O : 0.23396718931710656 atm
+PO2 : 0.18662821818635245 atm
+Power-Thermal : 169.80296210884262 W
+###########
+I :50.6 A
+
+E : 2.9226307668402014 V
+FC Efficiency : 0.3573289789382507
+FC Power : 141.0306014073488 W
+FC Voltage : 2.787166035718356 V
+PH2 : 0.1900752996175358 atm
+PH2O : 0.23394989572177802 atm
+PO2 : 0.18662028534815414 atm
+Power-Thermal : 170.15939859265123 W
+###########
+I :50.7 A
+
+E : 2.9226291962615827 V
+FC Efficiency : 0.35727783989616
+FC Power : 141.28909456533546 W
+FC Voltage : 2.7867671511900483 V
+PH2 : 0.1900612492359214 atm
+PH2O : 0.23393260212644948 atm
+PO2 : 0.18661235250995584 atm
+Power-Thermal : 170.51590543466457 W
+###########
+I :50.8 A
+
+E : 2.9226276256161974 V
+FC Efficiency : 0.35722672467120387
+FC Power : 141.5475173837178 W
+FC Voltage : 2.78636845243539 V
+PH2 : 0.19004719885430701 atm
+PH2O : 0.23391530853112094 atm
+PO2 : 0.18660441967175753 atm
+Power-Thermal : 170.87248261628218 W
+###########
+I :50.9 A
+
+E : 2.9226260549040406 V
+FC Efficiency : 0.3571756331696716
+FC Power : 141.80586988102303 W
+FC Voltage : 2.7859699387234387 V
+PH2 : 0.19003314847269262 atm
+PH2O : 0.2338980149357924 atm
+PO2 : 0.18659648683355923 atm
+Power-Thermal : 171.229130118977 W
+###########
+I :51.0 A
+
+E : 2.9226244841251066 V
+FC Efficiency : 0.3571245652984047
+FC Power : 142.0641520757054 W
+FC Voltage : 2.785571609327557 V
+PH2 : 0.19001909809107825 atm
+PH2O : 0.23388072134046387 atm
+PO2 : 0.18658855399536092 atm
+Power-Thermal : 171.58584792429463 W
+###########
+I :51.1 A
+
+E : 2.9226229132793886 V
+FC Efficiency : 0.35707352096479156
+FC Power : 142.32236398614663 W
+FC Voltage : 2.7851734635253744 V
+PH2 : 0.19000504770946383 atm
+PH2O : 0.23386342774513527 atm
+PO2 : 0.1865806211571626 atm
+Power-Thermal : 171.9426360138534 W
+###########
+I :51.2 A
+
+E : 2.922621342366882 V
+FC Efficiency : 0.35702250007676417
+FC Power : 142.58050563065657 W
+FC Voltage : 2.784775500598761 V
+PH2 : 0.18999099732784944 atm
+PH2O : 0.23384613414980673 atm
+PO2 : 0.18657268831896429 atm
+Power-Thermal : 172.29949436934348 W
+###########
+I :51.3 A
+
+E : 2.9226197713875806 V
+FC Efficiency : 0.35697150254279353
+FC Power : 142.8385770274734 W
+FC Voltage : 2.7843777198337896 V
+PH2 : 0.18997694694623504 atm
+PH2O : 0.2338288405544782 atm
+PO2 : 0.18656475548076598 atm
+Power-Thermal : 172.6564229725266 W
+###########
+I :51.4 A
+
+E : 2.9226182003414793 V
+FC Efficiency : 0.356920528271885
+FC Power : 143.09657819476413 W
+FC Voltage : 2.783980120520703 V
+PH2 : 0.18996289656462068 atm
+PH2O : 0.23381154695914963 atm
+PO2 : 0.1865568226425677 atm
+Power-Thermal : 173.01342180523588 W
+###########
+I :51.5 A
+
+E : 2.922616629228571 V
+FC Efficiency : 0.3568695771735744
+FC Power : 143.35450915062486 W
+FC Voltage : 2.783582701953881 V
+PH2 : 0.18994884618300628 atm
+PH2O : 0.2337942533638211 atm
+PO2 : 0.1865488898043694 atm
+Power-Thermal : 173.37049084937516 W
+###########
+I :51.6 A
+
+E : 2.922615058048852 V
+FC Efficiency : 0.3568186491579249
+FC Power : 143.6123699130816 W
+FC Voltage : 2.7831854634318143 V
+PH2 : 0.1899347958013919 atm
+PH2O : 0.23377695976849255 atm
+PO2 : 0.1865409569661711 atm
+Power-Thermal : 173.7276300869184 W
+###########
+I :51.7 A
+
+E : 2.922613486802315 V
+FC Efficiency : 0.356767744135521
+FC Power : 143.8701605000902 W
+FC Voltage : 2.782788404257064 V
+PH2 : 0.18992074541977752 atm
+PH2O : 0.23375966617316402 atm
+PO2 : 0.1865330241279728 atm
+Power-Thermal : 174.08483949990983 W
+###########
+I :51.8 A
+
+E : 2.922611915488955 V
+FC Efficiency : 0.3567168620174662
+FC Power : 144.12788092953704 W
+FC Voltage : 2.7823915237362367 V
+PH2 : 0.18990669503816313 atm
+PH2O : 0.23374237257783548 atm
+PO2 : 0.1865250912897745 atm
+Power-Thermal : 174.44211907046295 W
+###########
+I :51.9 A
+
+E : 2.9226103441087665 V
+FC Efficiency : 0.356666002715378
+FC Power : 144.38553121923934 W
+FC Voltage : 2.7819948211799486 V
+PH2 : 0.18989264465654873 atm
+PH2O : 0.23372507898250694 atm
+PO2 : 0.18651715845157618 atm
+Power-Thermal : 174.7994687807607 W
+###########
+I :52.0 A
+
+E : 2.9226087726617433 V
+FC Efficiency : 0.3566151661413845
+FC Power : 144.64311138694558 W
+FC Voltage : 2.7815982959027994 V
+PH2 : 0.18987859427493434 atm
+PH2O : 0.2337077853871784 atm
+PO2 : 0.18650922561337788 atm
+Power-Thermal : 175.15688861305446 W
+###########
+I :52.1 A
+
+E : 2.92260720114788 V
+FC Efficiency : 0.35656435220812027
+FC Power : 144.90062145033593 W
+FC Voltage : 2.7812019472233382 V
+PH2 : 0.18986454389331997 atm
+PH2O : 0.23369049179184986 atm
+PO2 : 0.18650129277517957 atm
+Power-Thermal : 175.5143785496641 W
+###########
+I :52.2 A
+
+E : 2.9226056295671707 V
+FC Efficiency : 0.35651356082872226
+FC Power : 145.15806142702257 W
+FC Voltage : 2.7808057744640338 V
+PH2 : 0.18985049351170558 atm
+PH2O : 0.23367319819652133 atm
+PO2 : 0.18649335993698127 atm
+Power-Thermal : 175.87193857297746 W
+###########
+I :52.3 A
+
+E : 2.9226040579196106 V
+FC Efficiency : 0.35646279191682634
+FC Power : 145.41543133455014 W
+FC Voltage : 2.7804097769512457 V
+PH2 : 0.18983644313009118 atm
+PH2O : 0.2336559046011928 atm
+PO2 : 0.18648542709878296 atm
+Power-Thermal : 176.22956866544985 W
+###########
+I :52.4 A
+
+E : 2.922602486205193 V
+FC Efficiency : 0.35641204538656324
+FC Power : 145.67273119039612 W
+FC Voltage : 2.7800139540151934 V
+PH2 : 0.18982239274847681 atm
+PH2O : 0.23363861100586422 atm
+PO2 : 0.18647749426058466 atm
+Power-Thermal : 176.58726880960387 W
+###########
+I :52.5 A
+
+E : 2.9226009144239122 V
+FC Efficiency : 0.3563613211525547
+FC Power : 145.92996101197116 W
+FC Voltage : 2.779618304989927 V
+PH2 : 0.18980834236686242 atm
+PH2O : 0.23362131741053568 atm
+PO2 : 0.18646956142238635 atm
+Power-Thermal : 176.94503898802887 W
+###########
+I :52.6 A
+
+E : 2.922599342575763 V
+FC Efficiency : 0.3563106191299101
+FC Power : 146.1871208166195 W
+FC Voltage : 2.7792228292132988 V
+PH2 : 0.18979429198524803 atm
+PH2O : 0.23360402381520715 atm
+PO2 : 0.18646162858418805 atm
+Power-Thermal : 177.3028791833805 W
+###########
+I :52.7 A
+
+E : 2.92259777066074 V
+FC Efficiency : 0.35625993923422244
+FC Power : 146.4442106216195 W
+FC Voltage : 2.7788275260269355 V
+PH2 : 0.18978024160363363 atm
+PH2O : 0.2335867302198786 atm
+PO2 : 0.18645369574598974 atm
+Power-Thermal : 177.6607893783805 W
+###########
+I :52.8 A
+
+E : 2.9225961986788365 V
+FC Efficiency : 0.35620928138156466
+FC Power : 146.7012304441836 W
+FC Voltage : 2.7784323947762046 V
+PH2 : 0.18976619122201926 atm
+PH2O : 0.23356943662455007 atm
+PO2 : 0.18644576290779144 atm
+Power-Thermal : 178.0187695558164 W
+###########
+I :52.9 A
+
+E : 2.9225946266300475 V
+FC Efficiency : 0.35615864548848636
+FC Power : 146.95818030145924 W
+FC Voltage : 2.7780374348101935 V
+PH2 : 0.18975214084040484 atm
+PH2O : 0.23355214302922148 atm
+PO2 : 0.1864378300695931 atm
+Power-Thermal : 178.37681969854077 W
+###########
+I :53.0 A
+
+E : 2.922593054514367 V
+FC Efficiency : 0.35610803147200937
+FC Power : 147.2150602105287 W
+FC Voltage : 2.777642645481673 V
+PH2 : 0.18973809045879045 atm
+PH2O : 0.23353484943389294 atm
+PO2 : 0.18642989723139483 atm
+Power-Thermal : 178.73493978947135 W
+###########
+I :53.1 A
+
+E : 2.9225914823317893 V
+FC Efficiency : 0.3560574392496254
+FC Power : 147.47187018840987 W
+FC Voltage : 2.7772480261470784 V
+PH2 : 0.18972404007717605 atm
+PH2O : 0.2335175558385644 atm
+PO2 : 0.18642196439319653 atm
+Power-Thermal : 179.09312981159016 W
+###########
+I :53.2 A
+
+E : 2.9225899100823094 V
+FC Efficiency : 0.3560068687392917
+FC Power : 147.7286102520565 W
+FC Voltage : 2.776853576166476 V
+PH2 : 0.1897099896955617 atm
+PH2O : 0.23350026224323586 atm
+PO2 : 0.18641403155499822 atm
+Power-Thermal : 179.45138974794352 W
+###########
+I :53.3 A
+
+E : 2.922588337765921 V
+FC Efficiency : 0.3559563198594276
+FC Power : 147.98528041835843 W
+FC Voltage : 2.7764592949035354 V
+PH2 : 0.1896959393139473 atm
+PH2O : 0.23348296864790732 atm
+PO2 : 0.18640609871679992 atm
+Power-Thermal : 179.8097195816416 W
+###########
+I :53.4 A
+
+E : 2.9225867653826185 V
+FC Efficiency : 0.3559057925289111
+FC Power : 148.24188070414206 W
+FC Voltage : 2.7760651817255066 V
+PH2 : 0.1896818889323329 atm
+PH2O : 0.23346567505257879 atm
+PO2 : 0.1863981658786016 atm
+Power-Thermal : 180.16811929585796 W
+###########
+I :53.5 A
+
+E : 2.9225851929323965 V
+FC Efficiency : 0.3558552866670757
+FC Power : 148.4984111261707 W
+FC Voltage : 2.7756712360031908 V
+PH2 : 0.18966783855071853 atm
+PH2O : 0.23344838145725025 atm
+PO2 : 0.1863902330404033 atm
+Power-Thermal : 180.52658887382933 W
+###########
+I :53.6 A
+
+E : 2.9225836204152484 V
+FC Efficiency : 0.35580480219370675
+FC Power : 148.75487170114494 W
+FC Voltage : 2.7752774571109127 V
+PH2 : 0.18965378816910414 atm
+PH2O : 0.2334310878619217 atm
+PO2 : 0.186382300202205 atm
+Power-Thermal : 180.8851282988551 W
+###########
+I :53.7 A
+
+E : 2.9225820478311695 V
+FC Efficiency : 0.35575433902903814
+FC Power : 149.01126244570293 W
+FC Voltage : 2.7748838444264976 V
+PH2 : 0.18963973778748974 atm
+PH2O : 0.23341379426659314 atm
+PO2 : 0.1863743673640067 atm
+Power-Thermal : 181.2437375542971 W
+###########
+I :53.8 A
+
+E : 2.922580475180153 V
+FC Efficiency : 0.35570389709374883
+FC Power : 149.26758337642076 W
+FC Voltage : 2.774490397331241 V
+PH2 : 0.18962568740587535 atm
+PH2O : 0.2333965006712646 atm
+PO2 : 0.1863664345258084 atm
+Power-Thermal : 181.60241662357924 W
+###########
+I :53.9 A
+
+E : 2.9225789024621953 V
+FC Efficiency : 0.3556534763089601
+FC Power : 149.523834509813 W
+FC Voltage : 2.774097115209889 V
+PH2 : 0.18961163702426098 atm
+PH2O : 0.23337920707593607 atm
+PO2 : 0.1863585016876101 atm
+Power-Thermal : 181.961165490187 W
+###########
+I :54.0 A
+
+E : 2.9225773296772886 V
+FC Efficiency : 0.3556030765962313
+FC Power : 149.78001586233262 W
+FC Voltage : 2.773703997450604 V
+PH2 : 0.1895975866426466 atm
+PH2O : 0.23336191348060753 atm
+PO2 : 0.18635056884941179 atm
+Power-Thermal : 182.3199841376674 W
+###########
+I :54.1 A
+
+E : 2.9225757568254274 V
+FC Efficiency : 0.3555526978775574
+FC Power : 150.03612745037168 W
+FC Voltage : 2.7733110434449477 V
+PH2 : 0.1895835362610322 atm
+PH2O : 0.233344619885279 atm
+PO2 : 0.18634263601121348 atm
+Power-Thermal : 182.67887254962835 W
+###########
+I :54.2 A
+
+E : 2.9225741839066064 V
+FC Efficiency : 0.35550234007536546
+FC Power : 150.2921692902615 W
+FC Voltage : 2.772918252587851 V
+PH2 : 0.18956948587941783 atm
+PH2O : 0.23332732628995045 atm
+PO2 : 0.18633470317301518 atm
+Power-Thermal : 183.0378307097385 W
+###########
+I :54.3 A
+
+E : 2.922572610920821 V
+FC Efficiency : 0.35545200311251207
+FC Power : 150.54814139827334 W
+FC Voltage : 2.772525624277594 V
+PH2 : 0.18955543549780343 atm
+PH2O : 0.23331003269462192 atm
+PO2 : 0.18632677033481687 atm
+Power-Thermal : 183.39685860172665 W
+###########
+I :54.4 A
+
+E : 2.9225710378680643 V
+FC Efficiency : 0.35540168691227847
+FC Power : 150.804043790618 W
+FC Voltage : 2.772133157915772 V
+PH2 : 0.18954138511618904 atm
+PH2O : 0.23329273909929338 atm
+PO2 : 0.18631883749661857 atm
+Power-Thermal : 183.75595620938202 W
+###########
+I :54.5 A
+
+E : 2.9225694647483302 V
+FC Efficiency : 0.3553513913983697
+FC Power : 151.05987648344697 W
+FC Voltage : 2.771740852907284 V
+PH2 : 0.18952733473457464 atm
+PH2O : 0.23327544550396484 atm
+PO2 : 0.18631090465842026 atm
+Power-Thermal : 184.11512351655304 W
+###########
+I :54.6 A
+
+E : 2.922567891561614 V
+FC Efficiency : 0.35530111649490975
+FC Power : 151.3156394928522 W
+FC Voltage : 2.7713487086602964 V
+PH2 : 0.18951328435296022 atm
+PH2O : 0.23325815190863625 atm
+PO2 : 0.18630297182022196 atm
+Power-Thermal : 184.47436050714785 W
+###########
+I :54.7 A
+
+E : 2.922566318307909 V
+FC Efficiency : 0.35525086212643936
+FC Power : 151.57133283486664 W
+FC Voltage : 2.7709567245862274 V
+PH2 : 0.18949923397134585 atm
+PH2O : 0.2332408583133077 atm
+PO2 : 0.18629503898202365 atm
+Power-Thermal : 184.8336671651334 W
+###########
+I :54.8 A
+
+E : 2.922564744987211 V
+FC Efficiency : 0.355200628217913
+FC Power : 151.8269565254647 W
+FC Voltage : 2.7705649000997212 V
+PH2 : 0.18948518358973146 atm
+PH2O : 0.23322356471797917 atm
+PO2 : 0.18628710614382535 atm
+Power-Thermal : 185.19304347453527 W
+###########
+I :54.9 A
+
+E : 2.922563171599513 V
+FC Efficiency : 0.35515041469469477
+FC Power : 152.0825105805622 W
+FC Voltage : 2.7701732346186194 V
+PH2 : 0.18947113320811707 atm
+PH2O : 0.23320627112265063 atm
+PO2 : 0.18627917330562704 atm
+Power-Thermal : 185.55248941943782 W
+###########
+I :55.0 A
+
+E : 2.92256159814481 V
+FC Efficiency : 0.35510022148255715
+FC Power : 152.33799501601703 W
+FC Voltage : 2.769781727563946 V
+PH2 : 0.1894570828265027 atm
+PH2O : 0.23318897752732207 atm
+PO2 : 0.18627124046742874 atm
+Power-Thermal : 185.912004983983 W
+###########
+I :55.1 A
+
+E : 2.9225600246230954 V
+FC Efficiency : 0.3550500485076765
+FC Power : 152.59340984762923 W
+FC Voltage : 2.7693903783598772 V
+PH2 : 0.1894430324448883 atm
+PH2O : 0.23317168393199353 atm
+PO2 : 0.18626330762923043 atm
+Power-Thermal : 186.27159015237078 W
+###########
+I :55.2 A
+
+E : 2.9225584510343645 V
+FC Efficiency : 0.35499989569663126
+FC Power : 152.84875509114158 W
+FC Voltage : 2.768999186433724 V
+PH2 : 0.1894289820632739 atm
+PH2O : 0.233154390336665 atm
+PO2 : 0.18625537479103213 atm
+Power-Thermal : 186.63124490885846 W
+###########
+I :55.3 A
+
+E : 2.922556877378611 V
+FC Efficiency : 0.35494976297639813
+FC Power : 153.10403076223957 W
+FC Voltage : 2.7686081512159055 V
+PH2 : 0.18941493168165954 atm
+PH2O : 0.23313709674133645 atm
+PO2 : 0.18624744195283383 atm
+Power-Thermal : 186.99096923776042 W
+###########
+I :55.4 A
+
+E : 2.9225553036558294 V
+FC Efficiency : 0.3548996502743498
+FC Power : 153.35923687655202 W
+FC Voltage : 2.7682172721399283 V
+PH2 : 0.18940088130004515 atm
+PH2O : 0.23311980314600791 atm
+PO2 : 0.18623950911463552 atm
+Power-Thermal : 187.350763123448 W
+###########
+I :55.5 A
+
+E : 2.9225537298660136 V
+FC Efficiency : 0.35484955751825165
+FC Power : 153.61437344965114 W
+FC Voltage : 2.767826548642363 V
+PH2 : 0.18938683091843075 atm
+PH2O : 0.23310250955067938 atm
+PO2 : 0.18623157627643722 atm
+Power-Thermal : 187.71062655034888 W
+###########
+I :55.6 A
+
+E : 2.922552156009158 V
+FC Efficiency : 0.35479948463625954
+FC Power : 153.86944049705306 W
+FC Voltage : 2.7674359801628245 V
+PH2 : 0.18937278053681636 atm
+PH2O : 0.23308521595535084 atm
+PO2 : 0.1862236434382389 atm
+Power-Thermal : 188.070559502947 W
+###########
+I :55.7 A
+
+E : 2.9225505820852584 V
+FC Efficiency : 0.35474943155691646
+FC Power : 154.12443803421795 W
+FC Voltage : 2.7670455661439486 V
+PH2 : 0.189358730155202 atm
+PH2O : 0.2330679223600223 atm
+PO2 : 0.1862157106000406 atm
+Power-Thermal : 188.4305619657821 W
+###########
+I :55.8 A
+
+E : 2.9225490080943066 V
+FC Efficiency : 0.3546993982091497
+FC Power : 154.37936607655033 W
+FC Voltage : 2.766655306031368 V
+PH2 : 0.1893446797735876 atm
+PH2O : 0.23305062876469376 atm
+PO2 : 0.1862077777618423 atm
+Power-Thermal : 188.7906339234497 W
+###########
+I :55.9 A
+
+E : 2.9225474340362982 V
+FC Efficiency : 0.3546493845222687
+FC Power : 154.6342246393996 W
+FC Voltage : 2.766265199273696 V
+PH2 : 0.1893306293919732 atm
+PH2O : 0.2330333351693652 atm
+PO2 : 0.186199844923644 atm
+Power-Thermal : 189.15077536060042 W
+###########
+I :56.0 A
+
+E : 2.922545859911228 V
+FC Efficiency : 0.3545993904259616
+FC Power : 154.88901373806004 W
+FC Voltage : 2.765875245322501 V
+PH2 : 0.18931657901035884 atm
+PH2O : 0.23301604157403666 atm
+PO2 : 0.1861919120854457 atm
+Power-Thermal : 189.51098626193996 W
+###########
+I :56.1 A
+
+E : 2.922544285719089 V
+FC Efficiency : 0.3545494158502931
+FC Power : 155.14373338777128 W
+FC Voltage : 2.7654854436322864 V
+PH2 : 0.18930252862874444 atm
+PH2O : 0.23299874797870812 atm
+PO2 : 0.1861839792472474 atm
+Power-Thermal : 189.87126661222877 W
+###########
+I :56.2 A
+
+E : 2.9225427114598768 V
+FC Efficiency : 0.3544994607257015
+FC Power : 155.39838360371851 W
+FC Voltage : 2.7650957936604716 V
+PH2 : 0.18928847824713005 atm
+PH2O : 0.23298145438337958 atm
+PO2 : 0.18617604640904908 atm
+Power-Thermal : 190.2316163962815 W
+###########
+I :56.3 A
+
+E : 2.9225411371335848 V
+FC Efficiency : 0.35444952498299587
+FC Power : 155.65296440103282 W
+FC Voltage : 2.764706294867368 V
+PH2 : 0.18927442786551563 atm
+PH2O : 0.232964160788051 atm
+PO2 : 0.18616811357085078 atm
+Power-Thermal : 190.5920355989672 W
+###########
+I :56.4 A
+
+E : 2.9225395627402073 V
+FC Efficiency : 0.35439960855335406
+FC Power : 155.90747579479154 W
+FC Voltage : 2.764316946716162 V
+PH2 : 0.18926037748390123 atm
+PH2O : 0.23294686719272245 atm
+PO2 : 0.18616018073265247 atm
+Power-Thermal : 190.95252420520848 W
+###########
+I :56.5 A
+
+E : 2.9225379882797387 V
+FC Efficiency : 0.35434971136831916
+FC Power : 156.16191780001827 W
+FC Voltage : 2.7639277486728897 V
+PH2 : 0.18924632710228687 atm
+PH2O : 0.2329295735973939 atm
+PO2 : 0.18615224789445417 atm
+Power-Thermal : 191.31308219998175 W
+###########
+I :56.6 A
+
+E : 2.922536413752174 V
+FC Efficiency : 0.354299833359798
+FC Power : 156.41629043168362 W
+FC Voltage : 2.7635387002064244 V
+PH2 : 0.18923227672067247 atm
+PH2O : 0.23291228000206537 atm
+PO2 : 0.18614431505625587 atm
+Power-Thermal : 191.6737095683164 W
+###########
+I :56.7 A
+
+E : 2.9225348391575063 V
+FC Efficiency : 0.35424997446005746
+FC Power : 156.67059370470503 W
+FC Voltage : 2.7631498007884483 V
+PH2 : 0.18921822633905808 atm
+PH2O : 0.23289498640673684 atm
+PO2 : 0.18613638221805756 atm
+Power-Thermal : 192.034406295295 W
+###########
+I :56.8 A
+
+E : 2.9225332644957303 V
+FC Efficiency : 0.3542001346017228
+FC Power : 156.92482763394725 W
+FC Voltage : 2.7627610498934376 V
+PH2 : 0.1892041759574437 atm
+PH2O : 0.2328776928114083 atm
+PO2 : 0.18612844937985926 atm
+Power-Thermal : 192.39517236605275 W
+###########
+I :56.9 A
+
+E : 2.9225316897668407 V
+FC Efficiency : 0.35415031371777456
+FC Power : 157.17899223422273 W
+FC Voltage : 2.762372446998642 V
+PH2 : 0.18919012557582932 atm
+PH2O : 0.23286039921607976 atm
+PO2 : 0.18612051654166095 atm
+Power-Thermal : 192.75600776577727 W
+###########
+I :57.0 A
+
+E : 2.9225301149708316 V
+FC Efficiency : 0.35410051174154694
+FC Power : 157.43308752029176 W
+FC Voltage : 2.7619839915840663 V
+PH2 : 0.18917607519421492 atm
+PH2O : 0.23284310562075122 atm
+PO2 : 0.18611258370346265 atm
+Power-Thermal : 193.11691247970825 W
+###########
+I :57.1 A
+
+E : 2.9225285401076966 V
+FC Efficiency : 0.35405072860672376
+FC Power : 157.68711350686263 W
+FC Voltage : 2.7615956831324455 V
+PH2 : 0.18916202481260055 atm
+PH2O : 0.23282581202542268 atm
+PO2 : 0.18610465086526434 atm
+Power-Thermal : 193.4778864931374 W
+###########
+I :57.2 A
+
+E : 2.922526965177431 V
+FC Efficiency : 0.35400096424733773
+FC Power : 157.94107020859224 W
+FC Voltage : 2.7612075211292346 V
+PH2 : 0.18914797443098616 atm
+PH2O : 0.23280851843009412 atm
+PO2 : 0.18609671802706604 atm
+Power-Thermal : 193.83892979140782 W
+###########
+I :57.3 A
+
+E : 2.922525390180029 V
+FC Efficiency : 0.353951218597767
+FC Power : 158.19495764008596 W
+FC Voltage : 2.7608195050625826 V
+PH2 : 0.18913392404937177 atm
+PH2O : 0.23279122483476558 atm
+PO2 : 0.18608878518886773 atm
+Power-Thermal : 194.20004235991402 W
+###########
+I :57.4 A
+
+E : 2.9225238151154844 V
+FC Efficiency : 0.3539014915927327
+FC Power : 158.4487758158983 W
+FC Voltage : 2.7604316344233153 V
+PH2 : 0.18911987366775737 atm
+PH2O : 0.23277393123943704 atm
+PO2 : 0.18608085235066943 atm
+Power-Thermal : 194.56122418410172 W
+###########
+I :57.5 A
+
+E : 2.922522239983791 V
+FC Efficiency : 0.3538517831672972
+FC Power : 158.7025247505328 W
+FC Voltage : 2.7600439087049184 V
+PH2 : 0.189105823286143 atm
+PH2O : 0.2327566376441085 atm
+PO2 : 0.18607291951247112 atm
+Power-Thermal : 194.9224752494672 W
+###########
+I :57.6 A
+
+E : 2.922520664784944 V
+FC Efficiency : 0.35380209325686124
+FC Power : 158.9562044584426 W
+FC Voltage : 2.7596563274035177 V
+PH2 : 0.1890917729045286 atm
+PH2O : 0.23273934404877997 atm
+PO2 : 0.18606498667427282 atm
+Power-Thermal : 195.2837955415574 W
+###########
+I :57.7 A
+
+E : 2.9225190895189366 V
+FC Efficiency : 0.3537524217971617
+FC Power : 159.2098149540306 W
+FC Voltage : 2.7592688900178612 V
+PH2 : 0.18907772252291422 atm
+PH2O : 0.23272205045345143 atm
+PO2 : 0.18605705383607452 atm
+Power-Thermal : 195.64518504596944 W
+###########
+I :57.8 A
+
+E : 2.922517514185765 V
+FC Efficiency : 0.35370276872426953
+FC Power : 159.46335625164969 W
+FC Voltage : 2.7588815960493025 V
+PH2 : 0.18906367214129985 atm
+PH2O : 0.2327047568581229 atm
+PO2 : 0.1860491209978762 atm
+Power-Thermal : 196.0066437483503 W
+###########
+I :57.9 A
+
+E : 2.9225159387854216 V
+FC Efficiency : 0.35365313397458664
+FC Power : 159.71682836560282 W
+FC Voltage : 2.758494445001776 V
+PH2 : 0.18904962175968545 atm
+PH2O : 0.23268746326279435 atm
+PO2 : 0.1860411881596779 atm
+Power-Thermal : 196.36817163439719 W
+###########
+I :58.0 A
+
+E : 2.9225143633179016 V
+FC Efficiency : 0.35360351748484486
+FC Power : 159.97023131014382 W
+FC Voltage : 2.75810743638179 V
+PH2 : 0.18903557137807103 atm
+PH2O : 0.23267016966746576 atm
+PO2 : 0.1860332553214796 atm
+Power-Thermal : 196.7297686898562 W
+###########
+I :58.1 A
+
+E : 2.9225127877831985 V
+FC Efficiency : 0.3535539191921025
+FC Power : 160.223565099477 W
+FC Voltage : 2.7577205696983995 V
+PH2 : 0.18902152099645664 atm
+PH2O : 0.23265287607213722 atm
+PO2 : 0.1860253224832813 atm
+Power-Thermal : 197.091434900523 W
+###########
+I :58.2 A
+
+E : 2.922511212181308 V
+FC Efficiency : 0.3535043390337428
+FC Power : 160.4768297477579 W
+FC Voltage : 2.757333844463194 V
+PH2 : 0.18900747061484224 atm
+PH2O : 0.23263558247680868 atm
+PO2 : 0.186017389645083 atm
+Power-Thermal : 197.45317025224213 W
+###########
+I :58.3 A
+
+E : 2.9225096365122227 V
+FC Efficiency : 0.35345477694747135
+FC Power : 160.73002526909312 W
+FC Voltage : 2.7569472601902767 V
+PH2 : 0.18899342023322788 atm
+PH2O : 0.23261828888148015 atm
+PO2 : 0.1860094568068847 atm
+Power-Thermal : 197.81497473090687 W
+###########
+I :58.4 A
+
+E : 2.9225080607759377 V
+FC Efficiency : 0.3534052328713141
+FC Power : 160.983151677541 W
+FC Voltage : 2.75656081639625 V
+PH2 : 0.18897936985161348 atm
+PH2O : 0.2326009952861516 atm
+PO2 : 0.18600152396868638 atm
+Power-Thermal : 198.17684832245902 W
+###########
+I :58.5 A
+
+E : 2.9225064849724474 V
+FC Efficiency : 0.3533557067436151
+FC Power : 161.23620898711158 W
+FC Voltage : 2.756174512600198 V
+PH2 : 0.1889653194699991 atm
+PH2O : 0.23258370169082304 atm
+PO2 : 0.18599359113048808 atm
+Power-Thermal : 198.53879101288845 W
+###########
+I :58.6 A
+
+E : 2.922504909101746 V
+FC Efficiency : 0.35330619850303446
+FC Power : 161.489197211767 W
+FC Voltage : 2.755788348323669 V
+PH2 : 0.18895126908838472 atm
+PH2O : 0.2325664080954945 atm
+PO2 : 0.18598565829228977 atm
+Power-Thermal : 198.90080278823302 W
+###########
+I :58.7 A
+
+E : 2.922503333163827 V
+FC Efficiency : 0.35325670808854553
+FC Power : 161.74211636542148 W
+FC Voltage : 2.7554023230906552 V
+PH2 : 0.18893721870677033 atm
+PH2O : 0.23254911450016597 atm
+PO2 : 0.18597772545409147 atm
+Power-Thermal : 199.26288363457857 W
+###########
+I :58.8 A
+
+E : 2.922501757158686 V
+FC Efficiency : 0.35320723543943394
+FC Power : 161.994966461942 W
+FC Voltage : 2.755016436427585 V
+PH2 : 0.18892316832515593 atm
+PH2O : 0.23253182090483743 atm
+PO2 : 0.18596979261589316 atm
+Power-Thermal : 199.625033538058 W
+###########
+I :58.9 A
+
+E : 2.922500181086316 V
+FC Efficiency : 0.3531577804952944
+FC Power : 162.24774751514815 W
+FC Voltage : 2.7546306878632962 V
+PH2 : 0.18890911794354157 atm
+PH2O : 0.2325145273095089 atm
+PO2 : 0.18596185977769486 atm
+Power-Thermal : 199.98725248485187 W
+###########
+I :59.0 A
+
+E : 2.9224986049467123 V
+FC Efficiency : 0.35310834319602913
+FC Power : 162.5004595388126 W
+FC Voltage : 2.754245076929027 V
+PH2 : 0.18889506756192717 atm
+PH2O : 0.23249723371418035 atm
+PO2 : 0.18595392693949656 atm
+Power-Thermal : 200.34954046118742 W
+###########
+I :59.1 A
+
+E : 2.922497028739868 V
+FC Efficiency : 0.35305892348184553
+FC Power : 162.75310254666118 W
+FC Voltage : 2.7538596031583955 V
+PH2 : 0.18888101718031278 atm
+PH2O : 0.2324799401188518 atm
+PO2 : 0.18594599410129825 atm
+Power-Thermal : 200.71189745333885 W
+###########
+I :59.2 A
+
+E : 2.9224954524657787 V
+FC Efficiency : 0.3530095212932547
+FC Power : 163.0056765523733 W
+FC Voltage : 2.7534742660873865 V
+PH2 : 0.18886696679869838 atm
+PH2O : 0.23246264652352328 atm
+PO2 : 0.18593806126309995 atm
+Power-Thermal : 201.07432344762674 W
+###########
+I :59.3 A
+
+E : 2.922493876124438 V
+FC Efficiency : 0.35296013657106834
+FC Power : 163.25818156958195 W
+FC Voltage : 2.753089065254333 V
+PH2 : 0.18885291641708402 atm
+PH2O : 0.23244535292819474 atm
+PO2 : 0.18593012842490164 atm
+Power-Thermal : 201.43681843041804 W
+###########
+I :59.4 A
+
+E : 2.92249229971584 V
+FC Efficiency : 0.3529107692563978
+FC Power : 163.5106176118742 W
+FC Voltage : 2.752704000199903 V
+PH2 : 0.18883886603546962 atm
+PH2O : 0.2324280593328662 atm
+PO2 : 0.18592219558670334 atm
+Power-Thermal : 201.7993823881258 W
+###########
+I :59.5 A
+
+E : 2.922490723239979 V
+FC Efficiency : 0.3528614192906513
+FC Power : 163.7629846927913 W
+FC Voltage : 2.7523190704670806 V
+PH2 : 0.18882481565385523 atm
+PH2O : 0.23241076573753763 atm
+PO2 : 0.18591426274850503 atm
+Power-Thermal : 202.16201530720872 W
+###########
+I :59.6 A
+
+E : 2.9224891466968494 V
+FC Efficiency : 0.35281208661553254
+FC Power : 164.0152828258288 W
+FC Voltage : 2.7519342756011542 V
+PH2 : 0.18881076527224086 atm
+PH2O : 0.2323934721422091 atm
+PO2 : 0.18590632991030673 atm
+Power-Thermal : 202.52471717417123 W
+###########
+I :59.7 A
+
+E : 2.9224875700864454 V
+FC Efficiency : 0.3527627711730381
+FC Power : 164.26751202443697 W
+FC Voltage : 2.7515496151496976 V
+PH2 : 0.18879671489062644 atm
+PH2O : 0.23237617854688053 atm
+PO2 : 0.18589839707210842 atm
+Power-Thermal : 202.8874879755631 W
+###########
+I :59.8 A
+
+E : 2.9224859934087615 V
+FC Efficiency : 0.35271347290545596
+FC Power : 164.51967230202087 W
+FC Voltage : 2.7511650886625563 V
+PH2 : 0.18878266450901204 atm
+PH2O : 0.23235888495155196 atm
+PO2 : 0.18589046423391012 atm
+Power-Thermal : 203.25032769797915 W
+###########
+I :59.9 A
+
+E : 2.922484416663792 V
+FC Efficiency : 0.3526641917553633
+FC Power : 164.77176367194087 W
+FC Voltage : 2.750780695691834 V
+PH2 : 0.18876861412739765 atm
+PH2O : 0.23234159135622343 atm
+PO2 : 0.18588253139571181 atm
+Power-Thermal : 203.61323632805914 W
+###########
+I :60.0 A
+
+E : 2.9224828398515306 V
+FC Efficiency : 0.3526149276656245
+FC Power : 165.0237861475123 W
+FC Voltage : 2.7503964357918718 V
+PH2 : 0.18875456374578325 atm
+PH2O : 0.2323242977608949 atm
+PO2 : 0.1858745985575135 atm
+Power-Thermal : 203.97621385248772 W
+###########
+I :60.1 A
+
+E : 2.9224812629719716 V
+FC Efficiency : 0.35256568057938986
+FC Power : 165.2757397420064 W
+FC Voltage : 2.750012308519241 V
+PH2 : 0.1887405133641689 atm
+PH2O : 0.23230700416556635 atm
+PO2 : 0.1858666657193152 atm
+Power-Thermal : 204.33926025799363 W
+###########
+I :60.2 A
+
+E : 2.92247968602511 V
+FC Efficiency : 0.3525164504400929
+FC Power : 165.52762446865003 W
+FC Voltage : 2.7496283134327246 V
+PH2 : 0.1887264629825545 atm
+PH2O : 0.2322897105702378 atm
+PO2 : 0.1858587328811169 atm
+Power-Thermal : 204.70237553135001 W
+###########
+I :60.3 A
+
+E : 2.9224781090109393 V
+FC Efficiency : 0.35246723719144846
+FC Power : 165.77944034062588 W
+FC Voltage : 2.749244450093298 V
+PH2 : 0.1887124126009401 atm
+PH2O : 0.23227241697490927 atm
+PO2 : 0.1858508000429186 atm
+Power-Thermal : 205.06555965937412 W
+###########
+I :60.4 A
+
+E : 2.9224765319294543 V
+FC Efficiency : 0.35241804077745187
+FC Power : 166.03118737107312 W
+FC Voltage : 2.7488607180641247 V
+PH2 : 0.18869836221932573 atm
+PH2O : 0.23225512337958074 atm
+PO2 : 0.1858428672047203 atm
+Power-Thermal : 205.4288126289269 W
+###########
+I :60.5 A
+
+E : 2.922474954780649 V
+FC Efficiency : 0.3523688611423759
+FC Power : 166.2828655730872 W
+FC Voltage : 2.748477116910532 V
+PH2 : 0.18868431183771134 atm
+PH2O : 0.2322378297842522 atm
+PO2 : 0.185834934366522 atm
+Power-Thermal : 205.7921344269128 W
+###########
+I :60.6 A
+
+E : 2.9224733775645175 V
+FC Efficiency : 0.3523196982307696
+FC Power : 166.53447495972017 W
+FC Voltage : 2.7480936462000027 V
+PH2 : 0.18867026145609694 atm
+PH2O : 0.23222053618892366 atm
+PO2 : 0.18582700152832368 atm
+Power-Thermal : 206.15552504027985 W
+###########
+I :60.7 A
+
+E : 2.922471800281054 V
+FC Efficiency : 0.35227055198745616
+FC Power : 166.78601554398102 W
+FC Voltage : 2.7477103055021583 V
+PH2 : 0.18865621107448258 atm
+PH2O : 0.23220324259359512 atm
+PO2 : 0.18581906869012538 atm
+Power-Thermal : 206.518984456019 W
+###########
+I :60.8 A
+
+E : 2.922470222930253 V
+FC Efficiency : 0.3522214223575315
+FC Power : 167.03748733883575 W
+FC Voltage : 2.747327094388746 V
+PH2 : 0.18864216069286818 atm
+PH2O : 0.23218594899826656 atm
+PO2 : 0.18581113585192707 atm
+Power-Thermal : 206.88251266116424 W
+###########
+I :60.9 A
+
+E : 2.9224686455121085 V
+FC Efficiency : 0.35217230928636195
+FC Power : 167.28889035720763 W
+FC Voltage : 2.746944012433623 V
+PH2 : 0.1886281103112538 atm
+PH2O : 0.23216865540293802 atm
+PO2 : 0.18580320301372877 atm
+Power-Thermal : 207.24610964279236 W
+###########
+I :61.0 A
+
+E : 2.922467068026615 V
+FC Efficiency : 0.352123212719583
+FC Power : 167.54022461197758 W
+FC Voltage : 2.7465610592127474 V
+PH2 : 0.1886140599296394 atm
+PH2O : 0.23215136180760948 atm
+PO2 : 0.18579527017553046 atm
+Power-Thermal : 207.60977538802243 W
+###########
+I :61.1 A
+
+E : 2.9224654904737672 V
+FC Efficiency : 0.35207413260309706
+FC Power : 167.791490115984 W
+FC Voltage : 2.746178234304157 V
+PH2 : 0.18860000954802503 atm
+PH2O : 0.23213406821228094 atm
+PO2 : 0.18578733733733216 atm
+Power-Thermal : 207.97350988401604 W
+###########
+I :61.2 A
+
+E : 2.922463912853559 V
+FC Efficiency : 0.35202506888307195
+FC Power : 168.04268688202325 W
+FC Voltage : 2.7457955372879614 V
+PH2 : 0.18858595916641063 atm
+PH2O : 0.2321167746169524 atm
+PO2 : 0.18577940449913385 atm
+Power-Thermal : 208.3373131179768 W
+###########
+I :61.3 A
+
+E : 2.922462335165984 V
+FC Efficiency : 0.35197602150593943
+FC Power : 168.2938149228499 W
+FC Voltage : 2.745412967746328 V
+PH2 : 0.18857190878479624 atm
+PH2O : 0.23209948102162387 atm
+PO2 : 0.18577147166093555 atm
+Power-Thermal : 208.70118507715011 W
+###########
+I :61.4 A
+
+E : 2.9224607574110366 V
+FC Efficiency : 0.3519269904183928
+FC Power : 168.5448742511767 W
+FC Voltage : 2.745030525263464 V
+PH2 : 0.18855785840318187 atm
+PH2O : 0.23208218742629533 atm
+PO2 : 0.18576353882273725 atm
+Power-Thermal : 209.0651257488233 W
+###########
+I :61.5 A
+
+E : 2.9224591795887123 V
+FC Efficiency : 0.35187797556738604
+FC Power : 168.7958648796751 W
+FC Voltage : 2.7446482094256113 V
+PH2 : 0.18854380802156745 atm
+PH2O : 0.23206489383096673 atm
+PO2 : 0.18575560598453894 atm
+Power-Thermal : 209.42913512032493 W
+###########
+I :61.6 A
+
+E : 2.922457601699003 V
+FC Efficiency : 0.3518289769001312
+FC Power : 169.04678682097506 W
+FC Voltage : 2.7442660198210236 V
+PH2 : 0.18852975763995306 atm
+PH2O : 0.2320476002356382 atm
+PO2 : 0.18574767314634064 atm
+Power-Thermal : 209.79321317902497 W
+###########
+I :61.7 A
+
+E : 2.9224560237419057 V
+FC Efficiency : 0.3517799943640976
+FC Power : 169.29764008766566 W
+FC Voltage : 2.7438839560399617 V
+PH2 : 0.18851570725833866 atm
+PH2O : 0.23203030664030966 atm
+PO2 : 0.18573974030814233 atm
+Power-Thermal : 210.15735991233439 W
+###########
+I :61.8 A
+
+E : 2.922454445717413 V
+FC Efficiency : 0.3517310279070097
+FC Power : 169.54842469229496 W
+FC Voltage : 2.743502017674676 V
+PH2 : 0.18850165687672427 atm
+PH2O : 0.23201301304498112 atm
+PO2 : 0.18573180746994403 atm
+Power-Thermal : 210.52157530770504 W
+###########
+I :61.9 A
+
+E : 2.9224528676255197 V
+FC Efficiency : 0.35168207747684527
+FC Power : 169.79914064737042 W
+FC Voltage : 2.743120204319393 V
+PH2 : 0.1884876064951099 atm
+PH2O : 0.23199571944965258 atm
+PO2 : 0.18572387463174572 atm
+Power-Thermal : 210.88585935262958 W
+###########
+I :62.0 A
+
+E : 2.922451289466219 V
+FC Efficiency : 0.35163314302183407
+FC Power : 170.04978796535897 W
+FC Voltage : 2.742738515570306 V
+PH2 : 0.1884735561134955 atm
+PH2O : 0.23197842585432404 atm
+PO2 : 0.18571594179354742 atm
+Power-Thermal : 211.25021203464104 W
+###########
+I :62.1 A
+
+E : 2.9224497112395067 V
+FC Efficiency : 0.35158422449045656
+FC Power : 170.30036665868735 W
+FC Voltage : 2.742356951025561 V
+PH2 : 0.1884595057318811 atm
+PH2O : 0.23196113225899548 atm
+PO2 : 0.1857080089553491 atm
+Power-Thermal : 211.6146333413127 W
+###########
+I :62.2 A
+
+E : 2.922448132945376 V
+FC Efficiency : 0.3515353218314413
+FC Power : 170.55087673974208 W
+FC Voltage : 2.741975510285242 V
+PH2 : 0.18844545535026674 atm
+PH2O : 0.23194383866366694 atm
+PO2 : 0.1857000761171508 atm
+Power-Thermal : 211.97912326025798 W
+###########
+I :62.3 A
+
+E : 2.9224465545838214 V
+FC Efficiency : 0.35148643499376425
+FC Power : 170.8013182208698 W
+FC Voltage : 2.741594192951361 V
+PH2 : 0.18843140496865235 atm
+PH2O : 0.2319265450683384 atm
+PO2 : 0.1856921432789525 atm
+Power-Thermal : 212.3436817791302 W
+###########
+I :62.4 A
+
+E : 2.922444976154837 V
+FC Efficiency : 0.35143756392664693
+FC Power : 171.0516911143776 W
+FC Voltage : 2.741212998627846 V
+PH2 : 0.18841735458703796 atm
+PH2O : 0.23190925147300986 atm
+PO2 : 0.1856842104407542 atm
+Power-Thermal : 212.70830888562242 W
+###########
+I :62.5 A
+
+E : 2.9224433976584177 V
+FC Efficiency : 0.3513887085795546
+FC Power : 171.3019954325329 W
+FC Voltage : 2.740831926920526 V
+PH2 : 0.1884033042054236 atm
+PH2O : 0.23189195787768133 atm
+PO2 : 0.1856762776025559 atm
+Power-Thermal : 213.07300456746714 W
+###########
+I :62.6 A
+
+E : 2.9224418190945567 V
+FC Efficiency : 0.35133986890219504
+FC Power : 171.55223118756382 W
+FC Voltage : 2.7404509774371215 V
+PH2 : 0.1883892538238092 atm
+PH2O : 0.2318746642823528 atm
+PO2 : 0.1856683447643576 atm
+Power-Thermal : 213.43776881243622 W
+###########
+I :62.7 A
+
+E : 2.922440240463249 V
+FC Efficiency : 0.35129104484451673
+FC Power : 171.80239839165938 W
+FC Voltage : 2.740070149787231 V
+PH2 : 0.1883752034421948 atm
+PH2O : 0.23185737068702425 atm
+PO2 : 0.18566041192615929 atm
+Power-Thermal : 213.80260160834067 W
+###########
+I :62.8 A
+
+E : 2.922438661764488 V
+FC Efficiency : 0.3512422363567075
+FC Power : 172.0524970569696 W
+FC Voltage : 2.7396894435823187 V
+PH2 : 0.1883611530605804 atm
+PH2O : 0.2318400770916957 atm
+PO2 : 0.18565247908796098 atm
+Power-Thermal : 214.1675029430304 W
+###########
+I :62.9 A
+
+E : 2.922437082998269 V
+FC Efficiency : 0.35119344338919306
+FC Power : 172.3025271956059 W
+FC Voltage : 2.739308858435706 V
+PH2 : 0.18834710267896604 atm
+PH2O : 0.23182278349636717 atm
+PO2 : 0.18564454624976268 atm
+Power-Thermal : 214.5324728043941 W
+###########
+I :63.0 A
+
+E : 2.9224355041645866 V
+FC Efficiency : 0.35114466589263515
+FC Power : 172.5524888196409 W
+FC Voltage : 2.738928393962554 V
+PH2 : 0.18833305229735164 atm
+PH2O : 0.2318054899010386 atm
+PO2 : 0.18563661341156437 atm
+Power-Thermal : 214.89751118035912 W
+###########
+I :63.1 A
+
+E : 2.9224339252634337 V
+FC Efficiency : 0.3510959038179303
+FC Power : 172.80238194110893 W
+FC Voltage : 2.7385480497798564 V
+PH2 : 0.18831900191573725 atm
+PH2O : 0.23178819630571007 atm
+PO2 : 0.18562868057336607 atm
+Power-Thermal : 215.2626180588911 W
+###########
+I :63.2 A
+
+E : 2.922432346294804 V
+FC Efficiency : 0.3510471571162083
+FC Power : 173.05220657200607 W
+FC Voltage : 2.7381678255064252 V
+PH2 : 0.18830495153412283 atm
+PH2O : 0.2317709027103815 atm
+PO2 : 0.18562074773516776 atm
+Power-Thermal : 215.62779342799396 W
+###########
+I :63.3 A
+
+E : 2.922430767258694 V
+FC Efficiency : 0.3509984257388312
+FC Power : 173.30196272429052 W
+FC Voltage : 2.7377877207628836 V
+PH2 : 0.18829090115250846 atm
+PH2O : 0.23175360911505297 atm
+PO2 : 0.18561281489696946 atm
+Power-Thermal : 215.99303727570947 W
+###########
+I :63.4 A
+
+E : 2.922429188155096 V
+FC Efficiency : 0.35094970963739053
+FC Power : 173.55165040988237 W
+FC Voltage : 2.7374077351716464 V
+PH2 : 0.18827685077089407 atm
+PH2O : 0.2317363155197244 atm
+PO2 : 0.18560488205877115 atm
+Power-Thermal : 216.35834959011763 W
+###########
+I :63.5 A
+
+E : 2.9224276089840058 V
+FC Efficiency : 0.3509010087637075
+FC Power : 173.80126964066434 W
+FC Voltage : 2.7370278683569187 V
+PH2 : 0.18826280038927967 atm
+PH2O : 0.23171902192439586 atm
+PO2 : 0.18559694922057285 atm
+Power-Thermal : 216.7237303593357 W
+###########
+I :63.6 A
+
+E : 2.9224260297454165 V
+FC Efficiency : 0.35085232306983016
+FC Power : 174.05082042848136 W
+FC Voltage : 2.7366481199446753 V
+PH2 : 0.18824875000766528 atm
+PH2O : 0.23170172832906732 atm
+PO2 : 0.18558901638237454 atm
+Power-Thermal : 217.08917957151868 W
+###########
+I :63.7 A
+
+E : 2.922424450439322 V
+FC Efficiency : 0.35080365250803286
+FC Power : 174.30030278514124 W
+FC Voltage : 2.7362684895626566 V
+PH2 : 0.1882346996260509 atm
+PH2O : 0.2316844347337388 atm
+PO2 : 0.18558108354417624 atm
+Power-Thermal : 217.4546972148588 W
+###########
+I :63.8 A
+
+E : 2.9224228710657174 V
+FC Efficiency : 0.35075499703081453
+FC Power : 174.54971672241456 W
+FC Voltage : 2.7358889768403536 V
+PH2 : 0.18822064924443652 atm
+PH2O : 0.23166714113841025 atm
+PO2 : 0.18557315070597794 atm
+Power-Thermal : 217.82028327758545 W
+###########
+I :63.9 A
+
+E : 2.922421291624597 V
+FC Efficiency : 0.3507063565908972
+FC Power : 174.79906225203501 W
+FC Voltage : 2.7355095814089987 V
+PH2 : 0.18820659886282212 atm
+PH2O : 0.2316498475430817 atm
+PO2 : 0.18556521786777963 atm
+Power-Thermal : 218.185937747965 W
+###########
+I :64.0 A
+
+E : 2.9224197121159543 V
+FC Efficiency : 0.35065773114122484
+FC Power : 175.04833938569945 W
+FC Voltage : 2.735130302901554 V
+PH2 : 0.18819254848120776 atm
+PH2O : 0.23163255394775317 atm
+PO2 : 0.18555728502958133 atm
+Power-Thermal : 218.55166061430057 W
+###########
+I :64.1 A
+
+E : 2.922418132539784 V
+FC Efficiency : 0.3506091206349615
+FC Power : 175.29754813506807 W
+FC Voltage : 2.7347511409527003 V
+PH2 : 0.18817849809959336 atm
+PH2O : 0.23161526035242463 atm
+PO2 : 0.18554935219138302 atm
+Power-Thermal : 218.9174518649319 W
+###########
+I :64.2 A
+
+E : 2.9224165528960806 V
+FC Efficiency : 0.3505605250254907
+FC Power : 175.54668851176473 W
+FC Voltage : 2.7343720951988275 V
+PH2 : 0.18816444771797897 atm
+PH2O : 0.2315979667570961 atm
+PO2 : 0.18554141935318472 atm
+Power-Thermal : 219.2833114882353 W
+###########
+I :64.3 A
+
+E : 2.9224149731848375 V
+FC Efficiency : 0.3505119442664132
+FC Power : 175.79576052737687 W
+FC Voltage : 2.733993165278023 V
+PH2 : 0.1881503973363646 atm
+PH2O : 0.23158067316176753 atm
+PO2 : 0.1855334865149864 atm
+Power-Thermal : 219.64923947262312 W
+###########
+I :64.4 A
+
+E : 2.9224133934060497 V
+FC Efficiency : 0.3504633783115463
+FC Power : 176.04476419345596 W
+FC Voltage : 2.733614350830061 V
+PH2 : 0.1881363469547502 atm
+PH2O : 0.231563379566439 atm
+PO2 : 0.1855255536767881 atm
+Power-Thermal : 220.0152358065441 W
+###########
+I :64.5 A
+
+E : 2.922411813559711 V
+FC Efficiency : 0.3504148271149223
+FC Power : 176.2936995215174 W
+FC Voltage : 2.733235651496394 V
+PH2 : 0.1881222965731358 atm
+PH2O : 0.23154608597111045 atm
+PO2 : 0.1855176208385898 atm
+Power-Thermal : 220.38130047848261 W
+###########
+I :64.6 A
+
+E : 2.9224102336458158 V
+FC Efficiency : 0.35036629063078684
+FC Power : 176.54256652304088 W
+FC Voltage : 2.7328570669201375 V
+PH2 : 0.18810824619152142 atm
+PH2O : 0.23152879237578192 atm
+PO2 : 0.1855096880003915 atm
+Power-Thermal : 220.74743347695912 W
+###########
+I :64.7 A
+
+E : 2.922408653664358 V
+FC Efficiency : 0.3503177688135983
+FC Power : 176.7913652094705 W
+FC Voltage : 2.7324785967460667 V
+PH2 : 0.18809419580990705 atm
+PH2O : 0.23151149878045338 atm
+PO2 : 0.1855017551621932 atm
+Power-Thermal : 221.11363479052952 W
+###########
+I :64.8 A
+
+E : 2.922407073615332 V
+FC Efficiency : 0.35026926161802563
+FC Power : 177.0400955922149 W
+FC Voltage : 2.7321002406206003 V
+PH2 : 0.18808014542829266 atm
+PH2O : 0.23149420518512484 atm
+PO2 : 0.1854938223239949 atm
+Power-Thermal : 221.4799044077851 W
+###########
+I :64.9 A
+
+E : 2.9224054934987325 V
+FC Efficiency : 0.35022076899894805
+FC Power : 177.2887576826475 W
+FC Voltage : 2.731721998191795 V
+PH2 : 0.18806609504667826 atm
+PH2O : 0.2314769115897963 atm
+PO2 : 0.18548588948579658 atm
+Power-Thermal : 221.84624231735256 W
+###########
+I :65.0 A
+
+E : 2.922403913314553 V
+FC Efficiency : 0.3501722909114524
+FC Power : 177.5373514921064 W
+FC Voltage : 2.7313438691093292 V
+PH2 : 0.18805204466506384 atm
+PH2O : 0.2314596179944677 atm
+PO2 : 0.18547795664759828 atm
+Power-Thermal : 222.21264850789362 W
+###########
+I :65.1 A
+
+E : 2.922402333062788 V
+FC Efficiency : 0.3501238273108334
+FC Power : 177.785877031895 W
+FC Voltage : 2.730965853024501 V
+PH2 : 0.18803799428344947 atm
+PH2O : 0.23144232439913917 atm
+PO2 : 0.18547002380939998 atm
+Power-Thermal : 222.57912296810497 W
+###########
+I :65.2 A
+
+E : 2.922400752743432 V
+FC Efficiency : 0.3500753781525914
+FC Power : 178.03433431328187 W
+FC Voltage : 2.7305879495902126 V
+PH2 : 0.18802394390183508 atm
+PH2O : 0.23142503080381063 atm
+PO2 : 0.18546209097120167 atm
+Power-Thermal : 222.94566568671817 W
+###########
+I :65.3 A
+
+E : 2.922399172356479 V
+FC Efficiency : 0.3500269433924308
+FC Power : 178.2827233475007 W
+FC Voltage : 2.7302101584609604 V
+PH2 : 0.18800989352022068 atm
+PH2O : 0.2314077372084821 atm
+PO2 : 0.18545415813300337 atm
+Power-Thermal : 223.3122766524993 W
+###########
+I :65.4 A
+
+E : 2.922397591901923 V
+FC Efficiency : 0.34997852298626014
+FC Power : 178.53104414575105 W
+FC Voltage : 2.7298324792928295 V
+PH2 : 0.18799584313860632 atm
+PH2O : 0.23139044361315356 atm
+PO2 : 0.18544622529480506 atm
+Power-Thermal : 223.67895585424898 W
+###########
+I :65.5 A
+
+E : 2.9223960113797585 V
+FC Efficiency : 0.3499301168901896
+FC Power : 178.77929671919787 W
+FC Voltage : 2.729454911743479 V
+PH2 : 0.18798179275699192 atm
+PH2O : 0.23137315001782502 atm
+PO2 : 0.18543829245660676 atm
+Power-Thermal : 224.04570328080214 W
+###########
+I :65.6 A
+
+E : 2.9223944307899794 V
+FC Efficiency : 0.34988172506053034
+FC Power : 179.0274810789722 W
+FC Voltage : 2.729077455472137 V
+PH2 : 0.18796774237537753 atm
+PH2O : 0.23135585642249645 atm
+PO2 : 0.18543035961840845 atm
+Power-Thermal : 224.4125189210278 W
+###########
+I :65.7 A
+
+E : 2.9223928501325807 V
+FC Efficiency : 0.34983334745379324
+FC Power : 179.2755972361709 W
+FC Voltage : 2.7287001101395876 V
+PH2 : 0.18795369199376313 atm
+PH2O : 0.23133856282716792 atm
+PO2 : 0.18542242678021015 atm
+Power-Thermal : 224.77940276382913 W
+###########
+I :65.8 A
+
+E : 2.922391269407556 V
+FC Efficiency : 0.3497849840266874
+FC Power : 179.52364520185705 W
+FC Voltage : 2.728322875408162 V
+PH2 : 0.18793964161214877 atm
+PH2O : 0.23132126923183938 atm
+PO2 : 0.18541449394201184 atm
+Power-Thermal : 225.14635479814297 W
+###########
+I :65.9 A
+
+E : 2.9223896886148992 V
+FC Efficiency : 0.3497366347361193
+FC Power : 179.7716249870601 W
+FC Voltage : 2.727945750941731 V
+PH2 : 0.18792559123053437 atm
+PH2O : 0.23130397563651084 atm
+PO2 : 0.18540656110381354 atm
+Power-Thermal : 225.51337501293997 W
+###########
+I :66.0 A
+
+E : 2.922388107754605 V
+FC Efficiency : 0.34968829953919145
+FC Power : 180.01953660277576 W
+FC Voltage : 2.7275687364056935 V
+PH2 : 0.18791154084891998 atm
+PH2O : 0.2312866820411823 atm
+PO2 : 0.18539862826561523 atm
+Power-Thermal : 225.88046339722425 W
+###########
+I :66.1 A
+
+E : 2.9223865268266676 V
+FC Efficiency : 0.34963997839320116
+FC Power : 180.26738005996665 W
+FC Voltage : 2.7271918314669694 V
+PH2 : 0.1878974904673056 atm
+PH2O : 0.23126938844585376 atm
+PO2 : 0.18539069542741693 atm
+Power-Thermal : 226.24761994003333 W
+###########
+I :66.2 A
+
+E : 2.9223849458310807 V
+FC Efficiency : 0.3495916712556393
+FC Power : 180.5151553695619 W
+FC Voltage : 2.7268150357939867 V
+PH2 : 0.18788344008569122 atm
+PH2O : 0.23125209485052522 atm
+PO2 : 0.18538276258921862 atm
+Power-Thermal : 226.6148446304381 W
+###########
+I :66.3 A
+
+E : 2.922383364767839 V
+FC Efficiency : 0.34954337808418934
+FC Power : 180.76286254245767 W
+FC Voltage : 2.726438349056677 V
+PH2 : 0.18786938970407682 atm
+PH2O : 0.2312348012551967 atm
+PO2 : 0.18537482975102032 atm
+Power-Thermal : 226.98213745754234 W
+###########
+I :66.4 A
+
+E : 2.9223817836369372 V
+FC Efficiency : 0.3494950988367262
+FC Power : 181.01050158951725 W
+FC Voltage : 2.7260617709264645 V
+PH2 : 0.18785533932246243 atm
+PH2O : 0.23121750765986815 atm
+PO2 : 0.18536689691282202 atm
+Power-Thermal : 227.3494984104828 W
+###########
+I :66.5 A
+
+E : 2.9223802024383683 V
+FC Efficiency : 0.3494468334713147
+FC Power : 181.25807252157097 W
+FC Voltage : 2.725685301076255 V
+PH2 : 0.18784128894084806 atm
+PH2O : 0.23120021406453958 atm
+PO2 : 0.1853589640746237 atm
+Power-Thermal : 227.71692747842906 W
+###########
+I :66.6 A
+
+E : 2.922378621172127 V
+FC Efficiency : 0.3493985819462089
+FC Power : 181.5055753494166 W
+FC Voltage : 2.7253089391804295 V
+PH2 : 0.18782723855923367 atm
+PH2O : 0.23118292046921105 atm
+PO2 : 0.18535103123642543 atm
+Power-Thermal : 228.0844246505834 W
+###########
+I :66.7 A
+
+E : 2.9223770398382083 V
+FC Efficiency : 0.34935034421985073
+FC Power : 181.75301008381956 W
+FC Voltage : 2.724932684914836 V
+PH2 : 0.18781318817761924 atm
+PH2O : 0.23116562687388248 atm
+PO2 : 0.1853430983982271 atm
+Power-Thermal : 228.45198991618048 W
+###########
+I :66.8 A
+
+E : 2.9223754584366053 V
+FC Efficiency : 0.3493021202508687
+FC Power : 182.00037673551265 W
+FC Voltage : 2.724556537956776 V
+PH2 : 0.18779913779600485 atm
+PH2O : 0.23114833327855394 atm
+PO2 : 0.1853351655600288 atm
+Power-Thermal : 228.81962326448738 W
+###########
+I :66.9 A
+
+E : 2.922373876967313 V
+FC Efficiency : 0.3492539099980774
+FC Power : 182.24767531519677 W
+FC Voltage : 2.724180497985004 V
+PH2 : 0.18778508741439048 atm
+PH2O : 0.23113103968322538 atm
+PO2 : 0.1853272327218305 atm
+Power-Thermal : 229.1873246848033 W
+###########
+I :67.0 A
+
+E : 2.922372295430325 V
+FC Efficiency : 0.34920571342047557
+FC Power : 182.49490583354054 W
+FC Voltage : 2.7238045646797096 V
+PH2 : 0.1877710370327761 atm
+PH2O : 0.23111374608789684 atm
+PO2 : 0.1853192998836322 atm
+Power-Thermal : 229.5550941664595 W
+###########
+I :67.1 A
+
+E : 2.9223707138256354 V
+FC Efficiency : 0.34915753047724546
+FC Power : 182.74206830118072 W
+FC Voltage : 2.723428737722515 V
+PH2 : 0.1877569866511617 atm
+PH2O : 0.2310964524925683 atm
+PO2 : 0.18531136704543388 atm
+Power-Thermal : 229.92293169881927 W
+###########
+I :67.2 A
+
+E : 2.9223691321532392 V
+FC Efficiency : 0.34910936112775187
+FC Power : 182.98916272872245 W
+FC Voltage : 2.723053016796465 V
+PH2 : 0.18774293626954733 atm
+PH2O : 0.23107915889723976 atm
+PO2 : 0.18530343420723558 atm
+Power-Thermal : 230.2908372712776 W
+###########
+I :67.3 A
+
+E : 2.92236755041313 V
+FC Efficiency : 0.3490612053315408
+FC Power : 183.23618912673902 W
+FC Voltage : 2.7226774015860182 V
+PH2 : 0.18772888588793293 atm
+PH2O : 0.23106186530191122 atm
+PO2 : 0.18529550136903727 atm
+Power-Thermal : 230.658810873261 W
+###########
+I :67.4 A
+
+E : 2.9223659686053027 V
+FC Efficiency : 0.34901306304833823
+FC Power : 183.4831475057724 W
+FC Voltage : 2.7223018917770383 V
+PH2 : 0.18771483550631854 atm
+PH2O : 0.23104457170658269 atm
+PO2 : 0.18528756853083897 atm
+Power-Thermal : 231.02685249422765 W
+###########
+I :67.5 A
+
+E : 2.9223643867297504 V
+FC Efficiency : 0.3489649342380495
+FC Power : 183.73003787633309 W
+FC Voltage : 2.7219264870567863 V
+PH2 : 0.18770078512470414 atm
+PH2O : 0.23102727811125415 atm
+PO2 : 0.18527963569264067 atm
+Power-Thermal : 231.39496212366694 W
+###########
+I :67.6 A
+
+E : 2.9223628047864683 V
+FC Efficiency : 0.348916818860758
+FC Power : 183.97686024890046 W
+FC Voltage : 2.7215511871139126 V
+PH2 : 0.18768673474308978 atm
+PH2O : 0.2310099845159256 atm
+PO2 : 0.18527170285444236 atm
+Power-Thermal : 231.76313975109952 W
+###########
+I :67.7 A
+
+E : 2.9223612227754496 V
+FC Efficiency : 0.34886871687672394
+FC Power : 184.22361463392284 W
+FC Voltage : 2.7211759916384466 V
+PH2 : 0.18767268436147538 atm
+PH2O : 0.23099269092059707 atm
+PO2 : 0.18526377001624406 atm
+Power-Thermal : 232.1313853660772 W
+###########
+I :67.8 A
+
+E : 2.9223596406966896 V
+FC Efficiency : 0.34882062824638377
+FC Power : 184.4703010418176 W
+FC Voltage : 2.7208009003217937 V
+PH2 : 0.187658633979861 atm
+PH2O : 0.2309753973252685 atm
+PO2 : 0.18525583717804575 atm
+Power-Thermal : 232.4996989581824 W
+###########
+I :67.9 A
+
+E : 2.9223580585501816 V
+FC Efficiency : 0.3487725529303486
+FC Power : 184.71691948297124 W
+FC Voltage : 2.720425912856719 V
+PH2 : 0.18764458359824662 atm
+PH2O : 0.23095810372993997 atm
+PO2 : 0.18524790433984745 atm
+Power-Thermal : 232.8680805170288 W
+###########
+I :68.0 A
+
+E : 2.9223564763359207 V
+FC Efficiency : 0.3487244908894037
+FC Power : 184.96346996773974 W
+FC Voltage : 2.720051028937349 V
+PH2 : 0.18763053321663223 atm
+PH2O : 0.23094081013461143 atm
+PO2 : 0.18523997150164914 atm
+Power-Thermal : 233.23653003226028 W
+###########
+I :68.1 A
+
+E : 2.9223548940539 V
+FC Efficiency : 0.348676442084507
+FC Power : 185.20995250644842 W
+FC Voltage : 2.7196762482591548 V
+PH2 : 0.18761648283501783 atm
+PH2O : 0.2309235165392829 atm
+PO2 : 0.18523203866345084 atm
+Power-Thermal : 233.60504749355155 W
+###########
+I :68.2 A
+
+E : 2.9223533117041143 V
+FC Efficiency : 0.3486284064767883
+FC Power : 185.45636710939232 W
+FC Voltage : 2.7193015705189487 V
+PH2 : 0.18760243245340344 atm
+PH2O : 0.23090622294395435 atm
+PO2 : 0.18522410582525256 atm
+Power-Thermal : 233.97363289060772 W
+###########
+I :68.3 A
+
+E : 2.922351729286558 V
+FC Efficiency : 0.3485803840275485
+FC Power : 185.70271378683617 W
+FC Voltage : 2.7189269954148783 V
+PH2 : 0.18758838207178907 atm
+PH2O : 0.23088892934862582 atm
+PO2 : 0.18521617298705426 atm
+Power-Thermal : 234.34228621316382 W
+###########
+I :68.4 A
+
+E : 2.922350146801225 V
+FC Efficiency : 0.348532374698258
+FC Power : 185.94899254901463 W
+FC Voltage : 2.7185525226464127 V
+PH2 : 0.18757433169017465 atm
+PH2O : 0.23087163575329722 atm
+PO2 : 0.18520824014885592 atm
+Power-Thermal : 234.71100745098542 W
+###########
+I :68.5 A
+
+E : 2.9223485642481095 V
+FC Efficiency : 0.3484843784505563
+FC Power : 186.19520340613224 W
+FC Voltage : 2.7181781519143393 V
+PH2 : 0.18756028130856026 atm
+PH2O : 0.23085434215796868 atm
+PO2 : 0.18520030731065762 atm
+Power-Thermal : 235.07979659386777 W
+###########
+I :68.6 A
+
+E : 2.9223469816272063 V
+FC Efficiency : 0.3484363952462509
+FC Power : 186.44134636836395 W
+FC Voltage : 2.7178038829207574 V
+PH2 : 0.18754623092694586 atm
+PH2O : 0.23083704856264015 atm
+PO2 : 0.18519237447245931 atm
+Power-Thermal : 235.44865363163606 W
+###########
+I :68.7 A
+
+E : 2.9223453989385084 V
+FC Efficiency : 0.34838842504731576
+FC Power : 186.68742144585465 W
+FC Voltage : 2.717429715369063 V
+PH2 : 0.1875321805453315 atm
+PH2O : 0.2308197549673116 atm
+PO2 : 0.185184441634261 atm
+Power-Thermal : 235.8175785541454 W
+###########
+I :68.8 A
+
+E : 2.9223438161820106 V
+FC Efficiency : 0.3483404678158912
+FC Power : 186.93342864871983 W
+FC Voltage : 2.7170556489639512 V
+PH2 : 0.1875181301637171 atm
+PH2O : 0.23080246137198307 atm
+PO2 : 0.1851765087960627 atm
+Power-Thermal : 236.18657135128018 W
+###########
+I :68.9 A
+
+E : 2.922342233357707 V
+FC Efficiency : 0.3482925235142822
+FC Power : 187.17936798704557 W
+FC Voltage : 2.716681683411401 V
+PH2 : 0.1875040797821027 atm
+PH2O : 0.23078516777665453 atm
+PO2 : 0.1851685759578644 atm
+Power-Thermal : 236.5556320129545 W
+###########
+I :69.0 A
+
+E : 2.9223406504655927 V
+FC Efficiency : 0.34824459210495795
+FC Power : 187.42523947088839 W
+FC Voltage : 2.7163078184186724 V
+PH2 : 0.18749002940048834 atm
+PH2O : 0.230767874181326 atm
+PO2 : 0.1851606431196661 atm
+Power-Thermal : 236.92476052911164 W
+###########
+I :69.1 A
+
+E : 2.9223390675056606 V
+FC Efficiency : 0.34819667355055073
+FC Power : 187.67104311027583 W
+FC Voltage : 2.715934053694296 V
+PH2 : 0.18747597901887395 atm
+PH2O : 0.23075058058599743 atm
+PO2 : 0.1851527102814678 atm
+Power-Thermal : 237.29395688972414 W
+###########
+I :69.2 A
+
+E : 2.9223374844779046 V
+FC Efficiency : 0.3481487678138545
+FC Power : 187.91677891520612 W
+FC Voltage : 2.7155603889480653 V
+PH2 : 0.18746192863725955 atm
+PH2O : 0.2307332869906689 atm
+PO2 : 0.1851447774432695 atm
+Power-Thermal : 237.66322108479392 W
+###########
+I :69.3 A
+
+E : 2.9223359013823207 V
+FC Efficiency : 0.34810087485782504
+FC Power : 188.16244689564874 W
+FC Voltage : 2.7151868238910355 V
+PH2 : 0.18744787825564516 atm
+PH2O : 0.23071599339534035 atm
+PO2 : 0.18513684460507118 atm
+Power-Thermal : 238.03255310435125 W
+###########
+I :69.4 A
+
+E : 2.922334318218902 V
+FC Efficiency : 0.34805299464557804
+FC Power : 188.40804706154432 W
+FC Voltage : 2.7148133582355087 V
+PH2 : 0.1874338278740308 atm
+PH2O : 0.2306986998000118 atm
+PO2 : 0.18512891176687288 atm
+Power-Thermal : 238.40195293845574 W
+###########
+I :69.5 A
+
+E : 2.9223327349876422 V
+FC Efficiency : 0.3480051271403883
+FC Power : 188.6535794228045 W
+FC Voltage : 2.714439991695029 V
+PH2 : 0.1874197774924164 atm
+PH2O : 0.23068140620468328 atm
+PO2 : 0.18512097892867457 atm
+Power-Thermal : 238.77142057719553 W
+###########
+I :69.6 A
+
+E : 2.922331151688536 V
+FC Efficiency : 0.34795727230568935
+FC Power : 188.89904398931264 W
+FC Voltage : 2.714066723984377 V
+PH2 : 0.187405727110802 atm
+PH2O : 0.23066411260935474 atm
+PO2 : 0.18511304609047627 atm
+Power-Thermal : 239.14095601068735 W
+###########
+I :69.7 A
+
+E : 2.922329568321578 V
+FC Efficiency : 0.34790943010507236
+FC Power : 189.14444077092367 W
+FC Voltage : 2.7136935548195646 V
+PH2 : 0.18739167672918763 atm
+PH2O : 0.2306468190140262 atm
+PO2 : 0.18510511325227796 atm
+Power-Thermal : 239.5105592290764 W
+###########
+I :69.8 A
+
+E : 2.9223279848867625 V
+FC Efficiency : 0.34786160050228465
+FC Power : 189.38976977746387 W
+FC Voltage : 2.7133204839178204 V
+PH2 : 0.18737762634757324 atm
+PH2O : 0.23062952541869766 atm
+PO2 : 0.18509718041407966 atm
+Power-Thermal : 239.88023022253614 W
+###########
+I :69.9 A
+
+E : 2.922326401384083 V
+FC Efficiency : 0.3478137834612295
+FC Power : 189.63503101873158 W
+FC Voltage : 2.7129475109975902 V
+PH2 : 0.18736357596595885 atm
+PH2O : 0.23061223182336912 atm
+PO2 : 0.18508924757588138 atm
+Power-Thermal : 240.2499689812685 W
+###########
+I :70.0 A
+
+E : 2.922324817813533 V
+FC Efficiency : 0.3477659789459649
+FC Power : 189.88022450449685 W
+FC Voltage : 2.7125746357785263 V
+PH2 : 0.18734952558434445 atm
+PH2O : 0.23059493822804059 atm
+PO2 : 0.18508131473768308 atm
+Power-Thermal : 240.61977549550318 W
+###########
+I :70.1 A
+
+E : 2.922323234175108 V
+FC Efficiency : 0.3477181869207028
+FC Power : 190.12535024450187 W
+FC Voltage : 2.712201857981482 V
+PH2 : 0.18733547520273008 atm
+PH2O : 0.23057764463271202 atm
+PO2 : 0.18507338189948477 atm
+Power-Thermal : 240.9896497554981 W
+###########
+I :70.2 A
+
+E : 2.9223216504688017 V
+FC Efficiency : 0.34767040734980836
+FC Power : 190.3704082484611 W
+FC Voltage : 2.7118291773285055 V
+PH2 : 0.18732142482111566 atm
+PH2O : 0.23056035103738345 atm
+PO2 : 0.18506544906128644 atm
+Power-Thermal : 241.35959175153894 W
+###########
+I :70.3 A
+
+E : 2.9223200666946085 V
+FC Efficiency : 0.34762264019779865
+FC Power : 190.61539852606091 W
+FC Voltage : 2.7114565935428296 V
+PH2 : 0.18730737443950127 atm
+PH2O : 0.23054305744205492 atm
+PO2 : 0.18505751622308814 atm
+Power-Thermal : 241.72960147393908 W
+###########
+I :70.4 A
+
+E : 2.922318482852522 V
+FC Efficiency : 0.3475748854293422
+FC Power : 190.8603210869604 W
+FC Voltage : 2.711084106348869 V
+PH2 : 0.18729332405788687 atm
+PH2O : 0.23052576384672635 atm
+PO2 : 0.18504958338488983 atm
+Power-Thermal : 242.09967891303967 W
+###########
+I :70.5 A
+
+E : 2.9223168989425377 V
+FC Efficiency : 0.34752714300925797
+FC Power : 191.10517594079099 W
+FC Voltage : 2.7107117154722125 V
+PH2 : 0.1872792736762725 atm
+PH2O : 0.2305084702513978 atm
+PO2 : 0.18504165054669153 atm
+Power-Thermal : 242.46982405920906 W
+###########
+I :70.6 A
+
+E : 2.9223153149646475 V
+FC Efficiency : 0.34747941290251433
+FC Power : 191.34996309715658 W
+FC Voltage : 2.710339420639612 V
+PH2 : 0.1872652232946581 atm
+PH2O : 0.23049117665606927 atm
+PO2 : 0.18503371770849322 atm
+Power-Thermal : 242.8400369028434 W
+###########
+I :70.7 A
+
+E : 2.922313730918848 V
+FC Efficiency : 0.34743169507422883
+FC Power : 191.59468256563426 W
+FC Voltage : 2.709967221578985 V
+PH2 : 0.18725117291304372 atm
+PH2O : 0.23047388306074074 atm
+PO2 : 0.18502578487029492 atm
+Power-Thermal : 243.21031743436578 W
+###########
+I :70.8 A
+
+E : 2.9223121468051314 V
+FC Efficiency : 0.34738398948966653
+FC Power : 191.83933435577345 W
+FC Voltage : 2.709595118019399 V
+PH2 : 0.18723712253142935 atm
+PH2O : 0.2304565894654122 atm
+PO2 : 0.1850178520320966 atm
+Power-Thermal : 243.58066564422657 W
+###########
+I :70.9 A
+
+E : 2.9223105626234935 V
+FC Efficiency : 0.3473362961142398
+FC Power : 192.0839184770969 W
+FC Voltage : 2.70922310969107 V
+PH2 : 0.18722307214981496 atm
+PH2O : 0.23043929587008366 atm
+PO2 : 0.1850099191938983 atm
+Power-Thermal : 243.95108152290317 W
+###########
+I :71.0 A
+
+E : 2.922308978373928 V
+FC Efficiency : 0.34728861491350704
+FC Power : 192.32843493910022 W
+FC Voltage : 2.708851196325355 V
+PH2 : 0.18720902176820056 atm
+PH2O : 0.23042200227475512 atm
+PO2 : 0.1850019863557 atm
+Power-Thermal : 244.32156506089981 W
+###########
+I :71.1 A
+
+E : 2.9223073940564284 V
+FC Efficiency : 0.3472409458531723
+FC Power : 192.57288375125228 W
+FC Voltage : 2.708479377654744 V
+PH2 : 0.18719497138658617 atm
+PH2O : 0.23040470867942658 atm
+PO2 : 0.1849940535175017 atm
+Power-Thermal : 244.6921162487477 W
+###########
+I :71.2 A
+
+E : 2.9223058096709886 V
+FC Efficiency : 0.34719328889908396
+FC Power : 192.8172649229953 W
+FC Voltage : 2.708107653412855 V
+PH2 : 0.1871809210049718 atm
+PH2O : 0.23038741508409805 atm
+PO2 : 0.1849861206793034 atm
+Power-Thermal : 245.06273507700476 W
+###########
+I :71.3 A
+
+E : 2.9223042252176046 V
+FC Efficiency : 0.34714564401723463
+FC Power : 193.0615784637449 W
+FC Voltage : 2.7077360233344305 V
+PH2 : 0.1871668706233574 atm
+PH2O : 0.2303701214887695 atm
+PO2 : 0.1849781878411051 atm
+Power-Thermal : 245.4334215362551 W
+###########
+I :71.4 A
+
+E : 2.9223026406962687 V
+FC Efficiency : 0.3470980111737594
+FC Power : 193.3058243828901 W
+FC Voltage : 2.7073644871553233 V
+PH2 : 0.187152820241743 atm
+PH2O : 0.23035282789344094 atm
+PO2 : 0.18497025500290679 atm
+Power-Thermal : 245.80417561710996 W
+###########
+I :71.5 A
+
+E : 2.922301056106976 V
+FC Efficiency : 0.34705039033493584
+FC Power : 193.55000268979373 W
+FC Voltage : 2.7069930446124997 V
+PH2 : 0.18713876986012865 atm
+PH2O : 0.2303355342981124 atm
+PO2 : 0.1849623221647085 atm
+Power-Thermal : 246.1749973102063 W
+###########
+I :71.6 A
+
+E : 2.922299471449721 V
+FC Efficiency : 0.34700278146718294
+FC Power : 193.79411339379234 W
+FC Voltage : 2.7066216954440274 V
+PH2 : 0.18712471947851425 atm
+PH2O : 0.23031824070278387 atm
+PO2 : 0.1849543893265102 atm
+Power-Thermal : 246.54588660620763 W
+###########
+I :71.7 A
+
+E : 2.9222978867244964 V
+FC Efficiency : 0.3469551845370601
+FC Power : 194.03815650419625 W
+FC Voltage : 2.706250439389069 V
+PH2 : 0.18711066909689986 atm
+PH2O : 0.23030094710745533 atm
+PO2 : 0.1849464564883119 atm
+Power-Thermal : 246.9168434958038 W
+###########
+I :71.8 A
+
+E : 2.922296301931298 V
+FC Efficiency : 0.3469075995112668
+FC Power : 194.28213203028983 W
+FC Voltage : 2.705879276187881 V
+PH2 : 0.18709661871528546 atm
+PH2O : 0.2302836535121268 atm
+PO2 : 0.1849385236501136 atm
+Power-Thermal : 247.28786796971016 W
+###########
+I :71.9 A
+
+E : 2.9222947170701192 V
+FC Efficiency : 0.34686002635664115
+FC Power : 194.52603998133154 W
+FC Voltage : 2.7055082055818014 V
+PH2 : 0.18708256833367104 atm
+PH2O : 0.2302663599167982 atm
+PO2 : 0.18493059081191526 atm
+Power-Thermal : 247.65896001866852 W
+###########
+I :72.0 A
+
+E : 2.922293132140954 V
+FC Efficiency : 0.34681246504016
+FC Power : 194.76988036655385 W
+FC Voltage : 2.705137227313248 V
+PH2 : 0.18706851795205667 atm
+PH2O : 0.23024906632146966 atm
+PO2 : 0.18492265797371696 atm
+Power-Thermal : 248.0301196334462 W
+###########
+I :72.1 A
+
+E : 2.9222915471437974 V
+FC Efficiency : 0.3467649155289374
+FC Power : 195.0136531951638 W
+FC Voltage : 2.704766341125712 V
+PH2 : 0.18705446757044228 atm
+PH2O : 0.23023177272614112 atm
+PO2 : 0.18491472513551865 atm
+Power-Thermal : 248.40134680483618 W
+###########
+I :72.2 A
+
+E : 2.9222899620786427 V
+FC Efficiency : 0.3467173777902242
+FC Power : 195.25735847634266 W
+FC Voltage : 2.704395546763749 V
+PH2 : 0.18704041718882788 atm
+PH2O : 0.23021447913081258 atm
+PO2 : 0.18490679229732035 atm
+Power-Thermal : 248.77264152365737 W
+###########
+I :72.3 A
+
+E : 2.9222883769454837 V
+FC Efficiency : 0.34666985179140714
+FC Power : 195.50099621924616 W
+FC Voltage : 2.704024843972976 V
+PH2 : 0.18702636680721352 atm
+PH2O : 0.23019718553548404 atm
+PO2 : 0.18489885945912204 atm
+Power-Thermal : 249.14400378075385 W
+###########
+I :72.4 A
+
+E : 2.9222867917443156 V
+FC Efficiency : 0.34662233750000854
+FC Power : 195.74456643300482 W
+FC Voltage : 2.7036542325000665 V
+PH2 : 0.18701231642559912 atm
+PH2O : 0.2301798919401555 atm
+PO2 : 0.18489092662092374 atm
+Power-Thermal : 249.51543356699523 W
+###########
+I :72.5 A
+
+E : 2.9222852064751326 V
+FC Efficiency : 0.34657483488368473
+FC Power : 195.98806912672373 W
+FC Voltage : 2.703283712092741 V
+PH2 : 0.18699826604398473 atm
+PH2O : 0.23016259834482697 atm
+PO2 : 0.18488299378272544 atm
+Power-Thermal : 249.8869308732763 W
+###########
+I :72.6 A
+
+E : 2.9222836211379284 V
+FC Efficiency : 0.3465273439102262
+FC Power : 196.2315043094829 W
+FC Voltage : 2.7029132824997646 V
+PH2 : 0.18698421566237036 atm
+PH2O : 0.23014530474949843 atm
+PO2 : 0.18487506094452713 atm
+Power-Thermal : 250.2584956905171 W
+###########
+I :72.7 A
+
+E : 2.9222820357326973 V
+FC Efficiency : 0.3464798645475561
+FC Power : 196.47487199033716 W
+FC Voltage : 2.7025429434709376 V
+PH2 : 0.18697016528075597 atm
+PH2O : 0.23012801115416986 atm
+PO2 : 0.18486712810632883 atm
+Power-Thermal : 250.63012800966288 W
+###########
+I :72.8 A
+
+E : 2.922280450259433 V
+FC Efficiency : 0.3464323967637299
+FC Power : 196.71817217831642 W
+FC Voltage : 2.7021726947570937 V
+PH2 : 0.18695611489914157 atm
+PH2O : 0.23011071755884133 atm
+PO2 : 0.18485919526813052 atm
+Power-Thermal : 251.0018278216836 W
+###########
+I :72.9 A
+
+E : 2.9222788647181295 V
+FC Efficiency : 0.3463849405269349
+FC Power : 196.96140488242577 W
+FC Voltage : 2.7018025361100926 V
+PH2 : 0.18694206451752718 atm
+PH2O : 0.2300934239635128 atm
+PO2 : 0.18485126242993222 atm
+Power-Thermal : 251.3735951175743 W
+###########
+I :73.0 A
+
+E : 2.9222772791087825 V
+FC Efficiency : 0.3463374958054891
+FC Power : 197.2045701116455 W
+FC Voltage : 2.701432467282815 V
+PH2 : 0.1869280141359128 atm
+PH2O : 0.23007613036818425 atm
+PO2 : 0.1848433295917339 atm
+Power-Thermal : 251.74542988835452 W
+###########
+I :73.1 A
+
+E : 2.9222756934313847 V
+FC Efficiency : 0.3462900625678403
+FC Power : 197.44766787493117 W
+FC Voltage : 2.7010624880291543 V
+PH2 : 0.18691396375429842 atm
+PH2O : 0.2300588367728557 atm
+PO2 : 0.18483539675353564 atm
+Power-Thermal : 252.11733212506883 W
+###########
+I :73.2 A
+
+E : 2.922274107685931 V
+FC Efficiency : 0.34624264078256617
+FC Power : 197.690698181214 W
+FC Voltage : 2.700692598104016 V
+PH2 : 0.18689991337268402 atm
+PH2O : 0.23004154317752717 atm
+PO2 : 0.18482746391533733 atm
+Power-Thermal : 252.48930181878606 W
+###########
+I :73.3 A
+
+E : 2.922272521872415 V
+FC Efficiency : 0.34619523041837263
+FC Power : 197.93366103940036 W
+FC Voltage : 2.7003227972633064 V
+PH2 : 0.18688586299106966 atm
+PH2O : 0.23002424958219864 atm
+PO2 : 0.18481953107713903 atm
+Power-Thermal : 252.86133896059965 W
+###########
+I :73.4 A
+
+E : 2.922270935990831 V
+FC Efficiency : 0.34614783144409383
+FC Power : 198.17655645837263 W
+FC Voltage : 2.699953085263932 V
+PH2 : 0.18687181260945526 atm
+PH2O : 0.2300069559868701 atm
+PO2 : 0.18481159823894072 atm
+Power-Thermal : 253.23344354162742 W
+###########
+I :73.5 A
+
+E : 2.922269350041174 V
+FC Efficiency : 0.34610044382869143
+FC Power : 198.41938444698883 W
+FC Voltage : 2.6995834618637935 V
+PH2 : 0.18685776222784087 atm
+PH2O : 0.22998966239154156 atm
+PO2 : 0.18480366540074242 atm
+Power-Thermal : 253.6056155530112 W
+###########
+I :73.6 A
+
+E : 2.9222677640234367 V
+FC Efficiency : 0.34605306754125315
+FC Power : 198.6621450140826 W
+FC Voltage : 2.6992139268217747 V
+PH2 : 0.18684371184622647 atm
+PH2O : 0.229972368796213 atm
+PO2 : 0.1847957325625441 atm
+Power-Thermal : 253.9778549859174 W
+###########
+I :73.7 A
+
+E : 2.922266177937614 V
+FC Efficiency : 0.34600570255099306
+FC Power : 198.9048381684639 W
+FC Voltage : 2.6988444798977462 V
+PH2 : 0.18682966146461205 atm
+PH2O : 0.22995507520088443 atm
+PO2 : 0.18478779972434578 atm
+Power-Thermal : 254.35016183153613 W
+###########
+I :73.8 A
+
+E : 2.922264591783701 V
+FC Efficiency : 0.34595834882725035
+FC Power : 199.14746391891842 W
+FC Voltage : 2.698475120852553 V
+PH2 : 0.18681561108299768 atm
+PH2O : 0.2299377816055559 atm
+PO2 : 0.18477986688614748 atm
+Power-Thermal : 254.7225360810816 W
+###########
+I :73.9 A
+
+E : 2.92226300556169 V
+FC Efficiency : 0.3459110063394885
+FC Power : 199.390022274208 W
+FC Voltage : 2.6981058494480106 V
+PH2 : 0.1868015607013833 atm
+PH2O : 0.22992048801022735 atm
+PO2 : 0.18477193404794917 atm
+Power-Thermal : 255.09497772579206 W
+###########
+I :74.0 A
+
+E : 2.9222614192715763 V
+FC Efficiency : 0.3458636750572954
+FC Power : 199.63251324307092 W
+FC Voltage : 2.697736665446904 V
+PH2 : 0.1867875103197689 atm
+PH2O : 0.2299031944148988 atm
+PO2 : 0.18476400120975087 atm
+Power-Thermal : 255.4674867569291 W
+###########
+I :74.1 A
+
+E : 2.922259832913354 V
+FC Efficiency : 0.3458163549503815
+FC Power : 199.8749368342215 W
+FC Voltage : 2.697367568612976 V
+PH2 : 0.18677345993815453 atm
+PH2O : 0.22988590081957025 atm
+PO2 : 0.18475606837155256 atm
+Power-Thermal : 255.84006316577847 W
+###########
+I :74.2 A
+
+E : 2.922258246487016 V
+FC Efficiency : 0.34576904598858027
+FC Power : 200.11729305635077 W
+FC Voltage : 2.6969985587109266 V
+PH2 : 0.18675940955654013 atm
+PH2O : 0.2298686072242417 atm
+PO2 : 0.18474813553335426 atm
+Power-Thermal : 256.21270694364927 W
+###########
+I :74.3 A
+
+E : 2.922256659992559 V
+FC Efficiency : 0.34572174814184714
+FC Power : 200.3595819181261 W
+FC Voltage : 2.696629635506408 V
+PH2 : 0.18674535917492574 atm
+PH2O : 0.22985131362891317 atm
+PO2 : 0.18474020269515595 atm
+Power-Thermal : 256.5854180818739 W
+###########
+I :74.4 A
+
+E : 2.922255073429975 V
+FC Efficiency : 0.3456744613802582
+FC Power : 200.6018034281915 W
+FC Voltage : 2.6962607987660143 V
+PH2 : 0.18673130879331137 atm
+PH2O : 0.22983402003358464 atm
+PO2 : 0.18473226985695765 atm
+Power-Thermal : 256.95819657180857 W
+###########
+I :74.5 A
+
+E : 2.9222534867992582 V
+FC Efficiency : 0.34562718567401063
+FC Power : 200.8439575951676 W
+FC Voltage : 2.6958920482572832 V
+PH2 : 0.18671725841169698 atm
+PH2O : 0.2298167264382561 atm
+PO2 : 0.18472433701875934 atm
+Power-Thermal : 257.33104240483243 W
+###########
+I :74.6 A
+
+E : 2.922251900100404 V
+FC Efficiency : 0.34557992099342144
+FC Power : 201.08604442765204 W
+FC Voltage : 2.695523383748687 V
+PH2 : 0.18670320803008258 atm
+PH2O : 0.22979943284292756 atm
+PO2 : 0.18471640418056104 atm
+Power-Thermal : 257.7039555723479 W
+###########
+I :74.7 A
+
+E : 2.922250313333406 V
+FC Efficiency : 0.3455326673089266
+FC Power : 201.32806393421922 W
+FC Voltage : 2.695154805009628 V
+PH2 : 0.1866891576484682 atm
+PH2O : 0.22978213924759902 atm
+PO2 : 0.18470847134236273 atm
+Power-Thermal : 258.07693606578084 W
+###########
+I :74.8 A
+
+E : 2.922248726498258 V
+FC Efficiency : 0.3454854245910813
+FC Power : 201.57001612342046 W
+FC Voltage : 2.694786311810434 V
+PH2 : 0.18667510726685382 atm
+PH2O : 0.22976484565227048 atm
+PO2 : 0.18470053850416446 atm
+Power-Thermal : 258.44998387657955 W
+###########
+I :74.9 A
+
+E : 2.9222471395949547 V
+FC Efficiency : 0.34543819281055815
+FC Power : 201.81190100378433 W
+FC Voltage : 2.694417903922354 V
+PH2 : 0.18666105688523943 atm
+PH2O : 0.22974755205694192 atm
+PO2 : 0.18469260566596615 atm
+Power-Thermal : 258.8230989962157 W
+###########
+I :75.0 A
+
+E : 2.92224555262349 V
+FC Efficiency : 0.34539097193814755
+FC Power : 202.05371858381633 W
+FC Voltage : 2.694049581117551 V
+PH2 : 0.18664700650362503 atm
+PH2O : 0.22973025846161338 atm
+PO2 : 0.18468467282776785 atm
+Power-Thermal : 259.1962814161837 W
+###########
+I :75.1 A
+
+E : 2.9222439655838572 V
+FC Efficiency : 0.3453437619447565
+FC Power : 202.2954688719995 W
+FC Voltage : 2.6936813431691013 V
+PH2 : 0.18663295612201067 atm
+PH2O : 0.22971296486628484 atm
+PO2 : 0.18467673998956954 atm
+Power-Thermal : 259.5695311280005 W
+###########
+I :75.2 A
+
+E : 2.922242378476052 V
+FC Efficiency : 0.34529656280140825
+FC Power : 202.53715187679404 W
+FC Voltage : 2.6933131898509846 V
+PH2 : 0.18661890574039627 atm
+PH2O : 0.2296956712709563 atm
+PO2 : 0.18466880715137124 atm
+Power-Thermal : 259.942848123206 W
+###########
+I :75.3 A
+
+E : 2.9222407913000676 V
+FC Efficiency : 0.3452493744792414
+FC Power : 202.77876760663767 W
+FC Voltage : 2.6929451209380835 V
+PH2 : 0.18660485535878188 atm
+PH2O : 0.22967837767562777 atm
+PO2 : 0.18466087431317293 atm
+Power-Thermal : 260.3162323933623 W
+###########
+I :75.4 A
+
+E : 2.922239204055898 V
+FC Efficiency : 0.3452021969495096
+FC Power : 203.0203160699456 W
+FC Voltage : 2.692577136206175 V
+PH2 : 0.18659080497716746 atm
+PH2O : 0.22966108408029917 atm
+PO2 : 0.1846529414749746 atm
+Power-Thermal : 260.68968393005446 W
+###########
+I :75.5 A
+
+E : 2.922237616743538 V
+FC Efficiency : 0.3451550301835806
+FC Power : 203.2617972751106 W
+FC Voltage : 2.6922092354319287 V
+PH2 : 0.18657675459555306 atm
+PH2O : 0.22964379048497063 atm
+PO2 : 0.1846450086367763 atm
+Power-Thermal : 261.06320272488944 W
+###########
+I :75.6 A
+
+E : 2.922236029362981 V
+FC Efficiency : 0.3451078741529361
+FC Power : 203.50321123050335 W
+FC Voltage : 2.691841418392902 V
+PH2 : 0.1865627042139387 atm
+PH2O : 0.2296264968896421 atm
+PO2 : 0.184637075798578 atm
+Power-Thermal : 261.4367887694966 W
+###########
+I :75.7 A
+
+E : 2.922234441914222 V
+FC Efficiency : 0.3450607288291707
+FC Power : 203.74455794447218 W
+FC Voltage : 2.691473684867532 V
+PH2 : 0.1865486538323243 atm
+PH2O : 0.22960920329431356 atm
+PO2 : 0.1846291429603797 atm
+Power-Thermal : 261.81044205552786 W
+###########
+I :75.8 A
+
+E : 2.922232854397255 V
+FC Efficiency : 0.3450135941839917
+FC Power : 203.98583742534325 W
+FC Voltage : 2.691106034635135 V
+PH2 : 0.1865346034507099 atm
+PH2O : 0.22959190969898502 atm
+PO2 : 0.18462121012218138 atm
+Power-Thermal : 262.1841625746568 W
+###########
+I :75.9 A
+
+E : 2.922231266812073 V
+FC Efficiency : 0.344966470189218
+FC Power : 204.22704968142085 W
+FC Voltage : 2.6907384674759003 V
+PH2 : 0.18652055306909554 atm
+PH2O : 0.22957461610365648 atm
+PO2 : 0.18461327728398308 atm
+Power-Thermal : 262.55795031857923 W
+###########
+I :76.0 A
+
+E : 2.9222296791586713 V
+FC Efficiency : 0.34491935681678004
+FC Power : 204.4681947209872 W
+FC Voltage : 2.6903709831708844 V
+PH2 : 0.18650650268748115 atm
+PH2O : 0.22955732250832794 atm
+PO2 : 0.18460534444578477 atm
+Power-Thermal : 262.9318052790128 W
+###########
+I :76.1 A
+
+E : 2.9222280914370433 V
+FC Efficiency : 0.34487225403871885
+FC Power : 204.70927255230274 W
+FC Voltage : 2.6900035815020074 V
+PH2 : 0.18649245230586675 atm
+PH2O : 0.2295400289129994 atm
+PO2 : 0.18459741160758647 atm
+Power-Thermal : 263.3057274476972 W
+###########
+I :76.2 A
+
+E : 2.9222265036471837 V
+FC Efficiency : 0.34482516182718576
+FC Power : 204.95028318360616 W
+FC Voltage : 2.689636262252049 V
+PH2 : 0.18647840192425238 atm
+PH2O : 0.22952273531767084 atm
+PO2 : 0.18458947876938817 atm
+Power-Thermal : 263.6797168163939 W
+###########
+I :76.3 A
+
+E : 2.922224915789087 V
+FC Efficiency : 0.34477808015444167
+FC Power : 205.19122662311443 W
+FC Voltage : 2.6892690252046454 V
+PH2 : 0.186464351542638 atm
+PH2O : 0.2295054417223423 atm
+PO2 : 0.18458154593118986 atm
+Power-Thermal : 264.0537733768856 W
+###########
+I :76.4 A
+
+E : 2.9222233278627465 V
+FC Efficiency : 0.34473100899285625
+FC Power : 205.43210287902292 W
+FC Voltage : 2.688901870144279 V
+PH2 : 0.1864503011610236 atm
+PH2O : 0.22948814812701376 atm
+PO2 : 0.18457361309299158 atm
+Power-Thermal : 264.42789712097715 W
+###########
+I :76.5 A
+
+E : 2.9222217398681565 V
+FC Efficiency : 0.3446839483149076
+FC Power : 205.67291195950537 W
+FC Voltage : 2.6885347968562794 V
+PH2 : 0.1864362507794092 atm
+PH2O : 0.22947085453168523 atm
+PO2 : 0.18456568025479328 atm
+Power-Thermal : 264.80208804049465 W
+###########
+I :76.6 A
+
+E : 2.9222201518053117 V
+FC Efficiency : 0.3446368980931821
+FC Power : 205.9136538727144 W
+FC Voltage : 2.6881678051268203 V
+PH2 : 0.18642220039779483 atm
+PH2O : 0.2294535609363567 atm
+PO2 : 0.18455774741659497 atm
+Power-Thermal : 265.17634612728557 W
+###########
+I :76.7 A
+
+E : 2.922218563674205 V
+FC Efficiency : 0.3445898583003728
+FC Power : 206.15432862678105 W
+FC Voltage : 2.687800894742908 V
+PH2 : 0.18640815001618044 atm
+PH2O : 0.22943626734102815 atm
+PO2 : 0.18454981457839667 atm
+Power-Thermal : 265.550671373219 W
+###########
+I :76.8 A
+
+E : 2.9222169754748317 V
+FC Efficiency : 0.34454282890928
+FC Power : 206.3949362298151 W
+FC Voltage : 2.687434065492384 V
+PH2 : 0.18639409963456605 atm
+PH2O : 0.2294189737456996 atm
+PO2 : 0.18454188174019837 atm
+Power-Thermal : 265.9250637701849 W
+###########
+I :76.9 A
+
+E : 2.9222153872071854 V
+FC Efficiency : 0.34449580989280987
+FC Power : 206.63547668990526 W
+FC Voltage : 2.6870673171639172 V
+PH2 : 0.18638004925295168 atm
+PH2O : 0.22940168015037107 atm
+PO2 : 0.18453394890200006 atm
+Power-Thermal : 266.2995233100948 W
+###########
+I :77.0 A
+
+E : 2.922213798871261 V
+FC Efficiency : 0.34444880122397453
+FC Power : 206.87595001511912 W
+FC Voltage : 2.6867006495470016 V
+PH2 : 0.18636599887133729 atm
+PH2O : 0.22938438655504254 atm
+PO2 : 0.18452601606380176 atm
+Power-Thermal : 266.6740499848809 W
+###########
+I :77.1 A
+
+E : 2.922212210467051 V
+FC Efficiency : 0.3444018028758906
+FC Power : 207.1163562135031 W
+FC Voltage : 2.686334062431947 V
+PH2 : 0.18635194848972286 atm
+PH2O : 0.22936709295971394 atm
+PO2 : 0.18451808322560342 atm
+Power-Thermal : 267.0486437864969 W
+###########
+I :77.2 A
+
+E : 2.9222106219945516 V
+FC Efficiency : 0.3443548148217801
+FC Power : 207.35669529308313 W
+FC Voltage : 2.685967555609885 V
+PH2 : 0.18633789810810847 atm
+PH2O : 0.2293497993643854 atm
+PO2 : 0.18451015038740512 atm
+Power-Thermal : 267.4233047069169 W
+###########
+I :77.3 A
+
+E : 2.9222090334537554 V
+FC Efficiency : 0.34430783703496803
+FC Power : 207.59696726186363 W
+FC Voltage : 2.685601128872751 V
+PH2 : 0.18632384772649407 atm
+PH2O : 0.22933250576905687 atm
+PO2 : 0.18450221754920682 atm
+Power-Thermal : 267.7980327381364 W
+###########
+I :77.4 A
+
+E : 2.9222074448446564 V
+FC Efficiency : 0.34426086948888357
+FC Power : 207.8371721278288 W
+FC Voltage : 2.685234782013292 V
+PH2 : 0.1863097973448797 atm
+PH2O : 0.22931521217372833 atm
+PO2 : 0.1844942847110085 atm
+Power-Thermal : 268.17282787217124 W
+###########
+I :77.5 A
+
+E : 2.9222058561672504 V
+FC Efficiency : 0.3442139121570587
+FC Power : 208.077309898942 W
+FC Voltage : 2.684868514825058 V
+PH2 : 0.1862957469632653 atm
+PH2O : 0.22929791857839976 atm
+PO2 : 0.1844863518728102 atm
+Power-Thermal : 268.54769010105804 W
+###########
+I :77.6 A
+
+E : 2.92220426742153 V
+FC Efficiency : 0.34416696501312743
+FC Power : 208.31738058314576 W
+FC Voltage : 2.6845023271023942 V
+PH2 : 0.18628169658165092 atm
+PH2O : 0.22928062498307122 atm
+PO2 : 0.1844784190346119 atm
+Power-Thermal : 268.9226194168542 W
+###########
+I :77.7 A
+
+E : 2.9222026786074897 V
+FC Efficiency : 0.3441200280308261
+FC Power : 208.55738418836248 W
+FC Voltage : 2.6841362186404436 V
+PH2 : 0.18626764620003655 atm
+PH2O : 0.22926333138774269 atm
+PO2 : 0.1844704861964136 atm
+Power-Thermal : 269.29761581163757 W
+###########
+I :77.8 A
+
+E : 2.9222010897251236 V
+FC Efficiency : 0.3440731011839921
+FC Power : 208.7973207224938 W
+FC Voltage : 2.6837701892351387 V
+PH2 : 0.18625359581842216 atm
+PH2O : 0.22924603779241415 atm
+PO2 : 0.1844625533582153 atm
+Power-Thermal : 269.67267927750623 W
+###########
+I :77.9 A
+
+E : 2.9221995007744264 V
+FC Efficiency : 0.3440261844465637
+FC Power : 209.03719019342108 W
+FC Voltage : 2.683404238683197 V
+PH2 : 0.18623954543680776 atm
+PH2O : 0.2292287441970856 atm
+PO2 : 0.184454620520017 atm
+Power-Thermal : 270.047809806579 W
+###########
+I :78.0 A
+
+E : 2.922197911755391 V
+FC Efficiency : 0.3439792777925795
+FC Power : 209.27699260900536 W
+FC Voltage : 2.68303836678212 V
+PH2 : 0.1862254950551934 atm
+PH2O : 0.22921145060175707 atm
+PO2 : 0.1844466876818187 atm
+Power-Thermal : 270.42300739099466 W
+###########
+I :78.1 A
+
+E : 2.9221963226680128 V
+FC Efficiency : 0.34393238119617786
+FC Power : 209.51672797708764 W
+FC Voltage : 2.6826725733301875 V
+PH2 : 0.186211444673579 atm
+PH2O : 0.22919415700642853 atm
+PO2 : 0.1844387548436204 atm
+Power-Thermal : 270.7982720229124 W
+###########
+I :78.2 A
+
+E : 2.922194733512285 V
+FC Efficiency : 0.34388549463159634
+FC Power : 209.75639630548852 W
+FC Voltage : 2.6823068581264518 V
+PH2 : 0.1861973942919646 atm
+PH2O : 0.2291768634111 atm
+PO2 : 0.1844308220054221 atm
+Power-Thermal : 271.1736036945115 W
+###########
+I :78.3 A
+
+E : 2.9221931442882028 V
+FC Efficiency : 0.3438386180731716
+FC Power : 209.99599760200883 W
+FC Voltage : 2.6819412209707387 V
+PH2 : 0.1861833439103502 atm
+PH2O : 0.22915956981577146 atm
+PO2 : 0.1844228891672238 atm
+Power-Thermal : 271.54900239799116 W
+###########
+I :78.4 A
+
+E : 2.922191554995759 V
+FC Efficiency : 0.34379175149533797
+FC Power : 210.2355318744291 W
+FC Voltage : 2.6815756616636364 V
+PH2 : 0.18616929352873585 atm
+PH2O : 0.22914227622044292 atm
+PO2 : 0.1844149563290255 atm
+Power-Thermal : 271.92446812557097 W
+###########
+I :78.5 A
+
+E : 2.9221899656349484 V
+FC Efficiency : 0.34374489487262805
+FC Power : 210.47499913051018 W
+FC Voltage : 2.681210180006499 V
+PH2 : 0.18615524314712145 atm
+PH2O : 0.22912498262511435 atm
+PO2 : 0.1844070234908272 atm
+Power-Thermal : 272.30000086948985 W
+###########
+I :78.6 A
+
+E : 2.9221883762057654 V
+FC Efficiency : 0.34369804817967164
+FC Power : 210.7143993779931 W
+FC Voltage : 2.680844775801439 V
+PH2 : 0.18614119276550706 atm
+PH2O : 0.22910768902978582 atm
+PO2 : 0.18439909065262888 atm
+Power-Thermal : 272.67560062200687 W
+###########
+I :78.7 A
+
+E : 2.9221867867082034 V
+FC Efficiency : 0.3436512113911949
+FC Power : 210.95373262459893 W
+FC Voltage : 2.6804794488513206 V
+PH2 : 0.1861271423838927 atm
+PH2O : 0.22909039543445728 atm
+PO2 : 0.18439115781443058 atm
+Power-Thermal : 273.0512673754011 W
+###########
+I :78.8 A
+
+E : 2.922185197142257 V
+FC Efficiency : 0.34360438448202085
+FC Power : 211.19299887802927 W
+FC Voltage : 2.6801141989597626 V
+PH2 : 0.18611309200227827 atm
+PH2O : 0.22907310183912868 atm
+PO2 : 0.18438322497623225 atm
+Power-Thermal : 273.4270011219707 W
+###########
+I :78.9 A
+
+E : 2.92218360750792 V
+FC Efficiency : 0.3435575674270679
+FC Power : 211.4321981459661 W
+FC Voltage : 2.6797490259311294 V
+PH2 : 0.18609904162066387 atm
+PH2O : 0.22905580824380015 atm
+PO2 : 0.18437529213803394 atm
+Power-Thermal : 273.80280185403393 W
+###########
+I :79.0 A
+
+E : 2.922182017805187 V
+FC Efficiency : 0.3435107602013498
+FC Power : 211.6713304360717 W
+FC Voltage : 2.679383929570528 V
+PH2 : 0.18608499123904948 atm
+PH2O : 0.2290385146484716 atm
+PO2 : 0.18436735929983564 atm
+Power-Thermal : 274.1786695639283 W
+###########
+I :79.1 A
+
+E : 2.9221804280340518 V
+FC Efficiency : 0.3434639627799754
+FC Power : 211.91039575598919 W
+FC Voltage : 2.679018909683808 V
+PH2 : 0.18607094085743509 atm
+PH2O : 0.22902122105314307 atm
+PO2 : 0.18435942646163733 atm
+Power-Thermal : 274.5546042440108 W
+###########
+I :79.2 A
+
+E : 2.9221788381945086 V
+FC Efficiency : 0.34341717513814746
+FC Power : 212.14939411334197 W
+FC Voltage : 2.67865396607755 V
+PH2 : 0.18605689047582072 atm
+PH2O : 0.22900392745781453 atm
+PO2 : 0.18435149362343903 atm
+Power-Thermal : 274.93060588665804 W
+###########
+I :79.3 A
+
+E : 2.922177248286552 V
+FC Efficiency : 0.343370397251163
+FC Power : 212.38832551573435 W
+FC Voltage : 2.6782890985590715 V
+PH2 : 0.18604284009420632 atm
+PH2O : 0.228986633862486 atm
+PO2 : 0.18434356078524072 atm
+Power-Thermal : 275.30667448426567 W
+###########
+I :79.4 A
+
+E : 2.9221756583101746 V
+FC Efficiency : 0.3433236290944123
+FC Power : 212.62718997075143 W
+FC Voltage : 2.677924306936416 V
+PH2 : 0.18602878971259193 atm
+PH2O : 0.22896934026715746 atm
+PO2 : 0.18433562794704242 atm
+Power-Thermal : 275.6828100292486 W
+###########
+I :79.5 A
+
+E : 2.922174068265372 V
+FC Efficiency : 0.3432768706433783
+FC Power : 212.86598748595893 W
+FC Voltage : 2.677559591018351 V
+PH2 : 0.18601473933097756 atm
+PH2O : 0.22895204667182892 atm
+PO2 : 0.18432769510884411 atm
+Power-Thermal : 276.0590125140411 W
+###########
+I :79.6 A
+
+E : 2.922172478152137 V
+FC Efficiency : 0.34323012187363683
+FC Power : 213.10471806890362 W
+FC Voltage : 2.6771949506143673 V
+PH2 : 0.18600068894936317 atm
+PH2O : 0.22893475307650038 atm
+PO2 : 0.1843197622706458 atm
+Power-Thermal : 276.43528193109637 W
+###########
+I :79.7 A
+
+E : 2.9221708879704655 V
+FC Efficiency : 0.3431833827608556
+FC Power : 213.3433817271135 W
+FC Voltage : 2.676830385534674 V
+PH2 : 0.18598663856774877 atm
+PH2O : 0.22891745948117184 atm
+PO2 : 0.18431182943244753 atm
+Power-Thermal : 276.81161827288656 W
+###########
+I :79.8 A
+
+E : 2.922169297720351 V
+FC Efficiency : 0.3431366532807935
+FC Power : 213.58197846809713 W
+FC Voltage : 2.67646589559019 V
+PH2 : 0.1859725881861344 atm
+PH2O : 0.22890016588584328 atm
+PO2 : 0.18430389659424923 atm
+Power-Thermal : 277.18802153190285 W
+###########
+I :79.9 A
+
+E : 2.922167707401786 V
+FC Efficiency : 0.34308993340930094
+FC Power : 213.82050829934457 W
+FC Voltage : 2.6761014805925476 V
+PH2 : 0.18595853780452 atm
+PH2O : 0.22888287229051474 atm
+PO2 : 0.18429596375605092 atm
+Power-Thermal : 277.5644917006555 W
+###########
+I :80.0 A
+
+E : 2.9221661170147666 V
+FC Efficiency : 0.3430432231223187
+FC Power : 214.05897122832693 W
+FC Voltage : 2.6757371403540864 V
+PH2 : 0.18594448742290562 atm
+PH2O : 0.2288655786951862 atm
+PO2 : 0.18428803091785262 atm
+Power-Thermal : 277.94102877167313 W
+###########
+I :80.1 A
+
+E : 2.9221645265592855 V
+FC Efficiency : 0.34299652239587775
+FC Power : 214.2973672624965 W
+FC Voltage : 2.6753728746878465 V
+PH2 : 0.18593043704129122 atm
+PH2O : 0.22884828509985766 atm
+PO2 : 0.18428009807965431 atm
+Power-Thermal : 278.3176327375035 W
+###########
+I :80.2 A
+
+E : 2.922162936035338 V
+FC Efficiency : 0.3429498312060988
+FC Power : 214.5356964092872 W
+FC Voltage : 2.675008683407571 V
+PH2 : 0.18591638665967686 atm
+PH2O : 0.22883099150452912 atm
+PO2 : 0.184272165241456 atm
+Power-Thermal : 278.6943035907128 W
+###########
+I :80.3 A
+
+E : 2.9221613454429174 V
+FC Efficiency : 0.3429031495291919
+FC Power : 214.77395867611406 W
+FC Voltage : 2.674644566327697 V
+PH2 : 0.18590233627806246 atm
+PH2O : 0.2288136979092006 atm
+PO2 : 0.1842642324032577 atm
+Power-Thermal : 279.07104132388594 W
+###########
+I :80.4 A
+
+E : 2.9221597547820184 V
+FC Efficiency : 0.34285647734145586
+FC Power : 215.0121540703738 W
+FC Voltage : 2.6742805232633557 V
+PH2 : 0.18588828589644807 atm
+PH2O : 0.22879640431387205 atm
+PO2 : 0.1842562995650594 atm
+Power-Thermal : 279.4478459296262 W
+###########
+I :80.5 A
+
+E : 2.9221581640526346 V
+FC Efficiency : 0.3428098146192778
+FC Power : 215.25028259944452 W
+FC Voltage : 2.6739165540303667 V
+PH2 : 0.18587423551483365 atm
+PH2O : 0.22877911071854345 atm
+PO2 : 0.18424836672686107 atm
+Power-Thermal : 279.8247174005555 W
+###########
+I :80.6 A
+
+E : 2.92215657325476 V
+FC Efficiency : 0.34276316133913265
+FC Power : 215.4883442706859 W
+FC Voltage : 2.6735526584452347 V
+PH2 : 0.18586018513321928 atm
+PH2O : 0.22876181712321492 atm
+PO2 : 0.18424043388866276 atm
+Power-Thermal : 280.2016557293141 W
+###########
+I :80.7 A
+
+E : 2.922154982388389 V
+FC Efficiency : 0.34271651747758336
+FC Power : 215.72633909143963 W
+FC Voltage : 2.67318883632515 V
+PH2 : 0.18584613475160489 atm
+PH2O : 0.22874452352788638 atm
+PO2 : 0.18423250105046446 atm
+Power-Thermal : 280.57866090856044 W
+###########
+I :80.8 A
+
+E : 2.9221533914535156 V
+FC Efficiency : 0.3426698830112794
+FC Power : 215.96426706902875 W
+FC Voltage : 2.6728250874879795 V
+PH2 : 0.1858320843699905 atm
+PH2O : 0.22872722993255784 atm
+PO2 : 0.18422456821226615 atm
+Power-Thermal : 280.9557329309713 W
+###########
+I :80.9 A
+
+E : 2.9221518004501346 V
+FC Efficiency : 0.34262325791695725
+FC Power : 216.2021282107584 W
+FC Voltage : 2.6724614117522667 V
+PH2 : 0.18581803398837612 atm
+PH2O : 0.2287099363372293 atm
+PO2 : 0.18421663537406785 atm
+Power-Thermal : 281.33287178924166 W
+###########
+I :81.0 A
+
+E : 2.9221502093782386 V
+FC Efficiency : 0.34257664217143935
+FC Power : 216.4399225239154 W
+FC Voltage : 2.6720978089372274 V
+PH2 : 0.18580398360676173 atm
+PH2O : 0.22869264274190076 atm
+PO2 : 0.18420870253586955 atm
+Power-Thermal : 281.7100774760846 W
+###########
+I :81.1 A
+
+E : 2.922148618237823 V
+FC Efficiency : 0.34253003575163415
+FC Power : 216.67765001576873 W
+FC Voltage : 2.6717342788627465 V
+PH2 : 0.18578993322514734 atm
+PH2O : 0.2286753491465722 atm
+PO2 : 0.18420076969767124 atm
+Power-Thermal : 282.08734998423125 W
+###########
+I :81.2 A
+
+E : 2.922147027028882 V
+FC Efficiency : 0.34248343863453523
+FC Power : 216.91531069356927 W
+FC Voltage : 2.671370821349375 V
+PH2 : 0.18577588284353294 atm
+PH2O : 0.22865805555124366 atm
+PO2 : 0.18419283685947294 atm
+Power-Thermal : 282.4646893064308 W
+###########
+I :81.3 A
+
+E : 2.9221454357514083 V
+FC Efficiency : 0.3424368507972213
+FC Power : 217.1529045645499 W
+FC Voltage : 2.6710074362183263 V
+PH2 : 0.18576183246191857 atm
+PH2O : 0.22864076195591512 atm
+PO2 : 0.18418490402127466 atm
+Power-Thermal : 282.8420954354501 W
+###########
+I :81.4 A
+
+E : 2.9221438444053973 V
+FC Efficiency : 0.3423902722168554
+FC Power : 217.39043163592586 W
+FC Voltage : 2.6706441232914724 V
+PH2 : 0.18574778208030418 atm
+PH2O : 0.22862346836058658 atm
+PO2 : 0.18417697118307635 atm
+Power-Thermal : 283.2195683640742 W
+###########
+I :81.5 A
+
+E : 2.922142252990842 V
+FC Efficiency : 0.3423437028706849
+FC Power : 217.62789191489443 W
+FC Voltage : 2.6702808823913426 V
+PH2 : 0.18573373169868979 atm
+PH2O : 0.22860617476525805 atm
+PO2 : 0.18416903834487805 atm
+Power-Thermal : 283.5971080851056 W
+###########
+I :81.6 A
+
+E : 2.9221406615077377 V
+FC Efficiency : 0.3422971427360409
+FC Power : 217.8652854086353 W
+FC Voltage : 2.669917713341119 V
+PH2 : 0.18571968131707542 atm
+PH2O : 0.2285888811699295 atm
+PO2 : 0.18416110550667975 atm
+Power-Thermal : 283.9747145913647 W
+###########
+I :81.7 A
+
+E : 2.922139069956078 V
+FC Efficiency : 0.3422505917903374
+FC Power : 218.10261212431044 W
+FC Voltage : 2.669554615964632 V
+PH2 : 0.18570563093546102 atm
+PH2O : 0.22857158757460097 atm
+PO2 : 0.18415317266848144 atm
+Power-Thermal : 284.3523878756896 W
+###########
+I :81.8 A
+
+E : 2.9221374783358565 V
+FC Efficiency : 0.34220405001107174
+FC Power : 218.33987206906423 W
+FC Voltage : 2.66919159008636 V
+PH2 : 0.18569158055384663 atm
+PH2O : 0.22855429397927243 atm
+PO2 : 0.18414523983028314 atm
+Power-Thermal : 284.7301279309358 W
+###########
+I :81.9 A
+
+E : 2.922135886647068 V
+FC Efficiency : 0.3421575173758235
+FC Power : 218.5770652500236 W
+FC Voltage : 2.6688286355314235 V
+PH2 : 0.18567753017223224 atm
+PH2O : 0.2285370003839439 atm
+PO2 : 0.18413730699208483 atm
+Power-Thermal : 285.1079347499765 W
+###########
+I :82.0 A
+
+E : 2.9221342948897067 V
+FC Efficiency : 0.3421109938622544
+FC Power : 218.81419167429792 W
+FC Voltage : 2.6684657521255843 V
+PH2 : 0.18566347979061787 atm
+PH2O : 0.22851970678861533 atm
+PO2 : 0.18412937415388653 atm
+Power-Thermal : 285.4858083257021 W
+###########
+I :82.1 A
+
+E : 2.922132703063766 V
+FC Efficiency : 0.3420644794481077
+FC Power : 219.05125134897918 W
+FC Voltage : 2.66810293969524 V
+PH2 : 0.18564942940900347 atm
+PH2O : 0.2285024131932868 atm
+PO2 : 0.18412144131568822 atm
+Power-Thermal : 285.8637486510208 W
+###########
+I :82.2 A
+
+E : 2.92213111116924 V
+FC Efficiency : 0.342017974111208
+FC Power : 219.28824428114214 W
+FC Voltage : 2.6677401980674227 V
+PH2 : 0.18563537902738905 atm
+PH2O : 0.22848511959795823 atm
+PO2 : 0.1841135084774899 atm
+Power-Thermal : 286.2417557188579 W
+###########
+I :82.3 A
+
+E : 2.922129519206123 V
+FC Efficiency : 0.341971477829461
+FC Power : 219.5251704778442 W
+FC Voltage : 2.667377527069796 V
+PH2 : 0.1856213286457747 atm
+PH2O : 0.22846782600262971 atm
+PO2 : 0.1841055756392916 atm
+Power-Thermal : 286.61982952215584 W
+###########
+I :82.4 A
+
+E : 2.92212792717441 V
+FC Efficiency : 0.34192499058085263
+FC Power : 219.76202994612564 W
+FC Voltage : 2.667014926530651 V
+PH2 : 0.1856072782641603 atm
+PH2O : 0.22845053240730112 atm
+PO2 : 0.18409764280109328 atm
+Power-Thermal : 286.99797005387444 W
+###########
+I :82.5 A
+
+E : 2.9221263350740934 V
+FC Efficiency : 0.34187851234344896
+FC Power : 219.99882269300943 W
+FC Voltage : 2.666652396278902 V
+PH2 : 0.1855932278825459 atm
+PH2O : 0.22843323881197258 atm
+PO2 : 0.18408970996289498 atm
+Power-Thermal : 287.3761773069906 W
+###########
+I :82.6 A
+
+E : 2.9221247429051687 V
+FC Efficiency : 0.3418320430953959
+FC Power : 220.23554872550167 W
+FC Voltage : 2.6662899361440884 V
+PH2 : 0.1855791775009315 atm
+PH2O : 0.22841594521664405 atm
+PO2 : 0.18408177712469667 atm
+Power-Thermal : 287.7544512744983 W
+###########
+I :82.7 A
+
+E : 2.9221231506676295 V
+FC Efficiency : 0.3417855828149185
+FC Power : 220.47220805059135 W
+FC Voltage : 2.6659275459563645 V
+PH2 : 0.18556512711931714 atm
+PH2O : 0.2283986516213155 atm
+PO2 : 0.18407384428649837 atm
+Power-Thermal : 288.13279194940867 W
+###########
+I :82.8 A
+
+E : 2.922121558361469 V
+FC Efficiency : 0.34173913148032065
+FC Power : 220.7088006752503 W
+FC Voltage : 2.6655652255465014 V
+PH2 : 0.18555107673770274 atm
+PH2O : 0.22838135802598697 atm
+PO2 : 0.18406591144830006 atm
+Power-Thermal : 288.5111993247497 W
+###########
+I :82.9 A
+
+E : 2.922119965986683 V
+FC Efficiency : 0.34169268906998546
+FC Power : 220.945326606434 W
+FC Voltage : 2.6652029747458865 V
+PH2 : 0.18553702635608835 atm
+PH2O : 0.22836406443065843 atm
+PO2 : 0.18405797861010179 atm
+Power-Thermal : 288.88967339356606 W
+###########
+I :83.0 A
+
+E : 2.922118373543264 V
+FC Efficiency : 0.34164625556237327
+FC Power : 221.18178585108046 W
+FC Voltage : 2.6648407933865115 V
+PH2 : 0.18552297597447395 atm
+PH2O : 0.2283467708353299 atm
+PO2 : 0.18405004577190348 atm
+Power-Thermal : 289.2682141489196 W
+###########
+I :83.1 A
+
+E : 2.9221167810312076 V
+FC Efficiency : 0.34159983093602303
+FC Power : 221.41817841611137 W
+FC Voltage : 2.6644786813009795 V
+PH2 : 0.18550892559285959 atm
+PH2O : 0.22832947724000136 atm
+PO2 : 0.18404211293370518 atm
+Power-Thermal : 289.6468215838886 W
+###########
+I :83.2 A
+
+E : 2.9221151884505066 V
+FC Efficiency : 0.34155341516955057
+FC Power : 221.65450430843154 W
+FC Voltage : 2.6641166383224943 V
+PH2 : 0.1854948752112452 atm
+PH2O : 0.22831218364467282 atm
+PO2 : 0.18403418009550687 atm
+Power-Thermal : 290.0254956915685 W
+###########
+I :83.3 A
+
+E : 2.922113595801155 V
+FC Efficiency : 0.3415070082416489
+FC Power : 221.89076353492896 W
+FC Voltage : 2.6637546642848617 V
+PH2 : 0.1854808248296308 atm
+PH2O : 0.22829489004934425 atm
+PO2 : 0.18402624725730857 atm
+Power-Thermal : 290.40423646507105 W
+###########
+I :83.4 A
+
+E : 2.9221120030831482 V
+FC Efficiency : 0.34146061013108814
+FC Power : 222.12695610247548 W
+FC Voltage : 2.6633927590224875 V
+PH2 : 0.18546677444801643 atm
+PH2O : 0.2282775964540157 atm
+PO2 : 0.18401831441911026 atm
+Power-Thermal : 290.7830438975246 W
+###########
+I :83.5 A
+
+E : 2.9221104102964794 V
+FC Efficiency : 0.3414142208167142
+FC Power : 222.36308201792596 W
+FC Voltage : 2.6630309223703708 V
+PH2 : 0.18545272406640204 atm
+PH2O : 0.22826030285868718 atm
+PO2 : 0.18401038158091196 atm
+Power-Thermal : 291.16191798207404 W
+###########
+I :83.6 A
+
+E : 2.9221088174411425 V
+FC Efficiency : 0.3413678402774491
+FC Power : 222.599141288119 W
+FC Voltage : 2.662669154164103 V
+PH2 : 0.18543867368478764 atm
+PH2O : 0.22824300926335864 atm
+PO2 : 0.18400244874271365 atm
+Power-Thermal : 291.540858711881 W
+###########
+I :83.7 A
+
+E : 2.922107224517132 V
+FC Efficiency : 0.34132146849229056
+FC Power : 222.83513391987682 W
+FC Voltage : 2.6623074542398664 V
+PH2 : 0.18542462330317325 atm
+PH2O : 0.2282257156680301 atm
+PO2 : 0.18399451590451535 atm
+Power-Thermal : 291.9198660801232 W
+###########
+I :83.8 A
+
+E : 2.922105631524442 V
+FC Efficiency : 0.3412751054403114
+FC Power : 223.07105992000515 W
+FC Voltage : 2.6619458224344292 V
+PH2 : 0.18541057292155888 atm
+PH2O : 0.22820842207270156 atm
+PO2 : 0.18398658306631704 atm
+Power-Thermal : 292.29894007999485 W
+###########
+I :83.9 A
+
+E : 2.9221040384630665 V
+FC Efficiency : 0.34122875110065953
+FC Power : 223.30691929529362 W
+FC Voltage : 2.6615842585851444 V
+PH2 : 0.18539652253994446 atm
+PH2O : 0.22819112847737297 atm
+PO2 : 0.1839786502281187 atm
+Power-Thermal : 292.6780807047064 W
+###########
+I :84.0 A
+
+E : 2.922102445332999 V
+FC Efficiency : 0.34118240545255707
+FC Power : 223.5427120525154 W
+FC Voltage : 2.6612227625299454 V
+PH2 : 0.1853824721583301 atm
+PH2O : 0.22817383488204449 atm
+PO2 : 0.18397071738992044 atm
+Power-Thermal : 293.0572879474846 W
+###########
+I :84.1 A
+
+E : 2.9221008521342346 V
+FC Efficiency : 0.3411360684753005
+FC Power : 223.77843819842758 W
+FC Voltage : 2.6608613341073437 V
+PH2 : 0.18536842177671567 atm
+PH2O : 0.2281565412867159 atm
+PO2 : 0.1839627845517221 atm
+Power-Thermal : 293.4365618015724 W
+###########
+I :84.2 A
+
+E : 2.922099258866766 V
+FC Efficiency : 0.3410897401482598
+FC Power : 224.01409773977113 W
+FC Voltage : 2.6604999731564267 V
+PH2 : 0.1853543713951013 atm
+PH2O : 0.22813924769138735 atm
+PO2 : 0.1839548517135238 atm
+Power-Thermal : 293.8159022602289 W
+###########
+I :84.3 A
+
+E : 2.9220976655305892 V
+FC Efficiency : 0.34104342045087915
+FC Power : 224.24969068327107 W
+FC Voltage : 2.6601386795168573 V
+PH2 : 0.1853403210134869 atm
+PH2O : 0.22812195409605882 atm
+PO2 : 0.1839469188753255 atm
+Power-Thermal : 294.1953093167289 W
+###########
+I :84.4 A
+
+E : 2.9220960721256968 V
+FC Efficiency : 0.3409971093626749
+FC Power : 224.48521703563617 W
+FC Voltage : 2.6597774530288643 V
+PH2 : 0.18532627063187251 atm
+PH2O : 0.22810466050073028 atm
+PO2 : 0.1839389860371272 atm
+Power-Thermal : 294.5747829643639 W
+###########
+I :84.5 A
+
+E : 2.922094478652083 V
+FC Efficiency : 0.34095080686323676
+FC Power : 224.72067680355934 W
+FC Voltage : 2.659416293533247 V
+PH2 : 0.18531222025025815 atm
+PH2O : 0.22808736690540174 atm
+PO2 : 0.1839310531989289 atm
+Power-Thermal : 294.95432319644067 W
+###########
+I :84.6 A
+
+E : 2.922092885109742 V
+FC Efficiency : 0.34090451293222684
+FC Power : 224.95606999371782 W
+FC Voltage : 2.6590552008713693 V
+PH2 : 0.18529816986864375 atm
+PH2O : 0.22807007331007317 atm
+PO2 : 0.1839231203607306 atm
+Power-Thermal : 295.3339300062822 W
+###########
+I :84.7 A
+
+E : 2.9220912914986688 V
+FC Efficiency : 0.340858227549379
+FC Power : 225.1913966127728 W
+FC Voltage : 2.6586941748851567 V
+PH2 : 0.18528411948702936 atm
+PH2O : 0.22805277971474464 atm
+PO2 : 0.1839151875225323 atm
+Power-Thermal : 295.7136033872273 W
+###########
+I :84.8 A
+
+E : 2.9220896978188557 V
+FC Efficiency : 0.34081195069449916
+FC Power : 225.4266566673695 W
+FC Voltage : 2.6583332154170933 V
+PH2 : 0.18527006910541496 atm
+PH2O : 0.2280354861194161 atm
+PO2 : 0.183907254684334 atm
+Power-Thermal : 296.0933433326305 W
+###########
+I :84.9 A
+
+E : 2.9220881040702986 V
+FC Efficiency : 0.34076568234746435
+FC Power : 225.66185016413786 W
+FC Voltage : 2.657972322310222 V
+PH2 : 0.1852560187238006 atm
+PH2O : 0.22801819252408756 atm
+PO2 : 0.1838993218461357 atm
+Power-Thermal : 296.4731498358622 W
+###########
+I :85.0 A
+
+E : 2.9220865102529903 V
+FC Efficiency : 0.3407194224882229
+FC Power : 225.8969771096918 W
+FC Voltage : 2.6576114954081387 V
+PH2 : 0.1852419683421862 atm
+PH2O : 0.22800089892875902 atm
+PO2 : 0.1838913890079374 atm
+Power-Thermal : 296.85302289030824 W
+###########
+I :85.1 A
+
+E : 2.922084916366925 V
+FC Efficiency : 0.34067317109679374
+FC Power : 226.13203751062974 W
+FC Voltage : 2.6572507345549914 V
+PH2 : 0.1852279179605718 atm
+PH2O : 0.22798360533343048 atm
+PO2 : 0.18388345616973908 atm
+Power-Thermal : 297.23296248937027 W
+###########
+I :85.2 A
+
+E : 2.9220833224120972 V
+FC Efficiency : 0.3406269281532663
+FC Power : 226.36703137353467 W
+FC Voltage : 2.6568900395954773 V
+PH2 : 0.18521386757895744 atm
+PH2O : 0.22796631173810195 atm
+PO2 : 0.18387552333154078 atm
+Power-Thermal : 297.6129686264654 W
+###########
+I :85.3 A
+
+E : 2.9220817283885014 V
+FC Efficiency : 0.3405806936378
+FC Power : 226.6019587049739 W
+FC Voltage : 2.6565294103748407 V
+PH2 : 0.18519981719734305 atm
+PH2O : 0.2279490181427734 atm
+PO2 : 0.18386759049334248 atm
+Power-Thermal : 297.9930412950261 W
+###########
+I :85.4 A
+
+E : 2.9220801342961304 V
+FC Efficiency : 0.340534467530624
+FC Power : 226.83681951149927 W
+FC Voltage : 2.656168846738867 V
+PH2 : 0.18518576681572865 atm
+PH2O : 0.22793172454744487 atm
+PO2 : 0.18385965765514417 atm
+Power-Thermal : 298.3731804885008 W
+###########
+I :85.5 A
+
+E : 2.9220785401349794 V
+FC Efficiency : 0.3404882498120368
+FC Power : 227.07161379964734 W
+FC Voltage : 2.655808348533887 V
+PH2 : 0.18517171643411426 atm
+PH2O : 0.22791443095211633 atm
+PO2 : 0.18385172481694587 atm
+Power-Thermal : 298.7533862003527 W
+###########
+I :85.6 A
+
+E : 2.9220769459050415 V
+FC Efficiency : 0.34044204046240606
+FC Power : 227.30634157593929 W
+FC Voltage : 2.6554479156067674 V
+PH2 : 0.1851576660524999 atm
+PH2O : 0.22789713735678777 atm
+PO2 : 0.18384379197874756 atm
+Power-Thermal : 299.13365842406074 W
+###########
+I :85.7 A
+
+E : 2.922075351606312 V
+FC Efficiency : 0.3403958394621683
+FC Power : 227.541002846881 W
+FC Voltage : 2.6550875478049125 V
+PH2 : 0.1851436156708855 atm
+PH2O : 0.22787984376145923 atm
+PO2 : 0.18383585914054926 atm
+Power-Thermal : 299.513997153119 W
+###########
+I :85.8 A
+
+E : 2.922073757238784 V
+FC Efficiency : 0.3403496467918282
+FC Power : 227.77559761896313 W
+FC Voltage : 2.6547272449762604 V
+PH2 : 0.18512956528927108 atm
+PH2O : 0.22786255016613066 atm
+PO2 : 0.18382792630235092 atm
+Power-Thermal : 299.89440238103685 W
+###########
+I :85.9 A
+
+E : 2.9220721628024515 V
+FC Efficiency : 0.340303462431959
+FC Power : 228.01012589866122 W
+FC Voltage : 2.6543670069692804 V
+PH2 : 0.18511551490765668 atm
+PH2O : 0.2278452565708021 atm
+PO2 : 0.18381999346415262 atm
+Power-Thermal : 300.27487410133887 W
+###########
+I :86.0 A
+
+E : 2.9220705682973094 V
+FC Efficiency : 0.34025728636320135
+FC Power : 228.24458769243546 W
+FC Voltage : 2.6540068336329705 V
+PH2 : 0.18510146452604231 atm
+PH2O : 0.22782796297547356 atm
+PO2 : 0.18381206062595432 atm
+Power-Thermal : 300.6554123075646 W
+###########
+I :86.1 A
+
+E : 2.9220689737233507 V
+FC Efficiency : 0.3402111185662634
+FC Power : 228.47898300673117 W
+FC Voltage : 2.6536467248168547 V
+PH2 : 0.18508741414442792 atm
+PH2O : 0.22781066938014502 atm
+PO2 : 0.183804127787756 atm
+Power-Thermal : 301.03601699326884 W
+###########
+I :86.2 A
+
+E : 2.9220673790805702 V
+FC Efficiency : 0.34016495902192073
+FC Power : 228.71331184797867 W
+FC Voltage : 2.6532866803709823 V
+PH2 : 0.18507336376281353 atm
+PH2O : 0.22779337578481648 atm
+PO2 : 0.18379619494955773 atm
+Power-Thermal : 301.4166881520214 W
+###########
+I :86.3 A
+
+E : 2.9220657843689617 V
+FC Efficiency : 0.3401188077110157
+FC Power : 228.94757422259315 W
+FC Voltage : 2.652926700145923 V
+PH2 : 0.18505931338119916 atm
+PH2O : 0.22777608218948794 atm
+PO2 : 0.18378826211135943 atm
+Power-Thermal : 301.7974257774069 W
+###########
+I :86.4 A
+
+E : 2.922064189588519 V
+FC Efficiency : 0.3400726646144571
+FC Power : 229.181770136975 W
+FC Voltage : 2.652566783992766 V
+PH2 : 0.18504526299958476 atm
+PH2O : 0.2277587885941594 atm
+PO2 : 0.18378032927316112 atm
+Power-Thermal : 302.1782298630251 W
+###########
+I :86.5 A
+
+E : 2.922062594739237 V
+FC Efficiency : 0.3400265297132202
+FC Power : 229.41589959750968 W
+FC Voltage : 2.652206931763118 V
+PH2 : 0.18503121261797037 atm
+PH2O : 0.22774149499883087 atm
+PO2 : 0.18377239643496282 atm
+Power-Thermal : 302.55910040249034 W
+###########
+I :86.6 A
+
+E : 2.9220609998211087 V
+FC Efficiency : 0.33998040298834586
+FC Power : 229.64996261056783 W
+FC Voltage : 2.6518471433090975 V
+PH2 : 0.18501716223635598 atm
+PH2O : 0.22772420140350233 atm
+PO2 : 0.18376446359676452 atm
+Power-Thermal : 302.9400373894322 W
+###########
+I :86.7 A
+
+E : 2.9220594048341293 V
+FC Efficiency : 0.339934284420941
+FC Power : 229.88395918250555 W
+FC Voltage : 2.6514874184833395 V
+PH2 : 0.1850031118547416 atm
+PH2O : 0.2277069078081738 atm
+PO2 : 0.1837565307585662 atm
+Power-Thermal : 303.3210408174945 W
+###########
+I :86.8 A
+
+E : 2.9220578097782917 V
+FC Efficiency : 0.3398881739921773
+FC Power : 230.11788931966373 W
+FC Voltage : 2.6511277571389833 V
+PH2 : 0.18498906147312721 atm
+PH2O : 0.22768961421284525 atm
+PO2 : 0.1837485979203679 atm
+Power-Thermal : 303.70211068033626 W
+###########
+I :86.9 A
+
+E : 2.9220562146535904 V
+FC Efficiency : 0.33984207168329217
+FC Power : 230.35175302836913 W
+FC Voltage : 2.650768159129679 V
+PH2 : 0.18497501109151282 atm
+PH2O : 0.2276723206175167 atm
+PO2 : 0.1837406650821696 atm
+Power-Thermal : 304.08324697163096 W
+###########
+I :87.0 A
+
+E : 2.92205461946002 V
+FC Efficiency : 0.3397959774755873
+FC Power : 230.58555031493358 W
+FC Voltage : 2.6504086243095815 V
+PH2 : 0.18496096070989845 atm
+PH2O : 0.22765502702218815 atm
+PO2 : 0.1837327322439713 atm
+Power-Thermal : 304.4644496850664 W
+###########
+I :87.1 A
+
+E : 2.9220530241975737 V
+FC Efficiency : 0.339749891350429
+FC Power : 230.81928118565443 W
+FC Voltage : 2.650049152533346 V
+PH2 : 0.18494691032828406 atm
+PH2O : 0.2276377334268596 atm
+PO2 : 0.183724799405773 atm
+Power-Thermal : 304.84571881434556 W
+###########
+I :87.2 A
+
+E : 2.9220514288662462 V
+FC Efficiency : 0.3397038132892475
+FC Power : 231.0529456468146 W
+FC Voltage : 2.649689743656131 V
+PH2 : 0.18493285994666966 atm
+PH2O : 0.22762043983153107 atm
+PO2 : 0.1837168665675747 atm
+Power-Thermal : 305.22705435318545 W
+###########
+I :87.3 A
+
+E : 2.9220498334660316 V
+FC Efficiency : 0.33965774327353726
+FC Power : 231.28654370468243 W
+FC Voltage : 2.6493303975335905 V
+PH2 : 0.18491880956505527 atm
+PH2O : 0.22760314623620254 atm
+PO2 : 0.18370893372937638 atm
+Power-Thermal : 305.6084562953176 W
+###########
+I :87.4 A
+
+E : 2.9220482379969233 V
+FC Efficiency : 0.33961168128485575
+FC Power : 231.5200753655119 W
+FC Voltage : 2.648971114021875 V
+PH2 : 0.1849047591834409 atm
+PH2O : 0.227585852640874 atm
+PO2 : 0.18370100089117808 atm
+Power-Thermal : 305.98992463448815 W
+###########
+I :87.5 A
+
+E : 2.9220466424589158 V
+FC Efficiency : 0.33956562730482426
+FC Power : 231.75354063554258 W
+FC Voltage : 2.6486118929776294 V
+PH2 : 0.18489070880182648 atm
+PH2O : 0.2275685590455454 atm
+PO2 : 0.18369306805297975 atm
+Power-Thermal : 306.37145936445745 W
+###########
+I :87.6 A
+
+E : 2.9220450468520025 V
+FC Efficiency : 0.33951958131512655
+FC Power : 231.9869395209997 W
+FC Voltage : 2.6482527342579876 V
+PH2 : 0.1848766584202121 atm
+PH2O : 0.22755126545021687 atm
+PO2 : 0.18368513521478144 atm
+Power-Thermal : 306.7530604790003 W
+###########
+I :87.7 A
+
+E : 2.9220434511761786 V
+FC Efficiency : 0.3394735432975097
+FC Power : 232.2202720280945 W
+FC Voltage : 2.6478936377205757 V
+PH2 : 0.1848626080385977 atm
+PH2O : 0.22753397185488833 atm
+PO2 : 0.18367720237658314 atm
+Power-Thermal : 307.13472797190553 W
+###########
+I :87.8 A
+
+E : 2.922041855431438 V
+FC Efficiency : 0.3394275132337827
+FC Power : 232.45353816302375 W
+FC Voltage : 2.647534603223505 V
+PH2 : 0.18484855765698333 atm
+PH2O : 0.2275166782595598 atm
+PO2 : 0.18366926953838486 atm
+Power-Thermal : 307.51646183697625 W
+###########
+I :87.9 A
+
+E : 2.922040259617773 V
+FC Efficiency : 0.33938149110581645
+FC Power : 232.68673793196993 W
+FC Voltage : 2.6471756306253686 V
+PH2 : 0.18483450727536893 atm
+PH2O : 0.22749938466423125 atm
+PO2 : 0.18366133670018656 atm
+Power-Thermal : 307.89826206803014 W
+###########
+I :88.0 A
+
+E : 2.92203866373518 V
+FC Efficiency : 0.33933547689554444
+FC Power : 232.91987134110173 W
+FC Voltage : 2.646816719785247 V
+PH2 : 0.18482045689375454 atm
+PH2O : 0.22748209106890271 atm
+PO2 : 0.18365340386198825 atm
+Power-Thermal : 308.2801286588983 W
+###########
+I :88.1 A
+
+E : 2.922037067783651 V
+FC Efficiency : 0.33928947058496106
+FC Power : 233.15293839657355 W
+FC Voltage : 2.6464578705626964 V
+PH2 : 0.18480640651214017 atm
+PH2O : 0.22746479747357418 atm
+PO2 : 0.18364547102378995 atm
+Power-Thermal : 308.6620616034265 W
+###########
+I :88.2 A
+
+E : 2.922035471763182 V
+FC Efficiency : 0.3392434721561223
+FC Power : 233.3859391045259 W
+FC Voltage : 2.646099082817754 V
+PH2 : 0.18479235613052578 atm
+PH2O : 0.2274475038782456 atm
+PO2 : 0.18363753818559164 atm
+Power-Thermal : 309.04406089547416 W
+###########
+I :88.3 A
+
+E : 2.9220338756737654 V
+FC Efficiency : 0.339197481591145
+FC Power : 233.6188734710852 W
+FC Voltage : 2.645740356410931 V
+PH2 : 0.18477830574891138 atm
+PH2O : 0.22743021028291707 atm
+PO2 : 0.18362960534739334 atm
+Power-Thermal : 309.42612652891484 W
+###########
+I :88.4 A
+
+E : 2.922032279515396 V
+FC Efficiency : 0.3391514988722067
+FC Power : 233.851741502364 W
+FC Voltage : 2.6453816912032124 V
+PH2 : 0.184764255367297 atm
+PH2O : 0.22741291668758853 atm
+PO2 : 0.18362167250919503 atm
+Power-Thermal : 309.8082584976361 W
+###########
+I :88.5 A
+
+E : 2.922030683288068 V
+FC Efficiency : 0.33910552398154553
+FC Power : 234.0845432044609 W
+FC Voltage : 2.6450230870560554 V
+PH2 : 0.18475020498568262 atm
+PH2O : 0.22739562309226 atm
+PO2 : 0.18361373967099673 atm
+Power-Thermal : 310.19045679553915 W
+###########
+I :88.6 A
+
+E : 2.922029086991775 V
+FC Efficiency : 0.33905955690145984
+FC Power : 234.31727858346085 W
+FC Voltage : 2.6446645438313867 V
+PH2 : 0.18473615460406823 atm
+PH2O : 0.22737832949693146 atm
+PO2 : 0.18360580683279842 atm
+Power-Thermal : 310.57272141653914 W
+###########
+I :88.7 A
+
+E : 2.9220274906265113 V
+FC Efficiency : 0.33901359761430755
+FC Power : 234.54994764543486 W
+FC Voltage : 2.644306061391599 V
+PH2 : 0.18472210422245383 atm
+PH2O : 0.22736103590160292 atm
+PO2 : 0.18359787399460012 atm
+Power-Thermal : 310.95505235456517 W
+###########
+I :88.8 A
+
+E : 2.922025894192271 V
+FC Efficiency : 0.33896764610250657
+FC Power : 234.78255039644014 W
+FC Voltage : 2.6439476395995514 V
+PH2 : 0.18470805384083946 atm
+PH2O : 0.22734374230627438 atm
+PO2 : 0.18358994115640181 atm
+Power-Thermal : 311.33744960355983 W
+###########
+I :88.9 A
+
+E : 2.9220242976890476 V
+FC Efficiency : 0.33892170234853397
+FC Power : 235.01508684252045 W
+FC Voltage : 2.643589278318565 V
+PH2 : 0.18469400345922507 atm
+PH2O : 0.22732644871094584 atm
+PO2 : 0.1835820083182035 atm
+Power-Thermal : 311.7199131574796 W
+###########
+I :89.0 A
+
+E : 2.922022701116836 V
+FC Efficiency : 0.33887576633492594
+FC Power : 235.2475569897056 W
+FC Voltage : 2.6432309774124225 V
+PH2 : 0.18467995307761068 atm
+PH2O : 0.2273091551156173 atm
+PO2 : 0.1835740754800052 atm
+Power-Thermal : 312.10244301029445 W
+###########
+I :89.1 A
+
+E : 2.9220211044756295 V
+FC Efficiency : 0.33882983804427763
+FC Power : 235.47996084401208 W
+FC Voltage : 2.6428727367453657 V
+PH2 : 0.18466590269599628 atm
+PH2O : 0.22729186152028874 atm
+PO2 : 0.1835661426418069 atm
+Power-Thermal : 312.4850391559879 W
+###########
+I :89.2 A
+
+E : 2.9220195077654227 V
+FC Efficiency : 0.3387839174592426
+FC Power : 235.71229841144262 W
+FC Voltage : 2.642514556182092 V
+PH2 : 0.18465185231438186 atm
+PH2O : 0.22727456792496017 atm
+PO2 : 0.18355820980360857 atm
+Power-Thermal : 312.8677015885574 W
+###########
+I :89.3 A
+
+E : 2.9220179109862094 V
+FC Efficiency : 0.3387380045625327
+FC Power : 235.94456969798657 W
+FC Voltage : 2.6421564355877556 V
+PH2 : 0.1846378019327675 atm
+PH2O : 0.22725727432963164 atm
+PO2 : 0.18355027696541026 atm
+Power-Thermal : 313.25043030201346 W
+###########
+I :89.4 A
+
+E : 2.922016314137983 V
+FC Efficiency : 0.338692099336918
+FC Power : 236.1767747096197 W
+FC Voltage : 2.6417983748279608 V
+PH2 : 0.1846237515511531 atm
+PH2O : 0.2272399807343031 atm
+PO2 : 0.183542344127212 atm
+Power-Thermal : 313.6332252903804 W
+###########
+I :89.5 A
+
+E : 2.9220147172207382 V
+FC Efficiency : 0.33864620176522625
+FC Power : 236.40891345230446 W
+FC Voltage : 2.641440373768765 V
+PH2 : 0.1846097011695387 atm
+PH2O : 0.22722268713897453 atm
+PO2 : 0.18353441128901368 atm
+Power-Thermal : 314.0160865476956 W
+###########
+I :89.6 A
+
+E : 2.9220131202344697 V
+FC Efficiency : 0.3386003118303427
+FC Power : 236.64098593198992 W
+FC Voltage : 2.6410824322766735 V
+PH2 : 0.18459565078792434 atm
+PH2O : 0.227205393543646 atm
+PO2 : 0.18352647845081538 atm
+Power-Thermal : 314.39901406801005 W
+###########
+I :89.7 A
+
+E : 2.9220115231791706 V
+FC Efficiency : 0.33855442951521003
+FC Power : 236.8729921546119 W
+FC Voltage : 2.6407245502186387 V
+PH2 : 0.18458160040630994 atm
+PH2O : 0.22718809994831746 atm
+PO2 : 0.18351854561261707 atm
+Power-Thermal : 314.78200784538814 W
+###########
+I :89.8 A
+
+E : 2.9220099260548342 V
+FC Efficiency : 0.33850855480282754
+FC Power : 237.1049321260925 W
+FC Voltage : 2.640366727462055 V
+PH2 : 0.18456755002469555 atm
+PH2O : 0.22717080635298892 atm
+PO2 : 0.18351061277441877 atm
+Power-Thermal : 315.1650678739075 W
+###########
+I :89.9 A
+
+E : 2.9220083288614567 V
+FC Efficiency : 0.33846268767625176
+FC Power : 237.33680585234129 W
+FC Voltage : 2.640008963874764 V
+PH2 : 0.18455349964308118 atm
+PH2O : 0.22715351275766038 atm
+PO2 : 0.18350267993622046 atm
+Power-Thermal : 315.54819414765876 W
+###########
+I :90.0 A
+
+E : 2.92200673159903 V
+FC Efficiency : 0.33841682811859536
+FC Power : 237.568613339254 W
+FC Voltage : 2.6396512593250443 V
+PH2 : 0.1845394492614668 atm
+PH2O : 0.22713621916233184 atm
+PO2 : 0.18349474709802216 atm
+Power-Thermal : 315.93138666074606 W
+###########
+I :90.1 A
+
+E : 2.9220051342675495 V
+FC Efficiency : 0.3383709761130276
+FC Power : 237.80035459271355 W
+FC Voltage : 2.6392936136816156 V
+PH2 : 0.1845253988798524 atm
+PH2O : 0.2271189255670033 atm
+PO2 : 0.18348681425982385 atm
+Power-Thermal : 316.31464540728643 W
+###########
+I :90.2 A
+
+E : 2.9220035368670088 V
+FC Efficiency : 0.33832513164277356
+FC Power : 238.0320296185898 W
+FC Voltage : 2.638936026813634 V
+PH2 : 0.184511348498238 atm
+PH2O : 0.22710163197167477 atm
+PO2 : 0.18347888142162555 atm
+Power-Thermal : 316.69797038141024 W
+###########
+I :90.3 A
+
+E : 2.9220019393974015 V
+FC Efficiency : 0.3382792946911139
+FC Power : 238.26363842273918 W
+FC Voltage : 2.6385784985906886 V
+PH2 : 0.18449729811662363 atm
+PH2O : 0.22708433837634623 atm
+PO2 : 0.18347094858342725 atm
+Power-Thermal : 317.08136157726085 W
+###########
+I :90.4 A
+
+E : 2.922000341858722 V
+FC Efficiency : 0.33823346524138515
+FC Power : 238.4951810110055 W
+FC Voltage : 2.6382210288828043 V
+PH2 : 0.18448324773500924 atm
+PH2O : 0.22706704478101766 atm
+PO2 : 0.18346301574522894 atm
+Power-Thermal : 317.4648189889945 W
+###########
+I :90.5 A
+
+E : 2.9219987442509647 V
+FC Efficiency : 0.338187643276979
+FC Power : 238.72665738921947 W
+FC Voltage : 2.637863617560436 V
+PH2 : 0.18446919735339484 atm
+PH2O : 0.22704975118568912 atm
+PO2 : 0.18345508290703064 atm
+Power-Thermal : 317.8483426107806 W
+###########
+I :90.6 A
+
+E : 2.921997146574123 V
+FC Efficiency : 0.3381418287813418
+FC Power : 238.95806756319865 W
+FC Voltage : 2.6375062644944665 V
+PH2 : 0.18445514697178048 atm
+PH2O : 0.2270324575903606 atm
+PO2 : 0.18344715006883233 atm
+Power-Thermal : 318.23193243680134 W
+###########
+I :90.7 A
+
+E : 2.9219955488281912 V
+FC Efficiency : 0.3380960217379753
+FC Power : 239.18941153874803 W
+FC Voltage : 2.6371489695562076 V
+PH2 : 0.18444109659016608 atm
+PH2O : 0.22701516399503205 atm
+PO2 : 0.18343921723063403 atm
+Power-Thermal : 318.615588461252 W
+###########
+I :90.8 A
+
+E : 2.921993951013163 V
+FC Efficiency : 0.33805022213043534
+FC Power : 239.42068932165952 W
+FC Voltage : 2.6367917326173957 V
+PH2 : 0.1844270462085517 atm
+PH2O : 0.2269978703997035 atm
+PO2 : 0.18343128439243572 atm
+Power-Thermal : 318.99931067834046 W
+###########
+I :90.9 A
+
+E : 2.921992353129033 V
+FC Efficiency : 0.3380044299423322
+FC Power : 239.65190091771242 W
+FC Voltage : 2.6364345535501914 V
+PH2 : 0.18441299582693726 atm
+PH2O : 0.22698057680437492 atm
+PO2 : 0.1834233515542374 atm
+Power-Thermal : 319.38309908228763 W
+###########
+I :91.0 A
+
+E : 2.9219907551757958 V
+FC Efficiency : 0.3379586451573304
+FC Power : 239.8830463326731 W
+FC Voltage : 2.636077432227177 V
+PH2 : 0.18439894544532287 atm
+PH2O : 0.22696328320904638 atm
+PO2 : 0.18341541871603909 atm
+Power-Thermal : 319.7669536673269 W
+###########
+I :91.1 A
+
+E : 2.9219891571534435 V
+FC Efficiency : 0.3379128677591477
+FC Power : 240.11412557229517 W
+FC Voltage : 2.635720368521352 V
+PH2 : 0.1843848950637085 atm
+PH2O : 0.22694598961371784 atm
+PO2 : 0.1834074858778408 atm
+Power-Thermal : 320.1508744277048 W
+###########
+I :91.2 A
+
+E : 2.9219875590619715 V
+FC Efficiency : 0.337867097731556
+FC Power : 240.3451386423197 W
+FC Voltage : 2.635363362306137 V
+PH2 : 0.1843708446820941 atm
+PH2O : 0.2269286960183893 atm
+PO2 : 0.1833995530396425 atm
+Power-Thermal : 320.53486135768037 W
+###########
+I :91.3 A
+
+E : 2.921985960901373 V
+FC Efficiency : 0.33782133505838047
+FC Power : 240.57608554847508 W
+FC Voltage : 2.635006413455368 V
+PH2 : 0.18435679430047971 atm
+PH2O : 0.22691140242306077 atm
+PO2 : 0.1833916202014442 atm
+Power-Thermal : 320.9189144515249 W
+###########
+I :91.4 A
+
+E : 2.9219843626716435 V
+FC Efficiency : 0.33777557972349936
+FC Power : 240.8069662964772 W
+FC Voltage : 2.6346495218432953 V
+PH2 : 0.18434274391886535 atm
+PH2O : 0.22689410882773223 atm
+PO2 : 0.1833836873632459 atm
+Power-Thermal : 321.3030337035229 W
+###########
+I :91.5 A
+
+E : 2.921982764372775 V
+FC Efficiency : 0.33772983171084353
+FC Power : 241.03778089202905 W
+FC Voltage : 2.6342926873445798 V
+PH2 : 0.18432869353725095 atm
+PH2O : 0.2268768152324037 atm
+PO2 : 0.1833757545250476 atm
+Power-Thermal : 321.687219107971 W
+###########
+I :91.6 A
+
+E : 2.9219811660047634 V
+FC Efficiency : 0.337684091004397
+FC Power : 241.26852934082157 W
+FC Voltage : 2.633935909834297 V
+PH2 : 0.18431464315563656 atm
+PH2O : 0.22685952163707515 atm
+PO2 : 0.18336782168684929 atm
+Power-Thermal : 322.07147065917843 W
+###########
+I :91.7 A
+
+E : 2.921979567567602 V
+FC Efficiency : 0.33763835758819577
+FC Power : 241.49921164853293 W
+FC Voltage : 2.633579189187927 V
+PH2 : 0.1843005927740222 atm
+PH2O : 0.22684222804174659 atm
+PO2 : 0.18335988884865098 atm
+Power-Thermal : 322.4557883514671 W
+###########
+I :91.8 A
+
+E : 2.921977969061284 V
+FC Efficiency : 0.3375926314463282
+FC Power : 241.7298278208288 W
+FC Voltage : 2.6332225252813597 V
+PH2 : 0.1842865423924078 atm
+PH2O : 0.22682493444641805 atm
+PO2 : 0.18335195601045268 atm
+Power-Thermal : 322.8401721791712 W
+###########
+I :91.9 A
+
+E : 2.921976370485804 V
+FC Efficiency : 0.3375469125629345
+FC Power : 241.9603778633628 W
+FC Voltage : 2.6328659179908898 V
+PH2 : 0.1842724920107934 atm
+PH2O : 0.2268076408510895 atm
+PO2 : 0.18334402317225437 atm
+Power-Thermal : 323.22462213663727 W
+###########
+I :92.0 A
+
+E : 2.921974771841157 V
+FC Efficiency : 0.33750120092220703
+FC Power : 242.1908617817758 W
+FC Voltage : 2.632509367193215 V
+PH2 : 0.184258441629179 atm
+PH2O : 0.22679034725576097 atm
+PO2 : 0.18333609033405607 atm
+Power-Thermal : 323.60913821822425 W
+###########
+I :92.1 A
+
+E : 2.921973173127336 V
+FC Efficiency : 0.33745549650838935
+FC Power : 242.42127958169672 W
+FC Voltage : 2.632152872765437 V
+PH2 : 0.18424439124756464 atm
+PH2O : 0.22677305366043243 atm
+PO2 : 0.18332815749585776 atm
+Power-Thermal : 323.99372041830327 W
+###########
+I :92.2 A
+
+E : 2.921971574344335 V
+FC Efficiency : 0.337409799305776
+FC Power : 242.65163126874188 W
+FC Voltage : 2.631796434585053 V
+PH2 : 0.18423034086595025 atm
+PH2O : 0.2267557600651039 atm
+PO2 : 0.18332022465765946 atm
+Power-Thermal : 324.37836873125815 W
+###########
+I :92.3 A
+
+E : 2.921969975492148 V
+FC Efficiency : 0.33736410929871324
+FC Power : 242.88191684851563 W
+FC Voltage : 2.6314400525299635 V
+PH2 : 0.18421629048433585 atm
+PH2O : 0.22673846646977536 atm
+PO2 : 0.18331229181946115 atm
+Power-Thermal : 324.7630831514844 W
+###########
+I :92.4 A
+
+E : 2.921968376570769 V
+FC Efficiency : 0.3373184264715977
+FC Power : 243.11213632660994 W
+FC Voltage : 2.6310837264784626 V
+PH2 : 0.1842022401027215 atm
+PH2O : 0.22672117287444682 atm
+PO2 : 0.18330435898126285 atm
+Power-Thermal : 325.14786367339013 W
+###########
+I :92.5 A
+
+E : 2.921966777580192 V
+FC Efficiency : 0.3372727508088769
+FC Power : 243.3422897086047 W
+FC Voltage : 2.63072745630924 V
+PH2 : 0.1841881897211071 atm
+PH2O : 0.22670387927911828 atm
+PO2 : 0.18329642614306454 atm
+Power-Thermal : 325.53271029139535 W
+###########
+I :92.6 A
+
+E : 2.921965178520412 V
+FC Efficiency : 0.33722708229504883
+FC Power : 243.57237700006786 W
+FC Voltage : 2.630371241901381 V
+PH2 : 0.1841741393394927 atm
+PH2O : 0.22668658568378974 atm
+PO2 : 0.18328849330486624 atm
+Power-Thermal : 325.9176229999321 W
+###########
+I :92.7 A
+
+E : 2.921963579391422 V
+FC Efficiency : 0.3371814209146612
+FC Power : 243.80239820655493 W
+FC Voltage : 2.6300150831343574 V
+PH2 : 0.18416008895787828 atm
+PH2O : 0.22666929208846115 atm
+PO2 : 0.18328056046666794 atm
+Power-Thermal : 326.3026017934451 W
+###########
+I :92.8 A
+
+E : 2.921961980193216 V
+FC Efficiency : 0.33713576665231226
+FC Power : 244.0323533336097 W
+FC Voltage : 2.6296589798880357 V
+PH2 : 0.18414603857626388 atm
+PH2O : 0.2266519984931326 atm
+PO2 : 0.18327262762846963 atm
+Power-Thermal : 326.6876466663903 W
+###########
+I :92.9 A
+
+E : 2.921960380925788 V
+FC Efficiency : 0.3370901194926497
+FC Power : 244.26224238676386 W
+FC Voltage : 2.629302932042668 V
+PH2 : 0.18413198819464952 atm
+PH2O : 0.22663470489780407 atm
+PO2 : 0.18326469479027133 atm
+Power-Thermal : 327.0727576132362 W
+###########
+I :93.0 A
+
+E : 2.921958781589133 V
+FC Efficiency : 0.33704447942037086
+FC Power : 244.49206537153705 W
+FC Voltage : 2.628946939478893 V
+PH2 : 0.18411793781303512 atm
+PH2O : 0.2266174113024755 atm
+PO2 : 0.18325676195207302 atm
+Power-Thermal : 327.45793462846297 W
+###########
+I :93.1 A
+
+E : 2.9219571821832435 V
+FC Efficiency : 0.3369988464202224
+FC Power : 244.72182229343707 W
+FC Voltage : 2.6285910020777346 V
+PH2 : 0.18410388743142073 atm
+PH2O : 0.22660011770714697 atm
+PO2 : 0.18324882911387472 atm
+Power-Thermal : 327.8431777065629 W
+###########
+I :93.2 A
+
+E : 2.9219555827081143 V
+FC Efficiency : 0.336953220477
+FC Power : 244.95151315795994 W
+FC Voltage : 2.6282351197206 V
+PH2 : 0.18408983704980636 atm
+PH2O : 0.22658282411181843 atm
+PO2 : 0.1832408962756764 atm
+Power-Thermal : 328.2284868420401 W
+###########
+I :93.3 A
+
+E : 2.92195398316374 V
+FC Efficiency : 0.3369076015755486
+FC Power : 245.18113797058973 W
+FC Voltage : 2.627879292289279 V
+PH2 : 0.18407578666819197 atm
+PH2O : 0.2265655305164899 atm
+PO2 : 0.1832329634374781 atm
+Power-Thermal : 328.6138620294103 W
+###########
+I :93.4 A
+
+E : 2.9219523835501136 V
+FC Efficiency : 0.33686198970076126
+FC Power : 245.41069673679866 W
+FC Voltage : 2.6275235196659383 V
+PH2 : 0.18406173628657757 atm
+PH2O : 0.22654823692116136 atm
+PO2 : 0.1832250305992798 atm
+Power-Thermal : 328.9993032632014 W
+###########
+I :93.5 A
+
+E : 2.921950783867229 V
+FC Efficiency : 0.33681638483758014
+FC Power : 245.6401894620472 W
+FC Voltage : 2.6271678017331253 V
+PH2 : 0.1840476859049632 atm
+PH2O : 0.22653094332583282 atm
+PO2 : 0.1832170977610815 atm
+Power-Thermal : 329.38481053795283 W
+###########
+I :93.6 A
+
+E : 2.921949184115081 V
+FC Efficiency : 0.3367707869709953
+FC Power : 245.86961615178421 W
+FC Voltage : 2.6268121383737633 V
+PH2 : 0.1840336355233488 atm
+PH2O : 0.22651364973050428 atm
+PO2 : 0.1832091649228832 atm
+Power-Thermal : 329.7703838482158 W
+###########
+I :93.7 A
+
+E : 2.9219475842936635 V
+FC Efficiency : 0.33672519608604495
+FC Power : 246.09897681144682 W
+FC Voltage : 2.6264565294711506 V
+PH2 : 0.18401958514173442 atm
+PH2O : 0.22649635613517574 atm
+PO2 : 0.1832012320846849 atm
+Power-Thermal : 330.1560231885532 W
+###########
+I :93.8 A
+
+E : 2.9219459844029707 V
+FC Efficiency : 0.3366796121678154
+FC Power : 246.32827144646043 W
+FC Voltage : 2.62610097490896 V
+PH2 : 0.18400553476012002 atm
+PH2O : 0.2264790625398472 atm
+PO2 : 0.18319329924648659 atm
+Power-Thermal : 330.5417285535396 W
+###########
+I :93.9 A
+
+E : 2.9219443844429955 V
+FC Efficiency : 0.3366340352014401
+FC Power : 246.5575000622388 W
+FC Voltage : 2.625745474571233 V
+PH2 : 0.18399148437850565 atm
+PH2O : 0.22646176894451867 atm
+PO2 : 0.18318536640828828 atm
+Power-Thermal : 330.92749993776124 W
+###########
+I :94.0 A
+
+E : 2.9219427844137327 V
+FC Efficiency : 0.33658846517210067
+FC Power : 246.78666266418426 W
+FC Voltage : 2.6253900283423857 V
+PH2 : 0.18397743399689126 atm
+PH2O : 0.2264444753491901 atm
+PO2 : 0.18317743357008998 atm
+Power-Thermal : 331.3133373358158 W
+###########
+I :94.1 A
+
+E : 2.921941184315176 V
+FC Efficiency : 0.33654290206502546
+FC Power : 247.0157592576874 W
+FC Voltage : 2.625034636107199 V
+PH2 : 0.18396338361527687 atm
+PH2O : 0.22642718175386156 atm
+PO2 : 0.18316950073189167 atm
+Power-Thermal : 331.6992407423126 W
+###########
+I :94.2 A
+
+E : 2.9219395841473195 V
+FC Efficiency : 0.3364973458654901
+FC Power : 247.24478984812754 W
+FC Voltage : 2.624679297750823 V
+PH2 : 0.1839493332336625 atm
+PH2O : 0.22640988815853302 atm
+PO2 : 0.18316156789369337 atm
+Power-Thermal : 332.0852101518725 W
+###########
+I :94.3 A
+
+E : 2.9219379839101576 V
+FC Efficiency : 0.3364517965588172
+FC Power : 247.4737544408724 W
+FC Voltage : 2.624324013158774 V
+PH2 : 0.1839352828520481 atm
+PH2O : 0.22639259456320449 atm
+PO2 : 0.18315363505549506 atm
+Power-Thermal : 332.4712455591276 W
+###########
+I :94.4 A
+
+E : 2.9219363836036836 V
+FC Efficiency : 0.33640625413037556
+FC Power : 247.70265304127815 W
+FC Voltage : 2.6239687822169295 V
+PH2 : 0.18392123247043368 atm
+PH2O : 0.2263753009678759 atm
+PO2 : 0.18314570221729676 atm
+Power-Thermal : 332.8573469587219 W
+###########
+I :94.5 A
+
+E : 2.9219347832278926 V
+FC Efficiency : 0.33636071856558114
+FC Power : 247.93148565468988 W
+FC Voltage : 2.623613604811533 V
+PH2 : 0.1839071820888193 atm
+PH2O : 0.22635800737254735 atm
+PO2 : 0.18313776937909845 atm
+Power-Thermal : 333.24351434531013 W
+###########
+I :94.6 A
+
+E : 2.921933182782777 V
+FC Efficiency : 0.33631518984989556
+FC Power : 248.16025228644094 W
+FC Voltage : 2.6232584808291857 V
+PH2 : 0.1838931317072049 atm
+PH2O : 0.22634071377721882 atm
+PO2 : 0.18312983654090015 atm
+Power-Thermal : 333.629747713559 W
+###########
+I :94.7 A
+
+E : 2.921931582268332 V
+FC Efficiency : 0.3362696679688269
+FC Power : 248.3889529418537 W
+FC Voltage : 2.62290341015685 V
+PH2 : 0.18387908132559053 atm
+PH2O : 0.22632342018189028 atm
+PO2 : 0.18312190370270184 atm
+Power-Thermal : 334.01604705814634 W
+###########
+I :94.8 A
+
+E : 2.921929981684551 V
+FC Efficiency : 0.33622415290792884
+FC Power : 248.61758762623893 W
+FC Voltage : 2.6225483926818454 V
+PH2 : 0.18386503094397613 atm
+PH2O : 0.22630612658656174 atm
+PO2 : 0.18311397086450354 atm
+Power-Thermal : 334.4024123737611 W
+###########
+I :94.9 A
+
+E : 2.921928381031429 V
+FC Efficiency : 0.3361786446528012
+FC Power : 248.8461563448965 W
+FC Voltage : 2.6221934282918493 V
+PH2 : 0.18385098056236174 atm
+PH2O : 0.2262888329912332 atm
+PO2 : 0.18310603802630523 atm
+Power-Thermal : 334.78884365510356 W
+###########
+I :95.0 A
+
+E : 2.9219267803089584 V
+FC Efficiency : 0.33613314318908855
+FC Power : 249.07465910311467 W
+FC Voltage : 2.6218385168748912 V
+PH2 : 0.18383693018074737 atm
+PH2O : 0.22627153939590466 atm
+PO2 : 0.18309810518810693 atm
+Power-Thermal : 335.17534089688536 W
+###########
+I :95.1 A
+
+E : 2.9219251795171344 V
+FC Efficiency : 0.33608764850248174
+FC Power : 249.3030959061709 W
+FC Voltage : 2.6214836583193577 V
+PH2 : 0.18382287979913298 atm
+PH2O : 0.22625424580057613 atm
+PO2 : 0.18309017234990863 atm
+Power-Thermal : 335.56190409382907 W
+###########
+I :95.2 A
+
+E : 2.9219235786559503 V
+FC Efficiency : 0.33604216057871583
+FC Power : 249.53146675933124 W
+FC Voltage : 2.6211288525139835 V
+PH2 : 0.18380882941751858 atm
+PH2O : 0.2262369522052476 atm
+PO2 : 0.18308223951171032 atm
+Power-Thermal : 335.94853324066884 W
+###########
+I :95.3 A
+
+E : 2.921921977725401 V
+FC Efficiency : 0.33599667940357125
+FC Power : 249.75977166785069 W
+FC Voltage : 2.620774099347856 V
+PH2 : 0.18379477903590422 atm
+PH2O : 0.22621965860991902 atm
+PO2 : 0.18307430667351202 atm
+Power-Thermal : 336.3352283321493 W
+###########
+I :95.4 A
+
+E : 2.9219203767254793 V
+FC Efficiency : 0.33595120496287323
+FC Power : 249.98801063697326 W
+FC Voltage : 2.6204193987104114 V
+PH2 : 0.18378072865428982 atm
+PH2O : 0.22620236501459048 atm
+PO2 : 0.1830663738353137 atm
+Power-Thermal : 336.7219893630268 W
+###########
+I :95.5 A
+
+E : 2.92191877565618 V
+FC Efficiency : 0.33590573724249123
+FC Power : 250.21618367193173 W
+FC Voltage : 2.620064750491432 V
+PH2 : 0.18376667827267543 atm
+PH2O : 0.22618507141926195 atm
+PO2 : 0.1830584409971154 atm
+Power-Thermal : 337.1088163280683 W
+###########
+I :95.6 A
+
+E : 2.9219171745174966 V
+FC Efficiency : 0.33586027622833947
+FC Power : 250.44429077794817 W
+FC Voltage : 2.619710154581048 V
+PH2 : 0.18375262789106103 atm
+PH2O : 0.2261677778239334 atm
+PO2 : 0.1830505081589171 atm
+Power-Thermal : 337.49570922205186 W
+###########
+I :95.7 A
+
+E : 2.9219155733094233 V
+FC Efficiency : 0.3358148219063759
+FC Power : 250.67233196023338 W
+FC Voltage : 2.6193556108697322 V
+PH2 : 0.18373857750944667 atm
+PH2O : 0.22615048422860487 atm
+PO2 : 0.1830425753207188 atm
+Power-Thermal : 337.88266803976666 W
+###########
+I :95.8 A
+
+E : 2.9219139720319545 V
+FC Efficiency : 0.3357693742626029
+FC Power : 250.90030722398743 W
+FC Voltage : 2.619001119248303 V
+PH2 : 0.18372452712783227 atm
+PH2O : 0.22613319063327633 atm
+PO2 : 0.1830346424825205 atm
+Power-Thermal : 338.26969277601256 W
+###########
+I :95.9 A
+
+E : 2.9219123706850834 V
+FC Efficiency : 0.3357239332830665
+FC Power : 251.1282165743994 W
+FC Voltage : 2.6186466796079184 V
+PH2 : 0.18371047674621788 atm
+PH2O : 0.2261158970379478 atm
+PO2 : 0.1830267096443222 atm
+Power-Thermal : 338.6567834256007 W
+###########
+I :96.0 A
+
+E : 2.9219107692688047 V
+FC Efficiency : 0.33567849895385604
+FC Power : 251.3560600166474 W
+FC Voltage : 2.6182922918400773 V
+PH2 : 0.1836964263646035 atm
+PH2O : 0.22609860344261926 atm
+PO2 : 0.18301877680612388 atm
+Power-Thermal : 339.04393998335263 W
+###########
+I :96.1 A
+
+E : 2.921909167783112 V
+FC Efficiency : 0.33563307126110487
+FC Power : 251.583837555899 W
+FC Voltage : 2.6179379558366183 V
+PH2 : 0.18368237598298912 atm
+PH2O : 0.22608130984729072 atm
+PO2 : 0.18301084396792558 atm
+Power-Thermal : 339.431162444101 W
+###########
+I :96.2 A
+
+E : 2.921907566227999 V
+FC Efficiency : 0.3355876501909891
+FC Power : 251.8115491973106 W
+FC Voltage : 2.617583671489715 V
+PH2 : 0.1836683256013747 atm
+PH2O : 0.22606401625196212 atm
+PO2 : 0.18300291112972727 atm
+Power-Thermal : 339.8184508026894 W
+###########
+I :96.3 A
+
+E : 2.921905964603461 V
+FC Efficiency : 0.33554223572972836
+FC Power : 252.03919494602815 W
+FC Voltage : 2.617229438691881 V
+PH2 : 0.1836542752197603 atm
+PH2O : 0.2260467226566336 atm
+PO2 : 0.18299497829152897 atm
+Power-Thermal : 340.20580505397186 W
+###########
+I :96.4 A
+
+E : 2.9219043629094896 V
+FC Efficiency : 0.3354968278635847
+FC Power : 252.26677480718664 W
+FC Voltage : 2.616875257335961 V
+PH2 : 0.18364022483814593 atm
+PH2O : 0.22602942906130505 atm
+PO2 : 0.18298704545333067 atm
+Power-Thermal : 340.5932251928134 W
+###########
+I :96.5 A
+
+E : 2.9219027611460815 V
+FC Efficiency : 0.33545142657886345
+FC Power : 252.49428878591053 W
+FC Voltage : 2.616521127315135 V
+PH2 : 0.18362617445653154 atm
+PH2O : 0.2260121354659765 atm
+PO2 : 0.18297911261513236 atm
+Power-Thermal : 340.9807112140895 W
+###########
+I :96.6 A
+
+E : 2.921901159313229 V
+FC Efficiency : 0.335406031861912
+FC Power : 252.72173688731343 W
+FC Voltage : 2.6161670485229136 V
+PH2 : 0.18361212407491714 atm
+PH2O : 0.22599484187064794 atm
+PO2 : 0.18297117977693406 atm
+Power-Thermal : 341.3682631126866 W
+###########
+I :96.7 A
+
+E : 2.921899557410926 V
+FC Efficiency : 0.3353606436991204
+FC Power : 252.94911911649854 W
+FC Voltage : 2.615813020853139 V
+PH2 : 0.18359807369330275 atm
+PH2O : 0.2259775482753194 atm
+PO2 : 0.18296324693873575 atm
+Power-Thermal : 341.7558808835015 W
+###########
+I :96.8 A
+
+E : 2.9218979554391677 V
+FC Efficiency : 0.3353152620769208
+FC Power : 253.1764354785583 W
+FC Voltage : 2.6154590441999823 V
+PH2 : 0.18358402331168838 atm
+PH2O : 0.22596025467999087 atm
+PO2 : 0.18295531410053745 atm
+Power-Thermal : 342.14356452144176 W
+###########
+I :96.9 A
+
+E : 2.9218963533979467 V
+FC Efficiency : 0.33526988698178734
+FC Power : 253.40368597857454 W
+FC Voltage : 2.6151051184579415 V
+PH2 : 0.183569972930074 atm
+PH2O : 0.22594296108466233 atm
+PO2 : 0.18294738126233914 atm
+Power-Thermal : 342.53131402142554 W
+###########
+I :97.0 A
+
+E : 2.9218947512872577 V
+FC Efficiency : 0.33522451840023615
+FC Power : 253.6308706216187 W
+FC Voltage : 2.6147512435218423 V
+PH2 : 0.1835559225484596 atm
+PH2O : 0.2259256674893338 atm
+PO2 : 0.18293944842414084 atm
+Power-Thermal : 342.91912937838134 W
+###########
+I :97.1 A
+
+E : 2.921893149107095 V
+FC Efficiency : 0.33517915631882494
+FC Power : 253.85798941275166 W
+FC Voltage : 2.614397419286835 V
+PH2 : 0.18354187216684523 atm
+PH2O : 0.22590837389400525 atm
+PO2 : 0.18293151558594253 atm
+Power-Thermal : 343.3070105872483 W
+###########
+I :97.2 A
+
+E : 2.9218915468574513 V
+FC Efficiency : 0.33513380072415294
+FC Power : 254.0850423570238 W
+FC Voltage : 2.614043645648393 V
+PH2 : 0.18352782178523083 atm
+PH2O : 0.22589108029867672 atm
+PO2 : 0.18292358274774423 atm
+Power-Thermal : 343.69495764297625 W
+###########
+I :97.3 A
+
+E : 2.9218899445383224 V
+FC Efficiency : 0.3350884516028607
+FC Power : 254.3120294594751 W
+FC Voltage : 2.6136899225023136 V
+PH2 : 0.18351377140361644 atm
+PH2O : 0.22587378670334818 atm
+PO2 : 0.18291564990954592 atm
+Power-Thermal : 344.0829705405249 W
+###########
+I :97.4 A
+
+E : 2.9218883421497006 V
+FC Efficiency : 0.33504310894162986
+FC Power : 254.5389507251351 W
+FC Voltage : 2.6133362497447132 V
+PH2 : 0.18349972102200204 atm
+PH2O : 0.22585649310801964 atm
+PO2 : 0.18290771707134762 atm
+Power-Thermal : 344.471049274865 W
+###########
+I :97.5 A
+
+E : 2.9218867396915806 V
+FC Efficiency : 0.33499777272718334
+FC Power : 254.76580615902296 W
+FC Voltage : 2.6129826272720305 V
+PH2 : 0.18348567064038768 atm
+PH2O : 0.22583919951269107 atm
+PO2 : 0.18289978423314932 atm
+Power-Thermal : 344.85919384097707 W
+###########
+I :97.6 A
+
+E : 2.9218851371639563 V
+FC Efficiency : 0.3349524429462845
+FC Power : 254.99259576614747 W
+FC Voltage : 2.6126290549810194 V
+PH2 : 0.18347162025877328 atm
+PH2O : 0.22582190591736254 atm
+PO2 : 0.182891851394951 atm
+Power-Thermal : 345.24740423385254 W
+###########
+I :97.7 A
+
+E : 2.921883534566822 V
+FC Efficiency : 0.33490711958573777
+FC Power : 255.21931955150734 W
+FC Voltage : 2.612275532768755 V
+PH2 : 0.1834575698771589 atm
+PH2O : 0.225804612322034 atm
+PO2 : 0.1828839185567527 atm
+Power-Thermal : 345.6356804484927 W
+###########
+I :97.8 A
+
+E : 2.921881931900171 V
+FC Efficiency : 0.33486180263238774
+FC Power : 255.44597752009068 W
+FC Voltage : 2.6119220605326245 V
+PH2 : 0.18344351949554452 atm
+PH2O : 0.22578731872670546 atm
+PO2 : 0.1828759857185544 atm
+Power-Thermal : 346.0240224799093 W
+###########
+I :97.9 A
+
+E : 2.921880329163998 V
+FC Efficiency : 0.3348164920731195
+FC Power : 255.67256967687555 W
+FC Voltage : 2.6115686381703322 V
+PH2 : 0.1834294691139301 atm
+PH2O : 0.22577002513137687 atm
+PO2 : 0.1828680528803561 atm
+Power-Thermal : 346.4124303231245 W
+###########
+I :98.0 A
+
+E : 2.921878726358296 V
+FC Efficiency : 0.33477118789485816
+FC Power : 255.89909602682957 W
+FC Voltage : 2.6112152655798937 V
+PH2 : 0.1834154187323157 atm
+PH2O : 0.22575273153604833 atm
+PO2 : 0.1828601200421578 atm
+Power-Thermal : 346.8009039731705 W
+###########
+I :98.1 A
+
+E : 2.9218771234830605 V
+FC Efficiency : 0.3347258900845692
+FC Power : 256.12555657491066 W
+FC Voltage : 2.61086194265964 V
+PH2 : 0.1834013683507013 atm
+PH2O : 0.2257354379407198 atm
+PO2 : 0.1828521872039595 atm
+Power-Thermal : 347.18944342508934 W
+###########
+I :98.2 A
+
+E : 2.921875520538284 V
+FC Efficiency : 0.33468059862925736
+FC Power : 256.351951326066 W
+FC Voltage : 2.610508669308208 V
+PH2 : 0.18338731796908694 atm
+PH2O : 0.22571814434539125 atm
+PO2 : 0.18284425436576118 atm
+Power-Thermal : 347.57804867393406 W
+###########
+I :98.3 A
+
+E : 2.921873917523961 V
+FC Efficiency : 0.33463531351596765
+FC Power : 256.578280285233 W
+FC Voltage : 2.6101554454245477 V
+PH2 : 0.18337326758747255 atm
+PH2O : 0.22570085075006271 atm
+PO2 : 0.18283632152756288 atm
+Power-Thermal : 347.966719714767 W
+###########
+I :98.4 A
+
+E : 2.9218723144400855 V
+FC Efficiency : 0.33459003473178406
+FC Power : 256.8045434573389 W
+FC Voltage : 2.609802270907916 V
+PH2 : 0.18335921720585815 atm
+PH2O : 0.22568355715473418 atm
+PO2 : 0.18282838868936457 atm
+Power-Thermal : 348.35545654266116 W
+###########
+I :98.5 A
+
+E : 2.9218707112866515 V
+FC Efficiency : 0.33454476226383045
+FC Power : 257.03074084730093 W
+FC Voltage : 2.6094491456578774 V
+PH2 : 0.18334516682424376 atm
+PH2O : 0.22566626355940564 atm
+PO2 : 0.18282045585116627 atm
+Power-Thermal : 348.7442591526991 W
+###########
+I :98.6 A
+
+E : 2.9218691080636527 V
+FC Efficiency : 0.3344994960992694
+FC Power : 257.2568724600261 W
+FC Voltage : 2.6090960695743015 V
+PH2 : 0.1833311164426294 atm
+PH2O : 0.2256489699640771 atm
+PO2 : 0.18281252301296796 atm
+Power-Thermal : 349.1331275399739 W
+###########
+I :98.7 A
+
+E : 2.9218675047710834 V
+FC Efficiency : 0.33445423622530285
+FC Power : 257.4829383004117 W
+FC Voltage : 2.6087430425573626 V
+PH2 : 0.183317066061015 atm
+PH2O : 0.22563167636874856 atm
+PO2 : 0.18280459017476966 atm
+Power-Thermal : 349.52206169958833 W
+###########
+I :98.8 A
+
+E : 2.9218659014089376 V
+FC Efficiency : 0.33440898262917157
+FC Power : 257.7089383733448 W
+FC Voltage : 2.6083900645075384 V
+PH2 : 0.1833030156794006 atm
+PH2O : 0.22561438277342 atm
+PO2 : 0.18279665733657136 atm
+Power-Thermal : 349.9110616266552 W
+###########
+I :98.9 A
+
+E : 2.9218642979772094 V
+FC Efficiency : 0.334363735298155
+FC Power : 257.9348726837028 W
+FC Voltage : 2.6080371353256093 V
+PH2 : 0.18328896529778624 atm
+PH2O : 0.22559708917809146 atm
+PO2 : 0.18278872449837305 atm
+Power-Thermal : 350.3001273162973 W
+###########
+I :99.0 A
+
+E : 2.921862694475892 V
+FC Efficiency : 0.33431849421957094
+FC Power : 258.1607412363527 W
+FC Voltage : 2.6076842549126535 V
+PH2 : 0.18327491491617184 atm
+PH2O : 0.22557979558276292 atm
+PO2 : 0.18278079166017475 atm
+Power-Thermal : 350.68925876364733 W
+###########
+I :99.1 A
+
+E : 2.9218610909049794 V
+FC Efficiency : 0.3342732593807759
+FC Power : 258.38654403615215 W
+FC Voltage : 2.607331423170052 V
+PH2 : 0.18326086453455745 atm
+PH2O : 0.22556250198743438 atm
+PO2 : 0.18277285882197644 atm
+Power-Thermal : 351.07845596384783 W
+###########
+I :99.2 A
+
+E : 2.9218594872644665 V
+FC Efficiency : 0.3342280307691647
+FC Power : 258.6122810879489 W
+FC Voltage : 2.6069786399994848 V
+PH2 : 0.18324681415294305 atm
+PH2O : 0.22554520839210584 atm
+PO2 : 0.18276492598377814 atm
+Power-Thermal : 351.46771891205117 W
+###########
+I :99.3 A
+
+E : 2.9218578835543463 V
+FC Efficiency : 0.3341828083721698
+FC Power : 258.8379523965804 W
+FC Voltage : 2.606625905302925 V
+PH2 : 0.1832327637713287 atm
+PH2O : 0.2255279147967773 atm
+PO2 : 0.18275699314557983 atm
+Power-Thermal : 351.8570476034196 W
+###########
+I :99.4 A
+
+E : 2.9218562797746133 V
+FC Efficiency : 0.33413759217726224
+FC Power : 259.063557966875 W
+FC Voltage : 2.6062732189826456 V
+PH2 : 0.1832187133897143 atm
+PH2O : 0.22551062120144877 atm
+PO2 : 0.18274906030738153 atm
+Power-Thermal : 352.2464420331251 W
+###########
+I :99.5 A
+
+E : 2.9218546759252617 V
+FC Efficiency : 0.33409238217195025
+FC Power : 259.28909780365063 W
+FC Voltage : 2.6059205809412123 V
+PH2 : 0.1832046630080999 atm
+PH2O : 0.22549332760612023 atm
+PO2 : 0.18274112746918322 atm
+Power-Thermal : 352.63590219634943 W
+###########
+I :99.6 A
+
+E : 2.9218530720062845 V
+FC Efficiency : 0.33404717834378006
+FC Power : 259.51457191171585 W
+FC Voltage : 2.6055679910814846 V
+PH2 : 0.18319061262648548 atm
+PH2O : 0.22547603401079164 atm
+PO2 : 0.18273319463098492 atm
+Power-Thermal : 353.0254280882842 W
+###########
+I :99.7 A
+
+E : 2.9218514680176764 V
+FC Efficiency : 0.3340019806803354
+FC Power : 259.73998029586966 W
+FC Voltage : 2.605215449306616 V
+PH2 : 0.1831765622448711 atm
+PH2O : 0.2254587404154631 atm
+PO2 : 0.18272526179278661 atm
+Power-Thermal : 353.41501970413043 W
+###########
+I :99.8 A
+
+E : 2.9218498639594315 V
+FC Efficiency : 0.3339567891692371
+FC Power : 259.96532296090095 W
+FC Voltage : 2.6048629555200495 V
+PH2 : 0.18316251186325672 atm
+PH2O : 0.22544144682013456 atm
+PO2 : 0.1827173289545883 atm
+Power-Thermal : 353.8046770390991 W
+###########
+I :99.9 A
+
+E : 2.9218482598315436 V
+FC Efficiency : 0.3339116037981434
+FC Power : 260.19059991158935 W
+FC Voltage : 2.6045105096255186 V
+PH2 : 0.18314846148164232 atm
+PH2O : 0.22542415322480602 atm
+PO2 : 0.18270939611639 atm
+Power-Thermal : 354.19440008841076 W
+###########
diff --git a/Documents/Padulles-I/PadullesI_Test.csv b/Documents/Padulles-I/PadullesI_Test.csv
new file mode 100644
index 00000000..99369a43
--- /dev/null
+++ b/Documents/Padulles-I/PadullesI_Test.csv
@@ -0,0 +1,1001 @@
+I (A),E (V),FC Efficiency (),FC Power (W),FC Voltage (V),PH2 (atm),PO2 (atm),Power-Thermal (W)
+0,54.28850557413407,None,None,None,2.169032719858579,2.0969773162414582,None
+0.1,54.288313997298886,0.3977513543332525,5.4603305922868905,54.6033059228689,2.168785433142166,2.096837698289168,5.36366940771311
+0.2,54.28812240067271,0.39750655365258875,10.913939937085477,54.56969968542738,2.1685381464257527,2.096698080336878,10.734060062914523
+0.3,54.287930784251316,0.39736185898012566,16.364950800237498,54.54983600079166,2.168290859709339,2.096558462384588,16.1070491997625
+0.4,54.28773914803044,0.3972581497084044,21.814239516787904,54.535598791969754,2.1680435729929264,2.0964188444322978,21.4817604832121
+0.5,54.28754749200584,0.3971768980805572,27.262222284249443,54.524444568498886,2.1677962862765128,2.0962792264800076,26.857777715750554
+0.6,54.28735581617328,0.3971098513395853,32.709144235138965,54.515240391898274,2.1675489995600996,2.0961396085277175,32.23485576486103
+0.7,54.287164120528516,0.3970526072135646,38.155167342794705,54.507381918278156,2.1673017128436864,2.0959999905754274,37.61283265720528
+0.8,54.28697240506729,0.39700253793845613,43.60040672655301,54.50050840819126,2.1670544261272733,2.0958603726231373,42.991593273446995
+0.9,54.286780669785365,0.39695794855256433,49.044948459566434,54.49438717729603,2.16680713941086,2.0957207546708467,48.37105154043357
+1.0,54.28658891467849,0.39691768174793257,54.48885935035618,54.48885935035618,2.166559852694447,2.0955811367185566,53.751140649643816
+1.1,54.2863971397424,0.39688091206389015,59.93219276894392,54.483811608130836,2.1663125659780333,2.095441518766267,59.13180723105608
+1.2,54.286205344972856,0.3968470300107991,65.37499233585899,54.4791602798825,2.16606527926162,2.0953019008139764,64.51300766414099
+1.3,54.286013530365594,0.3968155727355017,70.81729437266857,54.47484182512967,2.165817992545207,2.0951622828616863,69.89470562733142
+1.4,54.28582169591637,0.3967861804549145,76.25912959399092,54.470806852850664,2.165570705828794,2.095022664909396,75.27687040600905
+1.5,54.28562984162091,0.3967585679566162,81.7005243136264,54.46701620908427,2.1653234191123807,2.094883046957106,80.65947568637358
+1.6,54.28543796747497,0.39673250531602267,87.14150132765376,54.46343832978359,2.1650761323959675,2.094743429004816,86.04249867234626
+1.7,54.28524607347429,0.3967078044696878,92.58208057591786,54.46004739759874,2.164828845679554,2.094603811052526,91.42591942408212
+1.8,54.285054159614596,0.3966843096322109,98.02227964735785,54.456822026309915,2.164581558963141,2.0944641931002357,96.80972035264215
+1.9,54.284862225891644,0.3966618903075967,103.46211417271105,54.45374430142687,2.1643342722467276,2.094324575147945,102.19388582728892
+2.0,54.28467027230115,0.39664043609530514,108.90159813432699,54.450799067163494,2.1640869855303144,2.0941849571956554,107.578401865673
+2.1,54.28447829883886,0.3966198527648516,114.34074411387355,54.44797338755883,2.1638396988139013,2.094045339243365,112.96325588612645
+2.2,54.2842863055005,0.3966000592444172,119.77956349276191,54.44525613307359,2.1635924120974876,2.0939057212910748,118.34843650723809
+2.3,54.284094292281814,0.39658098527940633,125.21806661606087,54.4426376591569,2.163345125381075,2.0937661033387847,123.7339333839391
+2.4,54.28390225917852,0.3965625695896912,130.65626292785475,54.44010955327281,2.1630978386646613,2.0936264853864945,129.11973707214523
+2.5,54.28371020618635,0.3965447584032809,136.09416108400603,54.43766443360241,2.162850551948248,2.0934868674342044,134.50583891599396
+2.6,54.28351813330103,0.3965275042777518,141.5317690468494,54.435295787249764,2.162603265231835,2.0933472494819143,139.8922309531506
+2.7,54.2833260405183,0.39651076514422556,146.9690941652981,54.432997838999285,2.162355978515422,2.093207631529624,145.27890583470193
+2.8,54.28313392783386,0.3964945035252972,152.40614324306785,54.4307654439528,2.1621086917990087,2.093068013577334,150.66585675693213
+2.9,54.28294179524345,0.39647868589026086,157.84292259714354,54.428593999015014,2.1618614050825955,2.092928395625044,156.05307740285645
+3.0,54.282749642742786,0.39646328211968823,163.2794381081724,54.4264793693908,2.161614118366182,2.0927887776727534,161.4405618918276
+3.1,54.282557470327596,0.3964482650578333,168.71569526413202,54.42441782713936,2.1613668316497687,2.0926491597204633,166.828304735868
+3.2,54.282365277993584,0.39643361013612227,174.15169919835796,54.42240599948686,2.1611195449333556,2.0925095417681736,172.21630080164203
+3.3,54.282173065736494,0.39641929505459833,179.58745472281433,54.420440825095255,2.1608722582169424,2.092369923815883,177.60454527718562
+3.4,54.28198083355201,0.3964052995109346,185.02296635732776,54.41851951686111,2.1606249715005292,2.092230305863593,182.9930336426722
+3.5,54.28178858143586,0.3963916049687393,190.45823835537988,54.41663953010853,2.160377684784116,2.092090687911303,188.38176164462013
+3.6,54.281596309383765,0.39637819445850625,195.89327472694944,54.414798535263735,2.1601303980677025,2.0919510699590127,193.77072527305054
+3.7,54.281404017391424,0.39636505240584513,201.32807925881536,54.41299439427442,2.1598831113512893,2.0918114520067226,199.15992074118464
+3.8,54.28121170545457,0.3963521644826228,206.76265553266293,54.41122514017446,2.159635824634876,2.0916718340544325,204.54934446733702
+3.9,54.28101937356888,0.39633951747744234,212.1970069412828,54.40948895930328,2.159388537918463,2.0915322161021423,209.9389930587172
+4.0,54.280827021730076,0.39632709918252523,217.63113670310827,54.40778417577707,2.15914125120205,2.091392598149852,215.3288632968917
+4.1,54.280634649933866,0.3963148982945616,223.06504787529738,54.406109237877416,2.158893964485636,2.091252980197562,220.71895212470255
+4.2,54.28044225817597,0.3963029043275101,228.49874336553847,54.40446270608059,2.1586466777692235,2.0911133622452716,226.10925663446153
+4.3,54.28024984645206,0.3962911075356599,233.93222594273018,54.40284324249539,2.15839939105281,2.0909737442929814,231.49977405726978
+4.4,54.28005741475785,0.396279498845539,239.36549824666864,54.401249601515595,2.1581521043363967,2.0908341263406913,236.8905017533314
+4.5,54.279864963089054,0.3962680697954745,244.79856279685234,54.39968062152274,2.1579048176199835,2.090694508388401,242.28143720314765
+4.6,54.27967249144135,0.39625681248179695,250.23142200050498,54.398135217501085,2.1576575309035704,2.090554890436111,247.67257799949496
+4.7,54.27947999981046,0.3962457195108303,255.66407815989993,54.39661237444679,2.157410244187157,2.090415272483821,253.06392184010008
+4.8,54.27928748819207,0.39623478395593686,261.09653347906084,54.39511114147101,2.157162957470744,2.090275654531531,258.4554665209391
+4.9,54.27909495658186,0.3962239993189913,266.5287900699045,54.393630626511126,2.1569156707543304,2.0901360365792407,263.84720993009546
+5.0,54.27890240497553,0.3962133594957477,271.96084995788124,54.392169991576246,2.1566683840379173,2.0899964186269506,269.23915004211875
+5.1,54.27870983336879,0.3962028587446355,277.39271508716416,54.39072844846356,2.156421097321504,2.08985680067466,274.6312849128358
+5.2,54.278517241757314,0.39619249165858605,282.82438732543164,54.389305254890694,2.156173810605091,2.08971718272237,280.02361267456837
+5.3,54.27832463013679,0.3961822531395427,288.25586846828105,54.38789971099642,2.155926523888678,2.0895775647700803,285.4161315317189
+5.4,54.278131998502914,0.39617213837535364,293.6871602433102,54.38651115616855,2.1556792371722646,2.0894379468177897,290.8088397566898
+5.5,54.27793934685136,0.3961621428187851,299.1182643138955,54.38513896616282,2.155431950455851,2.0892983288654996,296.2017356861045
+5.6,54.27774667517782,0.39615226216842525,304.54918228269594,54.38378255048142,2.155184663739438,2.0891587109132095,301.594817717304
+5.7,54.277553983477986,0.39614249235127874,309.9799156949062,54.382441349983544,2.1549373770230247,2.0890190929609194,306.98808430509376
+5.8,54.27736127174754,0.3961328295068746,315.4104660412817,54.38111483470375,2.1546900903066115,2.0888794750086292,312.3815339587182
+5.9,54.277168539982135,0.39612326997273295,320.84083476095503,54.37980250185678,2.1544428035901984,2.088739857056339,317.775165239045
+6.0,54.27697578817749,0.396113810271053,326.2710232440609,54.37850387401016,2.1541955168737847,2.0886002391040486,323.168976755939
+6.1,54.276783016329254,0.39610444709650133,331.701032834187,54.37721849740771,2.153948230157372,2.0884606211517585,328.5629671658129
+6.2,54.2765902244331,0.39609517730499355,337.13086483066303,54.37594594042952,2.1537009434409584,2.088321003199469,333.957135169337
+6.3,54.27639741248473,0.3960859979033728,342.56052049070263,54.37468579217502,2.1534536567245453,2.0881813852471782,339.3514795092973
+6.4,54.2762045804798,0.3960769060399018,347.99000103140946,54.37343766115772,2.153206370008132,2.088041767294888,344.7459989685906
+6.5,54.27601172841398,0.39606789899549155,353.41930763165703,54.37220117410108,2.152959083291719,2.087902149342598,350.14069236834297
+6.6,54.27581885628293,0.3960589741755998,358.84844143385385,54.370975974826344,2.1527117965753058,2.087762531390308,355.53555856614605
+6.7,54.27562596408236,0.3960501291027394,364.27740354560126,54.369761723224066,2.1524645098588926,2.0876229134380178,360.9305964543987
+6.8,54.275433051807894,0.39604136140953994,369.7061950412512,54.36855809430165,2.152217223142479,2.0874832954857276,366.32580495874873
+6.9,54.27524011945521,0.396032668832318,375.13481696337425,54.367364777300615,2.151969936426066,2.0873436775334375,371.72118303662575
+7.0,54.27504716701999,0.3960240492051086,380.5632703241412,54.36618147487731,2.1517226497096527,2.0872040595811474,377.1167296758588
+7.1,54.27485419449788,0.39601550045412026,385.9915561066256,54.36500790234163,2.1514753629932395,2.0870644416288573,382.5124438933744
+7.2,54.27466120188455,0.3960070205925784,391.419675266034,54.36384378694917,2.1512280762768263,2.0869248236765667,387.90832473396597
+7.3,54.27446818917565,0.39599860771592377,396.8476287308667,54.362688867242014,2.150980789560413,2.0867852057242766,393.30437126913324
+7.4,54.27427515636685,0.3959902599973375,402.27541740401534,54.3615428924345,2.1507335028439996,2.0866455877719865,398.70058259598466
+7.5,54.27408210345381,0.39598197568356786,407.70304216380146,54.360405621840194,2.1504862161275864,2.0865059698196964,404.0969578361985
+7.6,54.27388903043216,0.3959737530910308,413.13050386495894,54.3592768243367,2.1502389294111732,2.0863663518674063,409.49349613504097
+7.7,54.27369593729759,0.39596559060216824,418.55780333956557,54.35815627786565,2.14999164269476,2.086226733915116,414.8901966604344
+7.8,54.27350282404573,0.39595748666203945,423.98494139792524,54.35704376896478,2.149744355978347,2.086087115962826,420.2870586020747
+7.9,54.27330969067225,0.39594943977513053,429.4119188294064,54.35593909232992,2.1494970692619333,2.085947498010536,425.68408117059363
+8.0,54.273116537172776,0.3959414485023632,434.8387364032354,54.35484205040442,2.1492497825455206,2.085807880058246,431.0812635967646
+8.1,54.27292336354297,0.3959335114582917,440.26539486925367,54.353752452994286,2.149002495829107,2.0856682621059552,436.47860513074625
+8.2,54.27273016977849,0.3959256273084696,445.6918949586349,54.3526701169067,2.148755209112694,2.085528644153665,441.87610504136495
+8.3,54.27253695587497,0.3959177947669765,451.1182373845676,54.351594865610544,2.1485079223962806,2.0853890262013755,447.2737626154325
+8.4,54.27234372182806,0.39591001259409475,456.5444228429056,54.35052652891733,2.1482606356798675,2.085249408249085,452.6715771570944
+8.5,54.27215046763339,0.39590227959412055,461.9704520127874,54.34946494268087,2.1480133489634543,2.0851097902967948,458.06954798721256
+8.6,54.2719571932866,0.39589459461330556,467.3963255572255,54.34840994851459,2.147766062247041,2.0849701723445047,463.4676744427744
+8.7,54.271763898783355,0.39588695653791695,472.82204412366957,54.34736139352524,2.1475187755306275,2.0848305543922145,468.8659558763303
+8.8,54.27157058411928,0.39587936429240733,478.2476083445428,54.34631913006168,2.1472714888142144,2.0846909364399244,474.2643916554572
+8.9,54.27137724929001,0.39587181683768885,483.67301883775355,54.345283015477925,2.147024202097801,2.0845513184876343,479.66298116224647
+9.0,54.271183894291184,0.39586431316950405,489.0982762071857,54.34425291190952,2.146776915381388,2.084411700535344,485.0617237928143
+9.1,54.270990519118435,0.3958568523168863,494.5233810431655,54.34322868606215,2.146529628664975,2.084272082583054,490.46061895683437
+9.2,54.270797123767395,0.39584943334070355,499.9483339229084,54.34221020901178,2.1462823419485617,2.084132464630764,495.8596660770915
+9.3,54.27060370823369,0.3958420553322827,505.37313541094676,54.341197356015776,2.146035055232148,2.0839928466784734,501.25886458905325
+9.4,54.27041027251297,0.39583471741210624,510.79778605953913,54.34019000633395,2.145787768515735,2.0838532287261833,506.6582139404609
+9.5,54.27021681660084,0.39582741872857735,516.2222864090614,54.3391880430591,2.1455404817993218,2.083713610773893,512.0577135909384
+9.6,54.27002334049294,0.3958201584568512,521.6466369883827,54.338191352956535,2.1452931950829086,2.083573992821603,517.4573630116172
+9.7,54.26982984418489,0.3958129357977258,527.0708383152245,54.3371998263118,2.1450459083664954,2.083434374869313,522.8571616847754
+9.8,54.26963632767231,0.3958057499765897,532.4948908965051,54.33621335678623,2.144798621650082,2.083294756917023,528.2571091034949
+9.9,54.26944279095084,0.39579860024242375,537.9187952286713,54.33523184127993,2.144551334933669,2.0831551389647327,533.6572047713287
+10.0,54.26924923401609,0.39579148586685203,543.3425517980145,54.33425517980145,2.1443040482172555,2.0830155210124426,539.0574482019854
+10.1,54.26905565686368,0.39578440614324145,548.7661610809763,54.333283275344186,2.1440567615008423,2.0828759030601525,544.4578389190236
+10.2,54.26886205948923,0.39577736038584393,554.1896235444402,54.332316033768656,2.143809474784429,2.082736285107862,549.8583764555597
+10.3,54.26866844188835,0.3957703479289819,559.6129396460136,54.33135336369064,2.143562188068016,2.082596667155572,555.2590603539865
+10.4,54.268474804056666,0.3957633681262726,565.0361098342969,54.3303951763747,2.143314901351603,2.082457049203282,560.6598901657031
+10.5,54.26828114598979,0.39575642034988906,570.4591345491442,54.32944138563278,2.1430676146351897,2.0823174312509916,566.0608654508558
+10.6,54.268087467683316,0.3957495039898572,575.8820142219125,54.3284919077276,2.142820327918776,2.0821778132987014,571.4619857780873
+10.7,54.26789376913289,0.39574261845338476,581.3047492757031,54.327546661280664,2.142573041202363,2.0820381953464113,576.8632507242968
+10.8,54.2677000503341,0.39573576316422193,586.7273401255915,54.32660556718439,2.1423257544859498,2.081898577394121,582.2646598744086
+10.9,54.26750631128255,0.3957289375620519,592.1497871788515,54.325668548518486,2.1420784677695366,2.081758959441831,587.6662128211485
+11.0,54.267312551973845,0.3957221411019082,597.5720908351695,54.32473553046996,2.1418311810531234,2.081619341489541,593.0679091648304
+11.1,54.267118772403606,0.39571537325361983,602.9942514868519,54.32380644025693,2.14158389433671,2.0814797235372504,598.469748513148
+11.2,54.26692497256744,0.3957086335012797,608.4162695190237,54.32288120705569,2.1413366076202967,2.0813401055849603,603.8717304809762
+11.3,54.26673115246092,0.3957019213427378,613.8381453098209,54.32195976193105,2.1410893209038835,2.0812004876326706,609.2738546901792
+11.4,54.266537312079684,0.39569523628911635,619.2598792305768,54.32104203776989,2.1408420341874703,2.08106086968038,614.6761207694232
+11.5,54.26634345141929,0.39568857786434586,624.6814716460001,54.320127969217396,2.140594747471057,2.08092125172809,620.0785283539999
+11.6,54.26614957047538,0.39568194560472203,630.1029229143485,54.31921749261625,2.140347460754644,2.0807816337758,625.4810770856515
+11.7,54.26595566924352,0.3956753390584808,635.5242333875944,54.31831054594824,2.1401001740382304,2.0806420158235097,630.8837666124055
+11.8,54.2657617477193,0.3956687577853919,640.9454034115876,54.3174070687786,2.1398528873218177,2.0805023978712196,636.2865965884125
+11.9,54.26556780589835,0.39566220135636965,646.366433326209,54.31650700220243,2.139605600605404,2.0803627799189295,641.6895666737911
+12.0,54.265373843776224,0.3956556693530998,651.7873234655225,54.31561028879354,2.139358313888991,2.0802231619666394,647.0926765344774
+12.1,54.26517986134853,0.3956491613676821,657.2080741579202,54.314716872555394,2.1391110271725777,2.0800835440143493,652.4959258420796
+12.2,54.26498585861086,0.3956426770022871,662.6286857262625,54.313826698873974,2.1388637404561646,2.079943926062059,657.8993142737374
+12.3,54.264791835558796,0.3956362158688277,668.0491584880139,54.31293971447267,2.1386164537397514,2.0798043081097686,663.3028415119861
+12.4,54.26459779218792,0.39562977758864354,673.4694927553755,54.31205586736899,2.1383691670233382,2.0796646901574785,668.7065072446245
+12.5,54.26440372849381,0.3956233617921977,678.8896888354112,54.3111751068329,2.1381218803069246,2.079525072205189,674.1103111645887
+12.6,54.264209644472075,0.3956169681187866,684.3097470301724,54.31029738334702,2.1378745935905115,2.0793854542528982,679.5142529698275
+12.7,54.26401554011828,0.39561059621626,689.7296676368157,54.30942264856817,2.1376273068740983,2.079245836300608,684.918332363184
+12.8,54.263821415428,0.39560424574075304,695.1494509477194,54.30855085529058,2.137380020157685,2.079106218348318,690.3225490522806
+12.9,54.263627270396825,0.3955979163564283,700.5690972505952,54.30768195741048,2.137132733441272,2.078966600396028,695.7269027494048
+13.0,54.263433105020326,0.39559160773522783,705.9886068285971,54.30681590989208,2.1368854467248584,2.0788269824437378,701.1313931714029
+13.1,54.26323891929408,0.3955853195566345,711.4079799604257,54.30595266873478,2.136638160008445,2.0786873644914476,706.5360200395743
+13.2,54.26304471321367,0.39557905150744266,716.8272169204308,54.30509219094173,2.136390873292032,2.078547746539157,711.9407830795691
+13.3,54.262850486774646,0.39557280328153777,722.2463179787105,54.30423443448951,2.136143586575619,2.078408128586867,717.3456820212895
+13.4,54.26265623997261,0.39556657457968364,727.6652834012062,54.30337935829897,2.1358962998592057,2.0782685106345773,722.7507165987938
+13.5,54.2624619728031,0.3955603651093175,733.0841134497961,54.302526922207115,2.1356490131427925,2.0781288926822867,728.1558865502038
+13.6,54.26226768526171,0.395554174584354,738.5028083823855,54.30167708694012,2.135401726426379,2.0779892747299966,733.5611916176143
+13.7,54.262073377343995,0.39554800272499413,743.9213684529947,54.3008298140872,2.135154439709966,2.0778496567777065,738.9666315470052
+13.8,54.261879049045525,0.39554184925754354,749.339793911843,54.29998506607558,2.1349071529935526,2.0777100388254164,744.372206088157
+13.9,54.261684700361855,0.3955357139142353,754.7580850054325,54.29914280614622,2.1346598662771394,2.0775704208731263,749.7779149945675
+14.0,54.26149033128855,0.3955295964330603,760.1762419766272,54.29830299833052,2.1344125795607263,2.077430802920836,755.1837580233727
+14.1,54.261295941821174,0.3955234965576036,765.5942650647323,54.297465607427824,2.134165292844313,2.077291184968546,760.5897349352675
+14.2,54.261101531955305,0.395517414036886,771.0121545055687,54.29663059898371,2.1339180061279,2.077151567016256,765.9958454944311
+14.3,54.26090710168646,0.395511348625211,776.4299105315463,54.295797939268965,2.133670719411487,2.077011949063966,771.4020894684537
+14.4,54.26071265101024,0.3955053000820185,781.847533371737,54.29496759525951,2.133423432695073,2.0768723311116752,776.8084666282631
+14.5,54.26051817992216,0.395499268171742,787.2650232519428,54.29413953461675,2.13317614597866,2.076732713159385,782.2149767480571
+14.6,54.26032368841779,0.39549325266367136,792.6823803947646,54.2933137256688,2.132928859262247,2.0765930952070955,787.6216196052354
+14.7,54.260129176492704,0.39548725333182033,798.0996050196668,54.2924901373923,2.1326815725458337,2.076453477254805,793.0283949803331
+14.8,54.25993464414242,0.3954812699547984,803.516697343042,54.29166873939472,2.1324342858294205,2.0763138593025148,798.435302656958
+14.9,54.259740091362495,0.39547530231568684,808.9336575782727,54.2908495018975,2.132186999113007,2.0761742413502247,803.8423424217273
+15.0,54.259545518148485,0.3954693502019196,814.3504859357928,54.29003239571952,2.1319397123965937,2.0760346233979345,809.2495140642071
+15.1,54.259350924495934,0.39546341340516683,819.7671826231457,54.28921739226131,2.1316924256801806,2.0758950054456444,814.6568173768542
+15.2,54.259156310400385,0.39545749172122363,825.1837478450416,54.28840446348958,2.1314451389637674,2.0757553874933543,820.0642521549584
+15.3,54.25896167585738,0.3954515849499015,830.600181803414,54.28759358192248,2.1311978522473543,2.0756157695410637,825.471818196586
+15.4,54.25876702086246,0.39544569289492404,836.0164846974737,54.286784720615174,2.130950565530941,2.0754761515887736,830.8795153025262
+15.5,54.25857234541116,0.3954398153638254,841.4326567237621,54.285977853145944,2.1307032788145275,2.075336533636484,836.2873432762378
+15.6,54.25837764949904,0.3954339521678521,846.8486980762027,54.28517295360274,2.1304559920981148,2.0751969156841934,841.6953019237972
+15.7,54.2581829331216,0.39542810312186866,852.264608946151,54.284369996570135,2.130208705381701,2.0750572977319033,847.1033910538488
+15.8,54.25798819627442,0.3954222680442653,857.6803895224444,54.283568957116735,2.129961418665288,2.074917679779613,852.5116104775556
+15.9,54.257793438953,0.3954164467568688,863.096039991449,54.28276981078295,2.129714131948875,2.074778061827323,857.919960008551
+16.0,54.25759866115288,0.3954106390848571,868.5115605371069,54.28197253356918,2.1294668452324617,2.074638443875033,863.328439462893
+16.1,54.257403862869616,0.3954048448566748,873.9269513409816,54.28117710192432,2.1292195585160485,2.074498825922743,868.7370486590185
+16.2,54.2572090440987,0.395399063903953,879.3422125823015,54.280383492734664,2.1289722717996353,2.0743592079704527,874.1457874176983
+16.3,54.25701420483567,0.3953932960614303,884.7573444380043,54.27959168331315,2.1287249850832217,2.0742195900181626,879.5546555619956
+16.4,54.25681934507607,0.39538754116687735,890.1723470827783,54.278801651388925,2.1284776983668086,2.0740799720658725,884.9636529172215
+16.5,54.25662446481542,0.3953817990610228,895.5872206891038,54.2780133750972,2.1282304116503954,2.073940354113582,890.372779310896
+16.6,54.25642956404922,0.3953760695874814,901.0019654272929,54.27722683296945,2.1279831249339822,2.073800736161292,895.7820345727072
+16.7,54.25623464277302,0.39537035259268566,906.4165814655289,54.27644200392389,2.127735838217569,2.0736611182090017,901.1914185344709
+16.8,54.256039700982335,0.3953646479258177,911.8310689699051,54.275658867256254,2.1274885515011555,2.0735215002567116,906.6009310300949
+16.9,54.255844738672685,0.3953589554387444,917.2454281044609,54.27487740263083,2.1272412647847423,2.0733818823044214,912.0105718955389
+17.0,54.25564975583957,0.3953532749859535,922.6596590312189,54.2740975900717,2.126993978068329,2.0732422643521313,917.420340968781
+17.1,54.25545475247852,0.395347606424493,928.0737619102204,54.273319409954404,2.126746691351916,2.073102646399841,922.8302380897796
+17.2,54.25525972858506,0.39534194961391095,933.4877368995604,54.2725428429977,2.126499404635503,2.072963028447551,928.2402631004394
+17.3,54.255064684154675,0.39533630441619705,938.9015841554207,54.27176787025553,2.1262521179190896,2.072823410495261,933.6504158445792
+17.4,54.254869619182905,0.39533067069572725,944.3153038321042,54.27099447310944,2.126004831202676,2.0726837925429704,939.0606961678956
+17.5,54.25467453366524,0.3953250483192084,949.7288960820663,54.27022263326093,2.1257575444862633,2.0725441745906803,944.4711039179336
+17.6,54.2544794275972,0.3953194371556253,955.1423610559467,54.26945233272424,2.1255102577698497,2.0724045566383906,949.8816389440533
+17.7,54.25428430097429,0.39531383707618917,960.5556989026007,54.26868355381925,2.1252629710534365,2.0722649386861,955.2923010973991
+17.8,54.254089153792,0.3953082479542874,965.9689097691294,54.26791627916457,2.1250156843370234,2.07212532073381,960.7030902308707
+17.9,54.25389398604587,0.39530266966543465,971.3819938009085,54.26715049167087,2.12476839762061,2.07198570278152,966.1140061990912
+18.0,54.25369879773137,0.3952971020872258,976.7949511416184,54.266386174534354,2.124521110904197,2.0718460848292297,971.5250488583815
+18.1,54.25350358884401,0.3952915450992895,982.2077819332715,54.26562331123046,2.124273824187784,2.0717064668769396,976.9362180667285
+18.2,54.25330835937929,0.39528599858324337,987.6204863162392,54.26486188550765,2.1240265374713703,2.0715668489246495,982.3475136837607
+18.3,54.253113109332716,0.39528046242265075,993.0330644292814,54.26410188138149,2.123779250754957,2.071427230972359,987.7589355707187
+18.4,54.25291783869977,0.3952749365029779,998.44551640957,54.26334328312881,2.123531964038544,2.0712876130200693,993.1704835904297
+18.5,54.252722547475955,0.3952694207115529,1003.8578423927166,54.26258607528198,2.1232846773221308,2.071147995067779,998.5821576072833
+18.6,54.252527235656764,0.39526391493752544,1009.2700425127971,54.261830242623496,2.1230373906057176,2.0710083771154886,1003.9939574872029
+18.7,54.25233190323769,0.39525841907182807,1014.6821169023765,54.26107577018056,2.122790103889304,2.0708687591631985,1009.4058830976234
+18.8,54.25213655021422,0.39525293300713754,1020.0940656925331,54.260322643219844,2.122542817172891,2.0707291412109083,1014.8179343074669
+18.9,54.25194117658184,0.3952474566378384,1025.5058890128823,54.25957084724245,2.1222955304564777,2.0705895232586182,1020.2301109871175
+19.0,54.25174578233606,0.39524198985998665,1030.9175869916005,54.25882036797897,2.1220482437400645,2.070449905306328,1025.6424130083994
+19.1,54.251550367472326,0.39523653257127445,1036.329159755445,54.25807119138455,2.1218009570236513,2.070310287354038,1031.054840244555
+19.2,54.25135493198616,0.3952310846709965,1041.7406074297805,54.2573233036344,2.121553670307238,2.070170669401748,1036.4673925702193
+19.3,54.25115947587302,0.39522564606001637,1047.1519301385977,54.25657669111905,2.1213063835908246,2.0700310514494578,1041.8800698614023
+19.4,54.2509639991284,0.395220216640734,1052.5631280045352,54.25583134043996,2.121059096874412,2.0698914334971676,1047.2928719954646
+19.5,54.25076850174777,0.39521479631705414,1057.9742011489013,54.255087238405196,2.1208118101579982,2.069751815544877,1052.7057988510985
+19.6,54.25057298372662,0.395209384994356,1063.3851496916939,54.254344372025194,2.120564523441585,2.069612197592587,1058.1188503083063
+19.7,54.25037744506042,0.3952039825794626,1068.7959737516198,54.253602728508625,2.120317236725172,2.0694725796402973,1063.53202624838
+19.8,54.25018188574465,0.39519858898061183,1074.2066734461162,54.25286229525839,2.1200699500087588,2.0693329616880067,1068.945326553884
+19.9,54.24998630577477,0.39519320410742786,1079.6172488913671,54.2521230598677,2.1198226632923456,2.0691933437357166,1074.3587511086325
+20.0,54.24979070514627,0.3951878278708936,1085.0277002023256,54.25138501011628,2.1195753765759324,2.0690537257834265,1079.7722997976743
+20.1,54.249595083854615,0.3951824601833235,1090.4380274927298,54.25064813396665,2.119328089859519,2.0689141078311364,1085.1859725072704
+20.2,54.24939944189526,0.39517710095833636,1095.8482308751204,54.24991241956042,2.1190808031431057,2.0687744898788463,1090.5997691248795
+20.3,54.249203779263695,0.39517175011083105,1101.258310460862,54.24917785521488,2.1188335164266925,2.068634871926556,1096.0136895391379
+20.4,54.24900809595536,0.39516640755695975,1106.6682663601564,54.248444429419436,2.1185862297102793,2.0684952539742656,1101.4277336398434
+20.5,54.24881239196575,0.39516107321410493,1112.0780986820628,54.247712130832326,2.118338942993866,2.0683556360219755,1106.8419013179373
+20.6,54.24861666729031,0.39515574700085404,1117.4878075345114,54.24698094827725,2.1180916562774526,2.068216018069686,1112.2561924654888
+20.7,54.2484209219245,0.39515042883697715,1122.8973930243226,54.246250870740226,2.1178443695610394,2.0680764001173952,1117.6706069756772
+20.8,54.248225155863786,0.3951451186434038,1128.3068552572227,54.24552188736647,2.117597082844626,2.067936782165105,1123.0851447427774
+20.9,54.24802936910361,0.3951398163422004,1133.716194337857,54.24479398745727,2.117349796128213,2.067797164212815,1128.4998056621428
+21.0,54.24783356163947,0.3951345218565494,1139.1254103698093,54.244067160467104,2.1171025094118,2.067657546260525,1133.9145896301907
+21.1,54.247637733466775,0.3951292351107273,1144.5345034556135,54.24334139600064,2.1168552226953867,2.0675179283082348,1139.3294965443865
+21.2,54.24744188458101,0.3951239560300841,1149.9434736967708,54.24261668380994,2.116607935978973,2.0673783103559447,1144.7445263032291
+21.3,54.2472460149776,0.3951186845410233,1155.3523211937627,54.241893013791675,2.1163606492625604,2.0672386924036545,1150.1596788062373
+21.4,54.24705012465202,0.39511342057098225,1160.7610460460671,54.241170375984446,2.116113362546147,2.0670990744513644,1155.5749539539327
+21.5,54.24685421359971,0.3951081640484125,1166.1696483521705,54.24044876056607,2.1158660758297336,2.0669594564990743,1160.9903516478294
+21.6,54.24665828181612,0.39510291490276117,1171.578128209583,54.239728157851054,2.1156187891133205,2.0668198385467837,1166.4058717904172
+21.7,54.24646232929669,0.39509767306445276,1176.9864857148511,54.23900855828808,2.1153715023969073,2.0666802205944936,1171.8215142851486
+21.8,54.24626635603686,0.3950924384648707,1182.3947209635724,54.23828995245744,2.115124215680494,2.066540602642204,1177.2372790364277
+21.9,54.2460703620321,0.39508721103634015,1187.802834050406,54.237572331068776,2.114876928964081,2.0664009846899134,1182.6531659495936
+22.0,54.24587434727782,0.39508199071211086,1193.210825069089,54.236855684958584,2.1146296422476674,2.0662613667376233,1188.069174930911
+22.1,54.24567831176948,0.3950767774263403,1198.6186941124447,54.236140005088,2.114382355531254,2.066121748785333,1193.4853058875553
+22.2,54.24548225550251,0.395071571114077,1204.0264412723989,54.23542528254049,2.114135068814841,2.065982130833043,1198.901558727601
+22.3,54.24528617847235,0.395066371711245,1209.4340666399896,54.234711508519716,2.113887782098428,2.065842512880753,1204.3179333600103
+22.4,54.245090080674416,0.3950611791546279,1214.84157030538,54.23399867434732,2.1136404953820147,2.065702894928463,1209.7344296946198
+22.5,54.24489396210418,0.3950559933818539,1220.2489523578702,54.2332867714609,2.113393208665601,2.0655632769761723,1215.1510476421297
+22.6,54.24469782275704,0.3950508143313798,1225.6562128859073,54.23257579141182,2.113145921949188,2.065423659023882,1220.5677871140929
+22.7,54.24450166262845,0.395045641942478,1231.0633519770986,54.23186572586338,2.1128986352327748,2.0652840410715925,1225.9846480229012
+22.8,54.24430548171382,0.3950404761552206,1236.4703697182222,54.23115656658869,2.1126513485163616,2.065144423119302,1231.401630281778
+22.9,54.24410928000859,0.39503531691046634,1241.877266195236,54.23044830546882,2.1124040617999484,2.065004805167012,1236.818733804764
+23.0,54.24391305750819,0.3950301641498466,1247.2840414932916,54.22974093449094,2.1121567750835353,2.0648651872147217,1242.2359585067081
+23.1,54.24371681420803,0.3950250178157519,1252.6906956967425,54.22903444574642,2.1119094883671217,2.0647255692624316,1247.6533043032575
+23.2,54.24352055010354,0.39501987785131887,1258.0972288891542,54.22832883142906,2.111662201650709,2.0645859513101414,1253.0707711108457
+23.3,54.24332426519014,0.39501474420041754,1263.5036411533165,54.22762408383332,2.1114149149342953,2.0644463333578513,1258.4883588466835
+23.4,54.24312795946326,0.39500961680763874,1268.9099325712516,54.22692019535264,2.111167628217882,2.0643067154055608,1263.906067428748
+23.5,54.2429316329183,0.39500449561828127,1274.316103224225,54.22621715847765,2.110920341501469,2.064167097453271,1269.323896775775
+23.6,54.242735285550694,0.3949993805783409,1279.7221531927535,54.22551496579464,2.110673054785056,2.064027479500981,1274.7418468072465
+23.7,54.242538917355844,0.3949942716344977,1285.128082556617,54.22481360998384,2.1104257680686427,2.0638878615486904,1280.1599174433827
+23.8,54.242342528329175,0.3949891687341048,1290.5338913948663,54.224113083817905,2.1101784813522295,2.0637482435964003,1285.5781086051338
+23.9,54.24214611846609,0.39498407182517725,1295.939579785832,54.22341338016034,2.109931194635816,2.0636086256441106,1290.9964202141678
+24.0,54.241949687761995,0.3949789808563809,1301.3451478071352,54.22271449196397,2.1096839079194027,2.06346900769182,1296.4148521928646
+24.1,54.24175323621232,0.39497389577702136,1306.7505955356949,54.22201641226949,2.1094366212029896,2.06332938973953,1301.8334044643052
+24.2,54.241556763812454,0.39496881653703353,1312.155923047736,54.221319134203966,2.1091893344865764,2.06318977178724,1307.252076952264
+24.3,54.241360270557806,0.3949637430869715,1317.5611304188008,54.22062265097945,2.1089420477701633,2.0630501538349497,1312.6708695811992
+24.4,54.24116375644378,0.39495867537799784,1322.9662177237535,54.219926955891545,2.1086947610537496,2.0629105358826596,1318.089782276246
+24.5,54.240967221465795,0.3949536133618742,1328.3711850367931,54.21923204231809,2.1084474743373365,2.0627709179303695,1323.5088149632068
+24.6,54.24077066561922,0.394948556990951,1333.7760324314568,54.21853790371775,2.1082001876209233,2.062631299978079,1328.9279675685432
+24.7,54.240574088899486,0.3949435062181584,1339.180759980631,54.217844533628785,2.10795290090451,2.062491682025789,1334.3472400193689
+24.8,54.240377491301984,0.39493846099699664,1344.585367756559,54.2171519256677,2.107705614188097,2.062352064073499,1339.7666322434409
+24.9,54.240180872822094,0.39493342128152675,1349.989855830847,54.216460073528,2.107458327471684,2.0622124461212086,1345.1861441691526
+25.0,54.239984233455225,0.3949283870263619,1355.394224274474,54.215768970978964,2.10721104075527,2.0620728281689185,1350.6057757255257
+25.1,54.23978757319676,0.39492335818665825,1360.7984731577978,54.21507861186445,2.1069637540388575,2.0619332102166283,1356.0255268422022
+25.2,54.23959089204211,0.3949183347181069,1366.2026025505631,54.21438899010171,2.106716467322444,2.0617935922643382,1361.4453974494368
+25.3,54.23939418998665,0.3949133165769242,1371.606612521908,54.21370009968015,2.1064691806060307,2.061653974312048,1366.865387478092
+25.4,54.23919746702576,0.3949083037198448,1377.0105031403716,54.2130119346603,2.1062218938896176,2.061514356359758,1372.2854968596282
+25.5,54.239000723154845,0.39490329610411307,1382.4142744739024,54.212324489172644,2.1059746071732044,2.0613747384074674,1377.7057255260975
+25.6,54.238803958369296,0.39489829368747464,1387.8179265898632,54.211637757416526,2.1057273204567912,2.0612351204551778,1383.126073410137
+25.7,54.23860717266447,0.394893296428169,1393.2214595550374,54.210951733659044,2.105480033740378,2.0610955025028876,1388.5465404449624
+25.8,54.23841036603577,0.39488830428492194,1398.6248734356393,54.210266412234084,2.1052327470239645,2.060955884550597,1393.9671265643606
+25.9,54.23821353847858,0.39488331721693776,1404.0281682973173,54.20958178754121,2.1049854603075513,2.060816266598307,1399.3878317026824
+26.0,54.238016689988264,0.39487833518389176,1409.4313442051612,54.208897854044665,2.104738173591138,2.060676648646017,1404.8086557948386
+26.1,54.23781982056021,0.39487335814592384,1414.8344012237105,54.20821460627243,2.104490886874725,2.0605370306937267,1410.2295987762895
+26.2,54.237622930189794,0.3948683860636301,1420.2373394169567,54.207532038815145,2.104243600158312,2.0603974127414366,1415.650660583043
+26.3,54.237426018872384,0.39486341889805704,1425.6401588483545,54.206850146325266,2.103996313441898,2.0602577947891465,1421.0718411516455
+26.4,54.23722908660335,0.3948584566106939,1431.0428595808241,54.20616892351607,2.103749026725485,2.0601181768368564,1426.4931404191757
+26.5,54.23703213337809,0.3948534991634669,1436.4454416767596,54.20548836516074,2.103501740009072,2.0599785588845663,1431.9145583232403
+26.6,54.23683515919194,0.39484854651873147,1441.8479051980328,54.20480846609146,2.1032544532926587,2.059838940932276,1437.3360948019672
+26.7,54.23663816404028,0.3948435986392666,1447.2502502060004,54.20412922119852,2.1030071665762455,2.0596993229799856,1442.7577497939992
+26.8,54.236441147918484,0.39483865548826846,1452.6524767615106,54.2034506254295,2.1027598798598324,2.0595597050276955,1448.1795232384893
+26.9,54.236244110821914,0.39483371702934406,1458.0545849249065,54.20277267378835,2.1025125931434188,2.059420087075406,1453.6014150750932
+27.0,54.23604705274593,0.39482878322650494,1463.4565747560341,54.2020953613346,2.102265306427006,2.0592804691231152,1459.0234252439657
+27.1,54.2358499736859,0.39482385404416154,1468.8584463142456,54.201418683182496,2.1020180197105924,2.059140851170825,1464.4455536857542
+27.2,54.23565287363718,0.39481892944711705,1474.2601996584062,54.20074263450023,2.1017707329941793,2.059001233218535,1469.8678003415935
+27.3,54.23545575259513,0.39481400940056205,1479.6618348469,54.20006721050916,2.101523446277766,2.058861615266245,1475.2901651531
+27.4,54.23525861055511,0.3948090938700682,1485.0633519376331,54.199392406482964,2.101276159561353,2.0587219973139548,1480.7126480623665
+27.5,54.23506144751246,0.3948041828215832,1490.4647509880408,54.198718217746936,2.1010288728449398,2.0585823793616647,1486.135249011959
+27.6,54.23486426346255,0.3947992762214252,1495.8660320550923,54.198044639677256,2.1007815861285266,2.058442761409374,1491.5579679449077
+27.7,54.23466705840074,0.3947943740362776,1501.2671951952952,54.19737166770019,2.100534299412113,2.058303143457084,1496.9808048047046
+27.8,54.23446983232236,0.3947894762331831,1506.6682404647001,54.196699297291374,2.1002870126957,2.0581635255047943,1502.4037595352997
+27.9,54.23427258522277,0.3947845827795395,1512.0691679189074,54.19602752397518,2.1000397259792867,2.0580239075525038,1507.826832081092
+28.0,54.234075317097314,0.3947796936430939,1517.4699776130701,54.19535634332394,2.0997924392628735,2.0578842896002136,1513.2500223869297
+28.1,54.23387802794135,0.39477480879193827,1522.8706696018999,54.19468575095729,2.0995451525464603,2.0577446716479235,1518.6733303981
+28.2,54.23368071775022,0.3947699281945041,1528.271243939671,54.194015742541524,2.0992978658300467,2.0576050536956334,1524.0967560603287
+28.3,54.23348338651925,0.3947650518195574,1533.6717006802244,54.193346313788844,2.0990505791136336,2.0574654357433433,1529.5202993197756
+28.4,54.2332860342438,0.394760179636195,1539.0720398769745,54.19267746045685,2.0988032923972204,2.057325817791053,1534.9439601230254
+28.5,54.2330886609192,0.39475531161383876,1544.4722615829119,54.19200917834779,2.0985560056808072,2.057186199838763,1540.3677384170878
+28.6,54.23289126654079,0.3947504477222315,1549.8723658506071,54.19134146330794,2.098308718964394,2.057046581886473,1545.7916341493928
+28.7,54.2326938511039,0.39474558793143266,1555.272352732217,54.19067431122708,2.098061432247981,2.056906963934183,1551.2156472677827
+28.8,54.232496414603894,0.39474073221181394,1560.6722222794892,54.19000771803782,2.0978141455315673,2.0567673459818923,1556.6397777205107
+28.9,54.232298957036065,0.3947358805340541,1566.071974543762,54.18934167971495,2.0975668588151546,2.056627728029602,1562.0640254562377
+29.0,54.23210147839577,0.39473103286913613,1571.4716095759752,54.188676192275004,2.097319572098741,2.0564881100773125,1567.4883904240248
+29.1,54.23190397867833,0.39472618918834185,1576.871127426669,54.18801125177557,2.097072285382328,2.056348492125022,1572.9128725733308
+29.2,54.231706457879085,0.39472134946324844,1582.2705281459905,54.18734685431475,2.0968249986659147,2.056208874172732,1578.3374718540092
+29.3,54.23150891599336,0.39471651366572424,1587.6698117836975,54.186682996030626,2.0965777119495015,2.0560692562204417,1583.7621882163025
+29.4,54.23131135301646,0.3947116817679247,1593.0689783891607,54.18601967310071,2.0963304252330883,2.0559296382681516,1589.1870216108389
+29.5,54.23111376894373,0.3947068537422887,1598.468028011371,54.18535688174139,2.0960831385166747,2.0557900203158614,1594.6119719886287
+29.6,54.23091616377049,0.3947020295615344,1603.8669606989404,54.184694618207445,2.0958358518002616,2.0556504023635713,1600.0370393010596
+29.7,54.23071853749206,0.39469720919865575,1609.2657765001065,54.18403287879147,2.0955885650838484,2.0555107844112808,1605.462223499893
+29.8,54.23052089010375,0.3946923926269187,1614.6644754627373,54.1833716598234,2.0953412783674352,2.0553711664589907,1610.8875245372626
+29.9,54.23032322160089,0.3946875798198574,1620.063057634334,54.18271095767003,2.095093991651022,2.055231548506701,1616.3129423656658
+30.0,54.230125531978786,0.39468277075127095,1625.4615230620343,54.18205076873448,2.094846704934609,2.0550919305544104,1621.7384769379655
+30.1,54.22992782123276,0.3946779653952194,1630.8598717926172,54.18139108945572,2.0945994182181953,2.0549523126021203,1627.1641282073826
+30.2,54.22973008935812,0.3946731637260208,1636.258103872506,54.18073191630814,2.094352131501782,2.05481269464983,1632.589896127494
+30.3,54.22953233635018,0.39466836571824754,1641.656219347771,54.18007324580102,2.094104844785369,2.05467307669754,1638.015780652229
+30.4,54.229334562204244,0.3946635713467227,1647.0542182641339,54.17941507447809,2.093857558068956,2.05453345874525,1643.441781735866
+30.5,54.22913676691563,0.3946587805865174,1652.4521006669718,54.17875739891711,2.0936102713525426,2.05439384079296,1648.8678993330282
+30.6,54.22893895047964,0.3946539934129472,1657.8498666013195,54.178100215729394,2.0933629846361295,2.0542542228406693,1654.2941333986805
+30.7,54.22874111289157,0.3946492098015687,1663.2475161118718,54.17744352155935,2.093115697919716,2.0541146048883796,1659.7204838881278
+30.8,54.22854325414674,0.3946444297281768,1668.6450492429908,54.17678731308411,2.092868411203303,2.0539749869360895,1665.146950757009
+30.9,54.22834537424044,0.39463965316880134,1674.0424660387032,54.17613158701305,2.0926211244868895,2.053835368983799,1670.5735339612963
+31.0,54.228147473167965,0.39463488009970427,1679.4397665427093,54.1754763400874,2.0923738377704764,2.053695751031509,1676.0002334572905
+31.1,54.22794955092463,0.3946301104973764,1684.836950798383,54.17482156907984,2.092126551054063,2.053556133079219,1681.427049201617
+31.2,54.227751607505716,0.39462534433853497,1690.2340188487753,54.17416727079408,2.09187926433765,2.0534165151269286,1686.8539811512246
+31.3,54.227553642906535,0.3946205816001198,1695.6309707366172,54.17351344206445,2.091631977621237,2.0532768971746385,1692.2810292633826
+31.4,54.22735565712236,0.3946158222592915,1701.0278065043237,54.17286007975554,2.0913846909048237,2.0531372792223483,1697.708193495676
+31.5,54.22715765014849,0.3946110662934281,1706.424526193997,54.17220718076181,2.09113740418841,2.0529976612700582,1703.135473806003
+31.6,54.226959621980235,0.3946063136801224,1711.8211298474278,54.1715547420072,2.090890117471997,2.052858043317768,1708.5628701525723
+31.7,54.22676157261285,0.3946015643971791,1717.2176175060983,54.17090276044475,2.0906428307555838,2.052718425365478,1713.9903824939013
+31.8,54.22656350204166,0.3945968184226127,1722.6139892111894,54.17025123305627,2.0903955440391706,2.0525788074131874,1719.4180107888105
+31.9,54.22636541026192,0.39459207573464383,1728.0102450035758,54.16960015685191,2.0901482573227574,2.0524391894608973,1724.845754996424
+32.0,54.22616729726892,0.39458733631169773,1733.4063849238357,54.16894952886987,2.089900970606344,2.0522995715086076,1730.273615076164
+32.1,54.225969163057954,0.39458260013240126,1738.8024090122512,54.16829934617605,2.0896536838899307,2.052159953556317,1735.7015909877487
+32.2,54.22577100762429,0.39457786717558024,1744.1983173088097,54.16764960586365,2.0894063971735175,2.052020335604027,1741.1296826911905
+32.3,54.22557283096321,0.3945731374202569,1749.5941098532076,54.16700030505287,2.0891591104571043,2.051880717651737,1746.5578901467918
+32.4,54.22537463307,0.3945684108456484,1754.9897866848557,54.166351440890615,2.088911823740691,2.0517410996994467,1751.986213315144
+32.5,54.22517641393992,0.39456368743116293,1760.3853478428766,54.16570301055005,2.088664537024278,2.0516014817471566,1757.4146521571233
+32.6,54.22497817356826,0.3945589671563985,1765.7807933661106,54.165055011230386,2.0884172503078644,2.0514618637948665,1762.8432066338894
+32.7,54.22477991195029,0.39455425000114036,1771.1761232931194,54.16440744015655,2.0881699635914517,2.051322245842576,1768.2718767068807
+32.8,54.22458162908127,0.39454953594535824,1776.5713376621839,54.16376029457878,2.087922676875038,2.0511826278902863,1773.7006623378156
+32.9,54.224383324956484,0.3945448249692048,1781.966436511313,54.163113571772435,2.087675390158625,2.051043009937996,1779.1295634886867
+33.0,54.22418499957119,0.39454011705301306,1787.361419878242,54.162467269037634,2.0874281034422117,2.0509033919857056,1784.5585801217578
+33.1,54.22398665292066,0.394535412177294,1792.7562878004342,54.161821383698914,2.0871808167257986,2.0507637740334155,1789.9877121995657
+33.2,54.223788285000154,0.39453071032273473,1798.1510403150871,54.161175913105026,2.0869335300093854,2.0506241560811254,1795.416959684913
+33.3,54.223589895804935,0.3945260114701966,1803.5456774591319,54.16053085462859,2.086686243292972,2.0504845381288352,1800.8463225408677
+33.4,54.22339148533026,0.39452131560071224,1808.940199269237,54.15988620566578,2.0864389565765586,2.050344920176545,1806.2758007307627
+33.5,54.22319305357141,0.39451662269548465,1814.3346057818105,54.159241963636134,2.0861916698601455,2.050205302224255,1811.7053942181894
+33.6,54.22299460052361,0.3945119327358842,1819.7288970330017,54.15859812598219,2.0859443831437323,2.050065684271965,1817.1351029669984
+33.7,54.22279612618214,0.3945072457034471,1825.1230730587029,54.15795469016922,2.085697096427319,2.0499260663196748,1822.5649269412972
+33.8,54.222597630542246,0.39450256157987346,1830.517133894554,54.157311653685035,2.085449809710906,2.0497864483673847,1827.9948661054455
+33.9,54.222399113599195,0.39449788034702543,1835.911079575944,54.15666901403965,2.0852025229944924,2.049646830415094,1833.4249204240557
+34.0,54.22220057534821,0.39449320198692445,1841.3049101380095,54.15602676876499,2.084955236278079,2.049507212462804,1838.85508986199
+34.1,54.22200201578457,0.39448852648175076,1846.698625615643,54.15538491541475,2.084707949561666,2.0493675945105143,1844.2853743843568
+34.2,54.22180343490351,0.39448385381384066,1852.0922260434904,54.154743451564045,2.084460662845253,2.0492279765582238,1849.7157739565096
+34.3,54.22160483270028,0.39447918396568454,1857.4857114559547,54.15410237480918,2.0842133761288397,2.0490883586059336,1855.1462885440449
+34.4,54.22140620917012,0.39447451691992574,1862.8790818871987,54.15346168276741,2.0839660894124266,2.0489487406536435,1860.576918112801
+34.5,54.22120756430827,0.3944698526593583,1868.2723373711463,54.152821373076705,2.083718802696013,2.0488091227013534,1866.0076626288535
+34.6,54.22100889810998,0.3944651911669252,1873.665477941484,54.152181443395484,2.0834715159796002,2.0486695047490633,1871.4385220585161
+34.7,54.22081021057049,0.3944605324257171,1879.058503631665,54.151541891402445,2.0832242292631866,2.048529886796773,1876.8694963683351
+34.8,54.22061150168504,0.39445587641897023,1884.4514144749087,54.15090271479623,2.0829769425467735,2.0483902688444826,1882.3005855250908
+34.9,54.22041277144886,0.3944512231300646,1889.8442105042047,54.15026391129527,2.0827296558303603,2.048250650892193,1887.7317894957948
+35.0,54.2202140198572,0.39444657254252286,1895.2368917523138,54.14962547863754,2.0824823691139467,2.048111032939903,1893.163108247686
+35.1,54.22001524690527,0.3944419246400082,1900.6294582517694,54.148987414580326,2.082235082397534,2.0479714149876123,1898.5945417482305
+35.2,54.21981645258832,0.3944372794063229,1906.0219100348806,54.148349716900015,2.0819877956811204,2.047831797035322,1904.0260899651194
+35.3,54.21961763690157,0.39443263682540697,1911.4142471337332,54.14771238339188,2.081740508964707,2.047692179083032,1909.4577528662664
+35.4,54.219418799840255,0.3944279968813365,1916.8064695801934,54.14707541186987,2.081493222248294,2.047552561130742,1914.8895304198063
+35.5,54.2192199413996,0.39442335955832153,1922.1985774059065,54.14643880016638,2.081245935531881,2.047412943178452,1920.3214225940933
+35.6,54.219021061574836,0.39441872484070545,1927.590570642301,54.145802546132046,2.0809986488154677,2.0472733252261617,1925.7534293576991
+35.7,54.218822160361185,0.3944140927129632,1932.9824493205908,54.14516664763559,2.0807513620990545,2.047133707273871,1931.1855506794093
+35.8,54.21862323775386,0.3944094631596992,1938.3742134717736,54.14453110256351,2.080504075382641,2.0469940893215814,1936.617786528226
+35.9,54.218424293748086,0.3944048361656469,1943.7658631266384,54.143895908820014,2.0802567886662278,2.0468544713692913,1942.0501368733612
+36.0,54.218225328339074,0.3944002117156666,1949.1573983157618,54.143261064326715,2.0800095019498146,2.0467148534170008,1947.482601684238
+36.1,54.21802634152206,0.39439558979474443,1954.548819069513,54.14262656702252,2.0797622152334014,2.0465752354647107,1952.915180930487
+36.2,54.217827333292256,0.3943909703879906,1959.9401254180534,54.14199241486335,2.0795149285169883,2.046435617512421,1958.3478745819466
+36.3,54.21762830364486,0.39438635348063844,1965.33131739134,54.14135860582204,2.079267641800575,2.0462959995601304,1963.7806826086596
+36.4,54.217429252575094,0.39438173905804275,1970.722395019127,54.140725137888104,2.0790203550841615,2.0461563816078403,1969.2136049808728
+36.5,54.217230180078175,0.39437712710567857,1976.1133583309659,54.14009200906756,2.0787730683677488,2.04601676365555,1974.646641669034
+36.6,54.217031086149305,0.39437251760914,1981.5042073562083,54.139459217382736,2.078525781651335,2.04587714570326,1980.0797926437917
+36.7,54.21683197078368,0.39436791055413845,1986.8949421240072,54.13882676087213,2.078278494934922,2.04573752775097,1985.513057875993
+36.8,54.21663283397654,0.39436330592650226,1992.2855626633204,54.13819463759023,2.078031208218509,2.04559790979868,1990.946437336679
+36.9,54.216433675723046,0.394358703712174,1997.6760690029075,54.13756284560725,2.0777839215020957,2.0454582918463893,1996.3799309970923
+37.0,54.21623449601843,0.3943541038972109,2003.0664611713369,54.136931383009106,2.0775366347856825,2.045318673894099,2001.8135388286628
+37.1,54.21603529485788,0.3943495064677822,2008.4567391969842,54.13630024789715,2.077289348069269,2.0451790559418095,2007.2472608030157
+37.2,54.215836072236606,0.3943449114101689,2013.8469031080335,54.13566943838799,2.0770420613528557,2.045039437989519,2012.6810968919667
+37.3,54.21563682814979,0.3943403187107621,2019.2369529324803,54.13503895261342,2.0767947746364426,2.044899820037229,2018.115047067519
+37.4,54.21543756259264,0.3943357283560618,2024.626888698134,54.134408788720165,2.0765474879200294,2.0447602020849387,2023.5491113018657
+37.5,54.215238275560345,0.3943311403326759,2030.0167104326158,54.13377894486975,2.0763002012036162,2.0446205841326486,2028.983289567384
+37.6,54.2150389670481,0.3943265546273192,2035.406418163363,54.13314941923838,2.076052914487203,2.0444809661803585,2034.4175818366368
+37.7,54.21483963705109,0.39432197122681173,2040.7960119176305,54.13252021001672,2.0758056277707895,2.0443413482280683,2039.8519880823696
+37.8,54.21464028556451,0.3943173901180782,2046.1854917224896,54.13189131540978,2.0755583410543763,2.044201730275778,2045.28650827751
+37.9,54.214440912583555,0.3943128112881467,2051.574857604834,54.13126273363678,2.075311054337963,2.044062112323488,2050.7211423951658
+38.0,54.21424151810339,0.39430823472414744,2056.964109591376,54.130634462930956,2.07506376762155,2.043922494371198,2056.1558904086232
+38.1,54.21404210211922,0.3943036604133118,2062.353247708653,54.13000650153944,2.074816480905137,2.0437828764189074,2061.590752291347
+38.2,54.21384266462621,0.39429908834297117,2067.742271983022,54.12937884772309,2.0745691941887237,2.0436432584666173,2067.025728016978
+38.3,54.21364320561956,0.39429451850055663,2073.1311824406707,54.12875149975642,2.07432190747231,2.0435036405143276,2072.460817559329
+38.4,54.21344372509443,0.39428995087359653,2078.5199791076093,54.12812445592733,2.0740746207558973,2.043364022562037,2077.8960208923904
+38.5,54.21324422304602,0.39428538544971664,2083.9086620096787,54.12749771453711,2.0738273340394837,2.043224404609747,2083.331337990321
+38.6,54.21304469946947,0.3942808222166387,2089.297231172546,54.12687127390016,2.0735800473230706,2.043084786657457,2088.7667688274537
+38.7,54.21284515436,0.39427626116217934,2094.685686621712,54.12624513234398,2.0733327606066574,2.0429451687051667,2094.2023133782877
+38.8,54.21264558771274,0.39427170227424935,2100.074028382507,54.12561928820895,2.073085473890244,2.0428055507528766,2099.6379716174924
+38.9,54.21244599952289,0.3942671455408527,2105.462256480097,54.12499373984826,2.072838187173831,2.0426659328005865,2105.0737435199026
+39.0,54.21224638978561,0.39426259095008515,2110.85037093948,54.12436848562769,2.0725909004574175,2.042526314848296,2110.5096290605197
+39.1,54.21204675849606,0.3942580384901338,2116.23837178549,54.12374352392557,2.0723436137410043,2.042386696896006,2115.94562821451
+39.2,54.21184710564941,0.3942534881492762,2121.6262590427996,54.12311885313264,2.072096327024591,2.042247078943716,2121.3817409572007
+39.3,54.211647431240834,0.3942489399158789,2127.0140327359177,54.122494471651855,2.071849040308178,2.0421074609914256,2126.8179672640817
+39.4,54.21144773526549,0.394244393778397,2132.4016928891947,54.12187037789834,2.071601753591765,2.0419678430391355,2132.2543071108053
+39.5,54.211248017718525,0.3942398497253731,2137.789239526819,54.12124657029922,2.0713544668753516,2.0418282250868454,2137.6907604731805
+39.6,54.21104827859512,0.3942353077454364,2143.1766726728233,54.12062304729351,2.071107180158938,2.0416886071345552,2143.1273273271768
+39.7,54.21084851789041,0.3942307678273019,2148.5639923510807,54.119999807332,2.070859893442525,2.041548989182265,2148.5640076489194
+39.8,54.210648735599584,0.3942262299597696,2153.951198585311,54.11937684887717,2.0706126067261117,2.041409371229975,2154.0008014146883
+39.9,54.210448931717764,0.3942216941317231,2159.3382913990777,54.11875417040295,2.0703653200096985,2.0412697532776845,2159.437708600922
+40.0,54.210249106240106,0.3942171603321298,2164.725270815791,54.118131770394776,2.0701180332932854,2.041130135325395,2164.8747291842087
+40.1,54.21004925916177,0.394212628550039,2170.112136858709,54.11750964734936,2.069870746576872,2.0409905173731047,2170.311863141291
+40.2,54.209849390477906,0.3942080987745818,2175.4988895509387,54.116887799774595,2.0696234598604586,2.040850899420814,2175.7491104490614
+40.3,54.209649500183666,0.39420357099497005,2180.885528915436,54.11626622618949,2.069376173144046,2.040711281468524,2181.1864710845634
+40.4,54.20944958827418,0.3941990452004953,2186.2720549750093,54.115644925123995,2.0691288864276323,2.0405716635162343,2186.6239450249905
+40.5,54.20924965474461,0.39419452138052846,2191.6584677523174,54.115023895118945,2.068881599711219,2.0404320455639438,2192.0615322476824
+40.6,54.20904969959008,0.3941899995245186,2197.0447672698724,54.11440313472592,2.068634312994806,2.0402924276116536,2197.4992327301275
+40.7,54.20884972280575,0.39418547962199285,2202.4309535500424,54.11378264250718,2.0683870262783923,2.0401528096593635,2202.9370464499575
+40.8,54.208649724386746,0.39418096166255445,2207.8170266150473,54.113162417035475,2.0681397395619796,2.040013191707073,2208.374973384952
+40.9,54.2084497043282,0.3941764456358833,2213.202986486967,54.112542456894055,2.067892452845566,2.0398735737547833,2213.8130135130327
+41.0,54.20824966262527,0.3941719315317344,2218.5888331877363,54.1119227606765,2.067645166129153,2.039733955802493,2219.2511668122634
+41.1,54.20804959927307,0.3941674193399374,2223.9745667391494,54.1113033269866,2.0673978794127397,2.0395943378502026,2224.6894332608504
+41.2,54.20784951426675,0.3941629090503958,2229.36018716286,54.11068415443834,2.0671505926963265,2.0394547198979125,2230.1278128371405
+41.3,54.207649407601416,0.3941584006530863,2234.74569448038,54.11006524165569,2.0669033059799133,2.039315101945623,2235.5663055196196
+41.4,54.20744927927221,0.39415389413805796,2240.1310887130853,54.10944658727259,2.0666560192635,2.0391754839933323,2241.004911286914
+41.5,54.207249129274274,0.3941493894954317,2245.516369882214,54.108828189932865,2.0664087325470866,2.039035866041042,2246.4436301177857
+41.6,54.207048957602716,0.3941448867153996,2250.9015380088663,54.108210048290054,2.0661614458306734,2.038896248088752,2251.882461991134
+41.7,54.206848764252655,0.39414038578822364,2256.2865931140063,54.10759216100735,2.0659141591142602,2.038756630136462,2257.3214068859934
+41.8,54.206648549219224,0.3941358867042361,2261.6715352184647,54.10697452675753,2.065666872397847,2.038617012184172,2262.7604647815347
+41.9,54.20644831249756,0.3941313894538381,2267.0563643429396,54.1063571442229,2.065419585681434,2.0384773942318817,2268.1996356570603
+42.0,54.20624805408274,0.39412689402749884,2272.4410805079915,54.10574001209504,2.0651722989650207,2.038337776279591,2273.638919492008
+42.1,54.20604777396992,0.3941224004157556,2277.8256837340546,54.105123129074926,2.064925012248607,2.0381981583273014,2279.0783162659454
+42.2,54.2058474721542,0.3941179086092127,2283.210174041429,54.10450649387272,2.064677725532194,2.0380585403750113,2284.5178259585714
+42.3,54.205647148630675,0.3941134185985406,2288.5945514502837,54.103890105207654,2.064430438815781,2.0379189224227208,2289.957448549716
+42.4,54.2054468033945,0.39410893037447614,2293.9788159806626,54.103273961808085,2.0641831520993676,2.0377793044704307,2295.3971840193367
+42.5,54.20524643644076,0.39410444392782096,2299.3629676524783,54.10265806241126,2.0639358653829545,2.0376396865181405,2300.8370323475215
+42.6,54.205046047764554,0.3940999592494412,2304.747006485516,54.102042405763285,2.063688578666541,2.0375000685658504,2306.276993514484
+42.7,54.204845637361004,0.39409547633026726,2310.1309324994354,54.10142699061909,2.063441291950128,2.0373604506135603,2311.717067500565
+42.8,54.20464520522522,0.394090995161293,2315.51474571377,54.1008118157423,2.0631940052337145,2.03722083266127,2317.157254286229
+42.9,54.20444475135229,0.3940865157335746,2320.8984461479295,54.10019687990512,2.0629467185173014,2.0370812147089796,2322.59755385207
+43.0,54.204244275737324,0.39408203803823083,2326.282033821198,54.09958218188833,2.062699431800888,2.03694159675669,2328.0379661788015
+43.1,54.20404377837543,0.39407756206644223,2331.6655087527392,54.09896772048119,2.062452145084475,2.0368019788044,2333.4784912472605
+43.2,54.20384325926169,0.39407308780944994,2337.0488709615915,54.09835349448129,2.062204858368062,2.0366623608521093,2338.9191290384083
+43.3,54.20364271839122,0.39406861525855597,2342.4321204666744,54.09773950269456,2.0619575716516487,2.036522742899819,2344.359879533325
+43.4,54.2034421557591,0.39406414440512194,2347.8152572867853,54.097125743935145,2.061710284935235,2.0363831249475295,2349.8007427132143
+43.5,54.20324157136042,0.3940596752405692,2353.198281440602,54.096512217025335,2.061462998218822,2.036243506995239,2355.2417185593977
+43.6,54.2030409651903,0.3940552077563777,2358.581192946685,54.09589892079553,2.061215711502409,2.036103889042949,2360.6828070533147
+43.7,54.20284033724379,0.3940507419440858,2363.963991823475,54.095285854084096,2.0609684247859956,2.0359642710906587,2366.124008176525
+43.8,54.20263968751601,0.3940462777952895,2369.3466780892954,54.09467301573734,2.0607211380695825,2.0358246531383686,2371.565321910704
+43.9,54.20243901600203,0.39404181530164223,2374.7292517623546,54.09406040460944,2.0604738513531693,2.0356850351860785,2377.0067482376453
+44.0,54.20223832269694,0.394037354454854,2380.111712860744,54.09344801956236,2.0602265646367557,2.0355454172337883,2382.448287139256
+44.1,54.20203760759583,0.39403289524669105,2385.49406140244,54.09283585946575,2.059979277920343,2.035405799281498,2387.88993859756
+44.2,54.20183687069377,0.39402843766897533,2390.8762974053047,54.09222392319693,2.0597319912039294,2.035266181329208,2393.3317025946953
+44.3,54.20163611198585,0.39402398171358405,2396.258420887088,54.091612209640815,2.059484704487516,2.035126563376918,2398.7735791129116
+44.4,54.201435331467145,0.39401952737244883,2401.640431865426,54.091000717689774,2.059237417771103,2.0349869454246274,2404.215568134574
+44.5,54.201234529132726,0.3940150746375558,2407.022330357843,54.09038944624366,2.0589901310546894,2.0348473274723373,2409.6576696421566
+44.6,54.20103370497766,0.3940106235009446,2412.404116381752,54.08977839420968,2.0587428443382767,2.034707709520047,2415.099883618248
+44.7,54.20083285899705,0.3940061739547085,2417.7857899544565,54.08916756050238,2.058495557621863,2.034568091567757,2420.5422100455435
+44.8,54.200631991185936,0.39400172599099276,2423.167351093148,54.08855694404349,2.05824827090545,2.034428473615467,2425.9846489068514
+44.9,54.200431101539415,0.3939972796019958,2428.5487998149133,54.08794654376199,2.0580009841890368,2.034288855663177,2431.4272001850863
+45.0,54.20023019005252,0.3939928347799671,2433.9301361367247,54.08733635859389,2.0577536974726236,2.0341492377108863,2436.869863863275
+45.1,54.200029256720356,0.3939883915172081,2439.311360075453,54.08672638748233,2.0575064107562104,2.0340096197585966,2442.3126399245466
+45.2,54.199828301537956,0.3939839498060707,2444.692471647858,54.086116629377386,2.0572591240397973,2.0338700018063065,2447.755528352142
+45.3,54.1996273245004,0.3939795096389575,2450.0734708705945,54.08550708323609,2.0570118373233837,2.033730383854016,2453.198529129405
+45.4,54.199426325602744,0.39397507100832113,2455.4543577602135,54.08489774802232,2.0567645506069705,2.033590765901726,2458.6416422397865
+45.5,54.199225304840056,0.39397063390666365,2460.835132333159,54.08428862270679,2.0565172638905573,2.033451147949436,2464.084867666841
+45.6,54.199024262207374,0.3939661983265361,2466.21579460577,54.083679706266885,2.056269977174144,2.0333115299971456,2469.52820539423
+45.7,54.198823197699774,0.39396176426053886,2471.5963445942857,54.083070997686775,2.056022690457731,2.0331719120448555,2474.9716554057145
+45.8,54.1986221113123,0.3939573317013198,2476.9767823148386,54.08246249595718,2.055775403741318,2.0330322940925654,2480.4152176851608
+45.9,54.19842100304,0.39395290064157507,2482.357107783462,54.081854200075426,2.0555281170249042,2.0328926761402752,2485.8588922165377
+46.0,54.198219872877935,0.39394847107404823,2487.7373210160854,54.08124610904534,2.055280830308491,2.032753058187985,2491.302678983914
+46.1,54.19801872082115,0.39394404299152985,2493.11742202854,54.08063822187722,2.055033543592078,2.032613440235695,2496.74657797146
+46.2,54.1978175468647,0.3939396163868571,2498.4974108365536,54.08003053758774,2.0547862568756647,2.0324738222834045,2502.1905891634465
+46.3,54.19761635100362,0.39393519125291326,2503.8772874557567,54.07942305519993,2.0545389701592516,2.0323342043311143,2507.6347125442426
+46.4,54.197415133232944,0.39393076758262763,2509.2570519016804,54.078815773743116,2.054291683442838,2.0321945863788247,2513.078948098319
+46.5,54.19721389354773,0.39392634536897464,2514.6367041897574,54.07820869225284,2.0540443967264252,2.032054968426534,2518.5232958102424
+46.6,54.197012631943025,0.39392192460497416,2520.016244335322,54.077601809770854,2.0537971100100116,2.031915350474244,2523.967755664678
+46.7,54.19681134841385,0.39391750528369046,2525.395672353613,54.07699512534503,2.0535498232935985,2.031775732521954,2529.412327646387
+46.8,54.19661004295525,0.39391308739823194,2530.77498825977,54.07638863802928,2.0533025365771853,2.0316361145696638,2534.857011740229
+46.9,54.196408715562264,0.3939086709417512,2536.1541920688405,54.0757823468836,2.053055249860772,2.0314964966173736,2540.3018079311587
+47.0,54.19620736622992,0.3939042559074441,2541.5332837957744,54.075176250973925,2.052807963144359,2.0313568786650835,2545.7467162042253
+47.1,54.19600599495325,0.3938998422885497,2546.912263455426,54.0745703493721,2.052560676427946,2.031217260712793,2551.191736544574
+47.2,54.19580460172728,0.3938954300783499,2552.2911310625573,54.073964641155875,2.052313389711532,2.0310776427605033,2556.6368689374426
+47.3,54.195603186547054,0.39389101927016906,2557.6698866318366,54.073359125408814,2.052066102995119,2.030938024808213,2562.0821133681625
+47.4,54.19540174940758,0.3938866098573734,2563.0485301778385,54.07275380122022,2.051818816278706,2.0307984068559226,2567.527469822161
+47.5,54.195200290303895,0.393882201833371,2568.427061715046,54.07214866768518,2.0515715295622927,2.0306587889036325,2572.9729382849537
+47.6,54.194998809231016,0.39387779519161126,2573.8054812578494,54.0715437239044,2.0513242428458796,2.030519170951343,2578.4185187421504
+47.7,54.194797306183965,0.3938733899255845,2579.1837888205487,54.070938968984244,2.051076956129466,2.0303795529990523,2583.8642111794516
+47.8,54.194595781157766,0.3938689860288218,2584.5619844173525,54.070334402036664,2.050829669413053,2.030239935046762,2589.310015582647
+47.9,54.19439423414744,0.3938645834948946,2589.9400680623808,54.06973002217914,2.05058238269664,2.030100317094472,2594.755931937619
+48.0,54.19419266514798,0.39386018231741404,2595.318039769661,54.0691258285346,2.0503350959802265,2.0299606991421815,2600.201960230339
+48.1,54.19399107415443,0.3938557824900313,2600.695899553135,54.068521820231496,2.0500878092638133,2.029821081189892,2605.648100446865
+48.2,54.193789461161785,0.39385138400643654,2606.073647426654,54.06791799640361,2.0498405225474,2.0296814632376017,2611.094352573346
+48.3,54.19358782616506,0.39384698686035907,2611.451283403981,54.06731435619009,2.0495932358309865,2.029541845285311,2616.5407165960182
+48.4,54.19338616915926,0.3938425910455669,2616.8288074987945,54.06671089873542,2.049345949114574,2.029402227333021,2621.9871925012053
+48.5,54.19318449013941,0.39383819655586644,2622.2062197246833,54.066107623189346,2.04909866239816,2.0292626093807313,2627.4337802753166
+48.6,54.1929827891005,0.3938338033851019,2627.58352009515,54.06550452870679,2.048851375681747,2.0291229914284408,2632.88047990485
+48.7,54.19278106603753,0.3938294115271554,2632.9607086236124,54.06490161444789,2.048604088965334,2.0289833734761507,2638.3272913763876
+48.8,54.19257932094551,0.3938250209759464,2638.337785323403,54.064298879577926,2.0483568022489207,2.0288437555238605,2643.774214676597
+48.9,54.19237755381945,0.3938206317254316,2643.7147502077687,54.06369632326725,2.0481095155325075,2.0287041375715704,2649.221249792231
+49.0,54.19217576465432,0.3938162437696042,2649.091603289872,54.06309394469127,2.0478622288160944,2.0285645196192803,2654.6683967101276
+49.1,54.19197395344516,0.3938118571024944,2654.468344582794,54.06249174303043,2.0476149420996808,2.02842490166699,2660.1156554172057
+49.2,54.191772120186926,0.393807471718168,2659.8449740995293,54.0618897174701,2.047367655383268,2.0282852837146996,2665.563025900471
+49.3,54.19157026487463,0.39380308761072713,2665.2214918529903,54.06128786720062,2.0471203686668544,2.02814566576241,2671.010508147009
+49.4,54.19136838750325,0.3937987047743095,2670.5978978560097,54.060686191417204,2.0468730819504413,2.02800604781012,2676.45810214399
+49.5,54.19116648806781,0.39379432320308794,2675.974192121336,54.060084689319915,2.046625795234028,2.0278664298578293,2681.905807878664
+49.6,54.19096456656325,0.3937899428912705,2681.3503746616357,54.05948336011362,2.046378508517615,2.027726811905539,2687.3536253383645
+49.7,54.19076262298459,0.3937855638331001,2686.7264454894967,54.058882203007975,2.0461312218012013,2.027587193953249,2692.8015545105036
+49.8,54.1905606573268,0.3937811860228536,2692.102404617424,54.05828121721735,2.045883935084788,2.027447576000959,2698.2495953825755
+49.9,54.19035866958488,0.39377680945484295,2697.478252057846,54.057680401960845,2.045636648368375,2.027307958048669,2703.6977479421535
+50.0,54.19015665975379,0.3937724341234133,2702.853987823109,54.05707975646218,2.045389361651962,2.0271683400963787,2709.146012176891
+50.1,54.18995462782852,0.3937680600229437,2708.2296119254806,54.05647927994971,2.0451420749355487,2.027028722144088,2714.5943880745194
+50.2,54.18975257380405,0.39376368714784665,2713.605124377151,54.05587897165639,2.044894788219135,2.0268891041917985,2720.042875622849
+50.3,54.18955049767535,0.39375931549256776,2718.9805251902308,54.0552788308197,2.0446475015027223,2.0267494862395083,2725.4914748097685
+50.4,54.1893483994374,0.3937549450515854,2724.355814376755,54.05467885668165,2.0444002147863087,2.026609868287218,2730.940185623245
+50.5,54.189146279085165,0.39375057581941064,2729.7309919486793,54.054079048488695,2.0441529280698956,2.0264702503349277,2736.3890080513206
+50.6,54.188944136613635,0.3937462077905871,2735.1060579178848,54.05347940549179,2.0439056413534824,2.026330632382638,2741.837942082115
+50.7,54.188741972017745,0.3937418409596898,2740.481012296173,54.05287992694621,2.0436583546370692,2.0261910144303474,2747.286987703827
+50.8,54.18853978529249,0.3937374753213263,2745.855855095273,54.05228061211168,2.043411067920656,2.0260513964780573,2752.736144904726
+50.9,54.18833757643283,0.3937331108701356,2751.2305863268384,54.051681460252226,2.043163781204243,2.025911778525767,2758.1854136731613
+51.0,54.18813534543372,0.3937287476007879,2756.6052060024444,54.05108247063617,2.0429164944878293,2.025772160573477,2763.6347939975553
+51.1,54.18793309229013,0.39372438550798455,2761.9797141335957,54.05048364253612,2.0426692077714166,2.025632542621187,2769.084285866404
+51.2,54.18773081699701,0.39372002458645755,2767.3541107317196,54.04988497522889,2.042421921055003,2.025492924668897,2774.5338892682807
+51.3,54.18752851954934,0.3937156648309699,2772.7283958081716,54.04928646799555,2.04217463433859,2.0253533067166063,2779.983604191828
+51.4,54.18732619994205,0.3937113062363147,2778.1025693742336,54.04868812012128,2.0419273476221766,2.0252136887643166,2785.433430625766
+51.5,54.18712385817012,0.3937069487973152,2783.4766314411145,54.04808993089543,2.041680060905763,2.0250740708120265,2790.883368558885
+51.6,54.18692149422848,0.39370259250882456,2788.8505820199503,54.04749189961144,2.04143277418935,2.024934452859736,2796.3334179800495
+51.7,54.186719108112094,0.39369823736572584,2794.224421121806,54.04689402556684,2.0411854874729367,2.024794834907446,2801.783578878194
+51.8,54.186516699815904,0.3936938833629311,2799.598148757673,54.046296308063184,2.0409382007565235,2.0246552169551557,2807.2338512423266
+51.9,54.186314269334865,0.393689530495382,2804.971764938474,54.045698746406046,2.0406909140401104,2.0245155990028656,2812.6842350615257
+52.0,54.18611181666393,0.39368517875804915,2810.345269675059,54.04510133990499,2.040443627323697,2.0243759810505755,2818.1347303249404
+52.1,54.18590934179803,0.3936808281459316,2815.718662978209,54.04450408787349,2.0401963406072836,2.0242363630982854,2823.585337021791
+52.2,54.18570684473211,0.3936764786540572,2821.0919448586324,54.04390698962897,2.039949053890871,2.024096745145995,2829.0360551413673
+52.3,54.18550432546111,0.39367213027748216,2826.4651153269706,54.04331004449275,2.0397017671744573,2.023957127193705,2834.4868846730287
+52.4,54.18530178397997,0.39366778301129063,2831.838174393795,54.042713251789976,2.039454480458044,2.023817509241415,2839.937825606205
+52.5,54.18509922028363,0.39366343685059474,2837.2111220696065,54.04211661084965,2.039207193741631,2.0236778912891245,2845.3888779303934
+52.6,54.18489663436703,0.3936590917905344,2842.5839583648403,54.04152012100457,2.038959907025218,2.0235382733368343,2850.8400416351597
+52.7,54.184694026225095,0.39365474782627685,2847.9566832898613,54.04092378159129,2.0387126203088046,2.0233986553845447,2856.2913167101387
+52.8,54.18449139585276,0.3936504049530166,2853.3292968549663,54.040327591950124,2.0384653335923915,2.023259037432254,2861.742703145033
+52.9,54.18428874324494,0.39364606316597534,2858.701799070387,54.03973155142509,2.038218046875978,2.023119419479964,2867.194200929612
+53.0,54.184086068396596,0.39364172246040136,2864.074189946287,54.0391356593639,2.037970760159565,2.022979801527674,2872.645810053713
+53.1,54.18388337130262,0.39363738283156985,2869.446469492761,54.03853991511791,2.0377234734431515,2.0228401835753838,2878.097530507239
+53.2,54.18368065195796,0.3936330442747824,2874.8186377198413,54.03794431804213,2.0374761867267384,2.0227005656230936,2883.5493622801587
+53.3,54.18347791035754,0.3936287067853668,2880.1906946374916,54.037348867495155,2.037228900010325,2.0225609476708035,2889.001305362508
+53.4,54.18327514649626,0.39362437035867676,2885.5626402556104,54.036753562839145,2.036981613293912,2.022421329718513,2894.453359744389
+53.5,54.18307236036905,0.3936200349900921,2890.9344745840317,54.03615840343985,2.0367343265774984,2.0222817117662233,2899.905525415968
+53.6,54.18286955197084,0.3936157006750182,2896.306197632525,54.0355633886665,2.0364870398610853,2.022142093813933,2905.3578023674754
+53.7,54.18266672129653,0.3936113674088859,2901.6778094107926,54.034968517891855,2.036239753144672,2.0220024758616426,2910.810190589207
+53.8,54.182463868341046,0.39360703518715134,2907.0493099284768,54.03437379049214,2.035992466428259,2.0218628579093525,2916.2626900715222
+53.9,54.18226099309928,0.3936027040052955,2912.4206991951514,54.03377920584697,2.0357451797118458,2.0217232399570624,2921.715300804848
+54.0,54.18205809556617,0.3935983738588249,2917.7919772203322,54.033184763339484,2.035497892995432,2.0215836220047723,2927.1680227796674
+54.1,54.181855175736594,0.3935940447432701,2923.163144013466,54.03259046235612,2.0352506062790194,2.021444004052482,2932.6208559865336
+54.2,54.18165223360549,0.39358971665418657,2928.5341995839412,54.031996302286736,2.035003319562606,2.021304386100192,2938.073800416059
+54.3,54.18144926916774,0.39358538958715406,2933.905143941081,54.03140228252451,2.0347560328461927,2.0211647681479015,2943.526856058919
+54.4,54.18124628241826,0.3935810635377766,2939.275977094149,54.03080840246597,2.0345087461297795,2.021025150195612,2948.9800229058505
+54.5,54.181043273351946,0.393576738501682,2944.646699052344,54.030214661510904,2.0342614594133663,2.0208855322433217,2954.4333009476554
+54.6,54.1808402419637,0.393572414474522,2950.017309824806,54.02962105906238,2.034014172696953,2.020745914291031,2959.886690175194
+54.7,54.18063718824842,0.3935680914519722,2955.387809420613,54.02902759452674,2.03376688598054,2.020606296338741,2965.340190579387
+54.8,54.18043411220099,0.3935637694297312,2960.7581978487797,54.0284342673135,2.0335195992641264,2.0204666783864513,2970.7938021512196
+54.9,54.180231013816325,0.3935594484035215,2966.1284751182648,54.02784107683543,2.0332723125477137,2.0203270604341608,2976.2475248817345
+55.0,54.18002789308931,0.3935551283690884,2971.498641237965,54.02724802250845,2.0330250258313,2.0201874424818707,2981.701358762035
+55.1,54.17982475001483,0.3935508093222,2976.868696216714,54.026655103751615,2.032777739114887,2.0200478245295805,2987.155303783286
+55.2,54.17962158458777,0.3935464912586475,2982.2386400632895,54.026062319987126,2.0325304523984737,2.0199082065772904,2992.6093599367105
+55.3,54.17941839680304,0.39354217417424486,2987.6084727864104,54.025469670640334,2.03228316568206,2.0197685886250003,2998.063527213589
+55.4,54.1792151866555,0.39353785806482805,2992.9781943947337,54.0248771551396,2.032035878965647,2.01962897067271,3003.517805605266
+55.5,54.179011954140044,0.3935335429262557,2998.3478048968595,54.02428477291639,2.031788592249234,2.0194893527204196,3008.97219510314
+55.6,54.17880869925155,0.39352922875440866,3003.71730430133,54.02369252340522,2.0315413055328206,2.0193497347681295,3014.42669569867
+55.7,54.178605421984905,0.39352491554518937,3009.0866926166286,54.023100406043596,2.0312940188164075,2.01921011681584,3019.8813073833717
+55.8,54.17840212233497,0.3935206032945223,3014.4559698511794,54.02250842027203,2.0310467320999943,2.0190704988635493,3025.33603014882
+55.9,54.17819880029664,0.39351629199835403,3019.8251360133527,54.02191656553404,2.0307994453835807,2.018930880911259,3030.790863986647
+56.0,54.1779954558648,0.3935119816526521,3025.1941911114604,54.021324841276076,2.030552158667168,2.018791262958969,3036.2458088885396
+56.1,54.17779208903429,0.3935076722534053,3030.563135153754,54.020733246947486,2.0303048719507544,2.018651645006679,3041.7008648462456
+56.2,54.17758869980001,0.3935033637966245,3035.9319681484344,54.02014178200061,2.030057585234341,2.018512027054389,3047.156031851566
+56.3,54.1773852881568,0.3934990562783405,3041.3006901036397,54.01955044589058,2.029810298517928,2.0183724091020987,3052.6113098963597
+56.4,54.17718185409955,0.3934947496946059,3046.6693010274585,54.0189592380755,2.029563011801515,2.018232791149808,3058.0666989725414
+56.5,54.17697839762313,0.3934904440414939,3052.03780092792,54.01836815801629,2.0293157250851017,2.0180931731975185,3063.5221990720793
+56.6,54.17677491872237,0.39348613931509774,3057.4061898129967,54.01777720517662,2.0290684383686886,2.0179535552452283,3068.977810187003
+56.7,54.17657141739218,0.39348183551153204,3062.7744676906113,54.01718637902312,2.028821151652275,2.017813937292938,3074.4335323093887
+56.8,54.17636789362738,0.39347753262693097,3068.142634568625,54.01659567902509,2.0285738649358622,2.0176743193406477,3079.8893654313747
+56.9,54.17616434742285,0.3934732306574494,3073.5106904548497,54.01600510465465,2.0283265782194486,2.017534701388358,3085.34530954515
+57.0,54.17596077877343,0.39346892959926183,3078.87863535704,54.015414655386664,2.0280792915030355,2.0173950834360674,3090.80136464296
+57.1,54.175757187673995,0.39346462944856314,3084.2464692828985,54.014824330698744,2.0278320047866223,2.0172554654837773,3096.2575307171014
+57.2,54.17555357411938,0.39346033020156745,3089.6141922400716,54.01423413007118,2.0275847180702087,2.017115847531487,3101.7138077599284
+57.3,54.17534993810443,0.3934560318545089,3094.981804236154,54.01364405298698,2.0273374313537955,2.0169762295791966,3107.1701957638456
+57.4,54.17514627962403,0.3934517344036411,3100.349305278689,54.01305409893186,2.0270901446373824,2.016836611626907,3112.6266947213107
+57.5,54.17494259867299,0.3934474378452369,3105.716695375162,54.01246426739412,2.026842857920969,2.016696993674617,3118.0833046248376
+57.6,54.17473889524618,0.3934431421755882,3111.0839745330095,54.01187455786475,2.026595571204556,2.0165573757223263,3123.5400254669903
+57.7,54.17453516933841,0.39343884739100626,3116.451142759615,54.01128496983734,2.026348284488143,2.016417757770036,3128.9968572403855
+57.8,54.174331420944576,0.39343455348782136,3121.8182000623087,54.01069550280811,2.0261009977717293,2.0162781398177465,3134.4537999376907
+57.9,54.174127650059475,0.39343026046238216,3127.1851464483702,54.010106156275825,2.0258537110553165,2.016138521865456,3139.9108535516293
+58.0,54.17392385667795,0.39342596831105653,3132.5519819250267,54.00951692974184,2.025606424338903,2.015998903913166,3145.368018074973
+58.1,54.173720040794855,0.39342167703023057,3137.9187064994544,54.008927822710056,2.0253591376224898,2.0158592859608757,3150.8252935005453
+58.2,54.173516202405004,0.39341738661630893,3143.285320178777,54.00833883468689,2.0251118509060766,2.0157196680085856,3156.282679821223
+58.3,54.17331234150325,0.3934130970657146,3148.65182297007,54.007749965181304,2.0248645641896634,2.0155800500562955,3161.7401770299293
+58.4,54.173108458084414,0.39340880837488873,3154.018214880356,54.00716121370473,2.0246172774732503,2.0154404321040054,3167.1977851196434
+58.5,54.17290455214332,0.39340452054029046,3159.3844959166076,54.006572579771074,2.024369990756837,2.015300814151715,3172.655504083392
+58.6,54.17270062367481,0.39340023355839693,3164.7506660857484,54.00598406289673,2.0241227040404235,2.015161196199425,3178.1133339142516
+58.7,54.17249667267369,0.39339594742570305,3170.11672539465,54.00539566260051,2.0238754173240108,2.015021578247135,3183.5712746053496
+58.8,54.17229269913479,0.3933916621387215,3175.482673850137,54.00480737840369,2.023628130607597,2.0148819602948445,3189.0293261498628
+58.9,54.17208870305294,0.3933873776939826,3180.8485114589826,54.00421920982993,2.023380843891184,2.0147423423425543,3194.487488541017
+59.0,54.17188468442296,0.3933830940880338,3186.214238227911,54.00363115640528,2.023133557174771,2.014602724390264,3199.945761772088
+59.1,54.17168064323967,0.3933788113174402,3191.5798541635995,54.003043217658195,2.0228862704583572,2.014463106437974,3205.4041458364004
+59.2,54.17147657949786,0.39337452937878403,3196.945359272673,54.002455393119476,2.022638983741944,2.014323488485684,3210.862640727327
+59.3,54.17127249319239,0.3933702482686647,3202.3107535617114,54.001867682322285,2.022391697025531,2.014183870533394,3216.321246438288
+59.4,54.171068384318026,0.3933659679836982,3207.676037037244,54.00128008480209,2.0221444103091177,2.0140442525811033,3221.7799629627552
+59.5,54.170864252869606,0.393361688520518,3213.041209705754,54.00069260009671,2.0218971235927046,2.0139046346288136,3227.2387902942455
+59.6,54.170660098841935,0.3933574098757739,3218.406271573676,54.00010522774624,2.0216498368762914,2.0137650166765235,3232.697728426324
+59.7,54.17045592222981,0.3933531320461324,3223.771222647396,53.99951796729306,2.021402550159878,2.013625398724233,3238.1567773526044
+59.8,54.170251723028066,0.39334885502827693,3229.1360629332553,53.99893081828186,2.021155263443465,2.013485780771943,3243.615937066744
+59.9,54.170047501231466,0.3933445788189066,3234.500792437544,53.9983437802595,2.0209079767270515,2.013346162819653,3249.0752075624555
+60.0,54.16984325683484,0.3933403034147376,3239.8654111665105,53.997756852775176,2.0206606900106383,2.0132065448673626,3254.534588833489
+60.1,54.16963898983297,0.39333602881250174,3245.229919126353,53.99717003538024,2.020413403294225,2.0130669269150725,3259.9940808736474
+60.2,54.16943470022067,0.3933317550089473,3250.594316323223,53.99658332762829,2.020166116577812,2.0129273089627824,3265.453683676777
+60.3,54.16923038799272,0.3933274820008382,3255.9586027632267,53.995996729075074,2.019918829861399,2.0127876910104923,3270.9133972367727
+60.4,54.16902605314393,0.3933232097849549,3261.322778452428,53.995410239278606,2.0196715431449856,2.012648073058202,3276.373221547572
+60.5,54.16882169566908,0.3933189383580927,3266.686843396837,53.99482385779896,2.019424256428572,2.012508455105912,3281.8331566031625
+60.6,54.16861731556297,0.3933146677170633,3272.0507976024264,53.99423758419845,2.0191769697121593,2.0123688371536215,3287.2932023975736
+60.7,54.16841291282038,0.3933103978586938,3277.4146410751187,53.99365141804149,2.0189296829957457,2.0122292192013314,3292.7533589248815
+60.8,54.16820848743611,0.3933061287798267,3282.778373820792,53.993065358894604,2.0186823962793325,2.0120896012490417,3298.2136261792075
+60.9,54.168004039404934,0.3933018604773197,3288.1419958452807,53.992479406326446,2.0184351095629194,2.011949983296751,3303.674004154719
+61.0,54.16779956872163,0.393297592948046,3293.5055071543734,53.99189355990776,2.0181878228465058,2.011810365344461,3309.1344928456265
+61.1,54.16759507538099,0.39329332618889407,3298.868907753815,53.99130781921138,2.0179405361300926,2.011670747392171,3314.5950922461843
+61.2,54.16739055937779,0.3932890601967672,3304.2321976493067,53.990722183812196,2.0176932494136794,2.0115311294398808,3320.0558023506933
+61.3,54.16718602070681,0.39328479496858354,3309.5953768465024,53.99013665328715,2.0174459626972663,2.0113915114875907,3325.516623153497
+61.4,54.16698145936282,0.3932805305012766,3314.9584453510165,53.98955122721525,2.017198675980853,2.0112518935353005,3330.977554648983
+61.5,54.1667768753406,0.39327626679179417,3320.3214031684165,53.9889659051775,2.01695138926444,2.01111227558301,3336.4385968315833
+61.6,54.16657226863492,0.393272003837099,3325.684250304228,53.98838068675695,2.0167041025480263,2.0109726576307203,3341.899749695772
+61.7,54.166367639240555,0.39326774163416817,3331.0469867639326,53.98779557153861,2.0164568158316136,2.01083303967843,3347.3610132360673
+61.8,54.16616298715227,0.39326348017999363,3336.4096125529686,53.98721055910953,2.0162095291152,2.0106934217261396,3352.822387447031
+61.9,54.16595831236482,0.3932592194715814,3341.7721276767334,53.986625649058695,2.015962242398787,2.0105538037738495,3358.283872323266
+62.0,54.16575361487298,0.39325495950595185,3347.1345321405784,53.98604084097707,2.0157149556823737,2.01041418582156,3363.7454678594213
+62.1,54.165548894671524,0.3932507002801397,3352.4968259498155,53.98545613445758,2.0154676689659605,2.0102745678692693,3369.207174050184
+62.2,54.16534415175519,0.3932464417911936,3357.859009109713,53.98487152909506,2.0152203822495474,2.010134949916979,3374.668990890287
+62.3,54.16513938611876,0.3932421840361764,3363.2210816254965,53.9842870244863,2.014973095533134,2.009995331964689,3380.130918374503
+62.4,54.16493459775697,0.3932379270121647,3368.5830435023504,53.98370262022998,2.0147258088167206,2.009855714012399,3385.592956497649
+62.5,54.16472978666459,0.3932336707162492,3373.9448947454184,53.983118315926696,2.014478522100308,2.009716096060109,3391.055105254581
+62.6,54.164524952836366,0.39322941514553417,3379.306635359801,53.98253411117893,2.0142312353838943,2.0095764781078187,3396.517364640199
+62.7,54.164320096267055,0.39322516029713744,3384.6682653505577,53.98195000559103,2.013983948667481,2.009436860155528,3401.979734649442
+62.8,54.1641152169514,0.3932209061681908,3390.029784722708,53.981365998769235,2.013736661951068,2.0092972422032385,3407.442215277292
+62.9,54.163910314884156,0.39321665275583906,3395.391193481228,53.98078209032159,2.0134893752346543,2.0091576242509483,3412.9048065187717
+63.0,54.163705390060066,0.3932124000572409,3400.752491631056,53.98019827985803,2.013242088518241,2.009018006298658,3418.3675083689436
+63.1,54.163500442473875,0.393208148069568,3406.113679177088,53.9796145669903,2.012994801801828,2.0088783883463677,3423.8303208229117
+63.2,54.163295472120325,0.3932038967900054,3411.474756124179,53.97903095133194,2.012747515085415,2.0087387703940776,3429.293243875821
+63.3,54.16309047899415,0.39319964621575126,3416.8357224771444,53.978447432498335,2.0125002283690017,2.0085991524417874,3434.756277522855
+63.4,54.1628854630901,0.393195396344017,3422.1965782407615,53.97786401010665,2.0122529416525885,2.0084595344894973,3440.219421759238
+63.5,54.162680424402915,0.3931911471720267,3427.557323419765,53.977280683775824,2.012005654936175,2.008319916537207,3445.682676580235
+63.6,54.16247536292731,0.39318689869701756,3432.9179580188497,53.97669745312657,2.011758368219762,2.0081802985849166,3451.14604198115
+63.7,54.16227027865803,0.39318265091623955,3438.278482042673,53.97611431778137,2.0115110815033486,2.008040680632627,3456.6095179573267
+63.8,54.1620651715898,0.3931784038269554,3443.638895495851,53.97553127736444,2.0112637947869354,2.007901062680337,3462.0731045041484
+63.9,54.16186004171737,0.3931741574264406,3448.9991983829627,53.974948331501764,2.0110165080705222,2.0077614447280463,3467.536801617037
+64.0,54.16165488903544,0.39316991171198307,3454.3593907085465,53.97436547982104,2.010769221354109,2.007621826775756,3473.000609291453
+64.1,54.161449713538744,0.39316566668088326,3459.719472477101,53.97378272195166,2.010521934637696,2.0074822088234665,3478.464527522898
+64.2,54.161244515222016,0.39316142233045426,3465.0794436930896,53.97320005752476,2.0102746479212827,2.007342590871176,3483.9285563069107
+64.3,54.16103929407998,0.3931571786580213,3470.4393043609343,53.972617486173164,2.010027361204869,2.007202972918886,3489.392695639065
+64.4,54.16083405010733,0.3931529356609218,3475.799054485019,53.972035007531346,2.009780074488456,2.0070633549665957,3494.8569455149814
+64.5,54.16062878329881,0.3931486933365056,3481.1586940696893,53.97145262123549,2.009532787772043,2.0069237370143056,3500.3213059303102
+64.6,54.16042349364912,0.3931444516821346,3486.518223119254,53.97087032692344,2.0092855010556296,2.0067841190620155,3505.7857768807453
+64.7,54.16021818115299,0.39314021069518285,3491.877641637985,53.9702881242347,2.0090382143392165,2.0066445011097254,3511.2503583620146
+64.8,54.16001284580512,0.393135970373036,3497.2369496301126,53.969706012810384,2.008790927622803,2.006504883157435,3516.7150503698867
+64.9,54.15980748760022,0.3931317307130921,3502.5961470998345,53.969123992293284,2.0085436409063897,2.0063652652051447,3522.1798529001658
+65.0,54.15960210653301,0.3931274917127606,3507.955234051306,53.968542062327785,2.0082963541899765,2.006225647252855,3527.6447659486935
+65.1,54.15939670259818,0.393123253369463,3513.3142104886483,53.96796022255989,2.0080490674735634,2.0060860293005645,3533.1097895113508
+65.2,54.15919127579045,0.3931190156806325,3518.6730764159474,53.96737847263723,2.00780178075715,2.0059464113482743,3538.5749235840526
+65.3,54.15898582610451,0.3931147786437135,3524.031831837247,53.96679681220899,2.007554494040737,2.0058067933959842,3544.0401681627523
+65.4,54.15878035353507,0.3931105422561624,3529.390476756559,53.966215240925976,2.0073072073243234,2.005667175443694,3549.505523243441
+65.5,54.15857485807683,0.3931063065154469,3534.749011177856,53.96563375844055,2.0070599206079107,2.005527557491404,3554.970988822143
+65.6,54.15836933972448,0.393102071419046,3540.107435105075,53.96505236440664,2.006812633891497,2.005387939539114,3560.436564894924
+65.7,54.15816379847272,0.39309783696445016,3545.465748542118,53.964471058479724,2.006565347175084,2.0052483215868233,3565.902251457882
+65.8,54.15795823431625,0.3930936031491612,3550.8239514928487,53.96388984031685,2.006318060458671,2.0051087036345336,3571.3680485071504
+65.9,54.157752647249744,0.3930893699706918,3556.1820439610965,53.96330870957657,2.0060707737422576,2.0049690856822435,3576.8339560389036
+66.0,54.1575470372679,0.3930851374265661,3561.5400259506537,53.962727665919,2.0058234870258445,2.004829467729953,3582.299974049346
+66.1,54.15734140436542,0.39308090551431907,3566.8978974652778,53.96214670900572,2.0055762003094313,2.004689849777663,3587.766102534721
+66.2,54.15713574853697,0.3930766742314968,3572.2556585086922,53.96156583849988,2.0053289135930177,2.004550231825373,3593.2323414913076
+66.3,54.15693006977724,0.3930724435756562,3577.613309084581,53.96098505406608,2.0050816268766045,2.0044106138730826,3598.6986909154184
+66.4,54.15672436808092,0.39306821354436516,3582.970849196598,53.96040435537045,2.0048343401601914,2.0042709959207925,3604.165150803402
+66.5,54.15651864344268,0.39306398413520227,3588.3282788483575,53.959823742080566,2.004587053443778,2.0041313779685024,3609.631721151642
+66.6,54.156312895857205,0.39305975534575693,3593.685598043443,53.95924321386551,2.004339766727365,2.003991760016212,3615.0984019565562
+66.7,54.15610712531917,0.393055527173629,3599.0428067854,53.9586627703958,2.0040924800109514,2.003852142063922,3620.5651932146
+66.8,54.155901331823245,0.39305129961642926,3604.3999050777397,53.95808241134341,2.0038451932945383,2.003712524111632,3626.0320949222596
+66.9,54.15569551536411,0.3930470726717789,3609.7568929239433,53.957502136381805,2.003597906578125,2.0035729061593415,3631.499107076057
+67.0,54.15548967593642,0.3930428463373092,3615.113770327449,53.956921945185805,2.003350619861712,2.0034332882070514,3636.9662296725505
+67.1,54.155283813534865,0.3930386206106624,3620.4705372916696,53.956341837431744,2.0031033331452988,2.0032936702547617,3642.4334627083294
+67.2,54.1550779281541,0.39303439548949104,3625.8271938199805,53.95576181279733,2.0028560464288856,2.003154052302471,3647.9008061800196
+67.3,54.1548720197888,0.39303017097145754,3631.1837399157216,53.95518187096169,2.002608759712472,2.003014434350181,3653.368260084278
+67.4,54.15466608843361,0.3930259470542347,3636.5401755822004,53.954602011605346,2.0023614729960593,2.002874816397891,3658.8358244178
+67.5,54.1544601340832,0.3930217237355058,3641.896500822691,53.95402223441024,2.0021141862796457,2.0027351984456008,3664.3034991773084
+67.6,54.15425415673223,0.3930175010129638,3647.2527156404335,53.95344253905967,2.0018668995632325,2.0025955804933107,3669.7712843595655
+67.7,54.15404815637537,0.3930132788843121,3652.6088200386375,53.952862925238364,2.0016196128468193,2.0024559625410205,3675.2391799613624
+67.8,54.15384213300726,0.3930090573472637,3657.9648140204745,53.95228339263237,2.001372326130406,2.00231634458873,3680.707185979525
+67.9,54.15363608662254,0.39300483639954165,3663.320697589085,53.95170394092908,2.001125039413993,2.0021767266364403,3686.1753024109157
+68.0,54.153430017215896,0.3930006160388791,3668.676470747578,53.951124569817324,2.0008777526975794,2.00203710868415,3691.6435292524216
+68.1,54.15322392478196,0.3929963962630188,3674.0321334990294,53.95054527898722,2.0006304659811662,2.0018974907318596,3697.1118665009694
+68.2,54.15301780931537,0.39299217706971307,3679.3876858464805,53.94996606813021,2.0003831792647535,2.0017578727795695,3702.5803141535193
+68.3,54.15281167081079,0.3929879584567243,3684.7431277929413,53.94938693693911,2.00013589254834,2.0016182548272794,3708.048872207058
+68.4,54.15260550926286,0.39298374042182443,3690.098459341391,53.94880788510805,1.9998886058319265,2.0014786368749893,3713.517540658609
+68.5,54.152399324666206,0.3929795229627946,3695.453680494772,53.94822891233244,1.9996413191155136,2.001339018922699,3718.9863195052276
+68.6,54.15219311701549,0.392975306077426,3700.808791256,53.94765001830904,1.9993940323991002,2.001199400970409,3724.4552087439993
+68.7,54.15198688630534,0.3929710897635191,3706.1637916279565,53.9470712027359,1.999146745682687,2.0010597830181185,3729.9242083720437
+68.8,54.1517806325304,0.3929668740188836,3711.5186816134888,53.94649246531234,1.9988994589662736,2.000920165065829,3735.3933183865106
+68.9,54.15157435568528,0.39296265884133863,3716.8734612154153,53.94591380573897,1.9986521722498605,2.0007805471135387,3740.862538784585
+69.0,54.151368055764635,0.392958444228713,3722.228130436523,53.94533522371772,1.998404885533447,2.000640929161248,3746.331869563477
+69.1,54.151161732763086,0.3929542301788441,3727.582689279564,53.94475671895172,1.9981575988170341,2.000501311208958,3751.801310720435
+69.2,54.150955386675285,0.3929500166895793,3732.937137747265,53.94417829114544,1.9979103121006208,2.0003616932566683,3757.2708622527352
+69.3,54.150749017495826,0.3929458037587744,3738.291475842315,53.943599940004546,1.9976630253842076,2.000222075304378,3762.7405241576844
+69.4,54.150542625219344,0.3929415913842945,3743.6457035673757,53.94302166523595,1.9974157386677942,2.0000824573520877,3768.210296432625
+69.5,54.15033620984047,0.39293737956401403,3748.9998209250757,53.94244346654785,1.9971684519513813,1.9999428393997973,3773.680179074924
+69.6,54.15012977135382,0.39293316829581626,3754.353827918016,53.94186534364966,1.9969211652349679,1.9998032214475074,3779.150172081983
+69.7,54.149923309754016,0.3929289575775932,3759.7077245487644,53.941287296252,1.9966738785185545,1.9996636034952173,3784.6202754512356
+69.8,54.14971682503567,0.3929247474072459,3765.061510819857,53.940709324066724,1.9964265918021413,1.999523985542927,3790.090489180142
+69.9,54.149510317193396,0.3929205377826844,3770.4151867338032,53.94013142680691,1.9961793050857284,1.9993843675906369,3795.5608132661973
+70.0,54.14930378622182,0.392916328701827,3775.768752293077,53.93955360418681,1.995932018369315,1.9992447496383465,3801.031247706923
+70.1,54.14909723211554,0.3929121201626013,3781.1222075001256,53.93897585592191,1.9956847316529016,1.9991051316860566,3806.5017924998733
+70.2,54.148890654869156,0.39290791216294335,3786.4755523573663,53.938398181728864,1.9954374449364884,1.9989655137337665,3811.9724476426336
+70.3,54.14868405447731,0.3929037047007979,3791.8287868671846,53.93782058132553,1.9951901582200753,1.9988258957814762,3817.4432131328144
+70.4,54.14847743093457,0.3928994977741179,3797.1819110319366,53.937243054430915,1.9949428715036621,1.998686277829186,3822.9140889680634
+70.5,54.14827078423556,0.3928952913808656,3802.5349248539487,53.93666560076523,1.9946955847872487,1.998546659876896,3828.385075146051
+70.6,54.148064114374876,0.39289108551901103,3807.8878283355184,53.93608822004984,1.9944482980708356,1.9984070419246058,3833.856171664481
+70.7,54.14785742134712,0.392886880186533,3813.240621478913,53.93551091200725,1.9942010113544222,1.9982674239723155,3839.327378521087
+70.8,54.1476507051469,0.39288267538141874,3818.5933042863708,53.93493367636117,1.993953724638009,1.9981278060200254,3844.7986957136286
+70.9,54.14744396576878,0.39287847110166346,3823.945876760098,53.93435651283636,1.9937064379215956,1.9979881880677355,3850.270123239902
+71.0,54.147237203207396,0.39287426734527114,3829.2983389022766,53.933779421158825,1.9934591512051827,1.9978485701154451,3855.741661097723
+71.1,54.1470304174573,0.3928700641102536,3834.650690715054,53.93320240105562,1.9932118644887693,1.997708952163155,3861.213309284945
+71.2,54.14682360851311,0.39286586139463125,3840.0029322005544,53.932625452254975,1.9929645777723561,1.9975693342108647,3866.6850677994457
+71.3,54.1466167763694,0.3928616591964323,3845.3550633608675,53.932048574486224,1.9927172910559428,1.9974297162585748,3872.156936639132
+71.4,54.146409921020776,0.39285745751369344,3850.7070841980603,53.931471767479835,1.9924700043395298,1.9972900983062847,3877.62891580194
+71.5,54.14620304246179,0.3928532563444589,3856.058994714163,53.930895030967314,1.9922227176231164,1.9971504803539943,3883.101005285837
+71.6,54.14599614068704,0.3928490556867813,3861.4107949111835,53.93031836468134,1.9919754309067033,1.997010862401704,3888.5732050888155
+71.7,54.14578921569111,0.39284485553872145,3866.7624847911025,53.92974176835568,1.9917281441902899,1.9968712444494139,3894.0455152088975
+71.8,54.14558226746858,0.39284065589834766,3872.1140643558665,53.929165241725165,1.9914808574738765,1.996731626497124,3899.5179356441326
+71.9,54.14537529601402,0.3928364567637362,3877.4655336073984,53.9285887845257,1.9912335707574635,1.9965920085448337,3904.9904663926022
+72.0,54.14516830132201,0.39283225813297135,3882.8168925475898,53.9280123964943,1.9909862840410504,1.9964523905925435,3910.46310745241
+72.1,54.14496128338712,0.39282806000414505,3888.168141178307,53.92743607736903,1.990738997324637,1.9963127726402536,3915.9358588216924
+72.2,54.14475424220391,0.39282386237535705,3893.519279501387,53.926859826889014,1.9904917106082236,1.9961731546879633,3921.408720498613
+72.3,54.14454717776696,0.39281966524471484,3898.8703075186386,53.92628364479445,1.9902444238918107,1.9960335367356732,3926.8816924813605
+72.4,54.14434009007084,0.39281546861033356,3904.2212252318454,53.92570753082659,1.9899971371753973,1.9958939187833828,3932.3547747681546
+72.5,54.144132979110104,0.39281127247033587,3909.5720326427586,53.92513148472771,1.9897498504589841,1.9957543008310927,3937.827967357241
+72.6,54.14392584487932,0.3928070768228522,3914.9227297531074,53.924555506241155,1.9895025637425707,1.9956146828788026,3943.3012702468914
+72.7,54.14371868737305,0.3928028816660205,3920.273316564591,53.92397959511129,1.9892552770261576,1.9954750649265125,3948.774683435409
+72.8,54.14351150658585,0.3927986869979859,3925.6237930788793,53.92340375108351,1.9890079903097442,1.9953354469742222,3954.2482069211196
+72.9,54.14330430251228,0.39279449281690154,3930.9741592976193,53.92282797390424,1.9887607035933312,1.995195829021932,3959.7218407023806
+73.0,54.14309707514689,0.39279029912092744,3936.3244152224274,53.92225226332092,1.9885134168769178,1.9950562110696421,3965.1955847775725
+73.1,54.14288982448425,0.39278610590823143,3941.674560854895,53.921676619082014,1.9882661301605047,1.9949165931173518,3970.669439145104
+73.2,54.142682550518884,0.39278191317698846,3947.0245961965866,53.921101040936975,1.9880188434440913,1.9947769751650617,3976.143403803413
+73.3,54.14247525324536,0.39277772092538055,3952.3745212490367,53.92052552863625,1.9877715567276784,1.9946373572127714,3981.6174787509626
+73.4,54.142267932658214,0.3927735291515975,3957.7243360137586,53.91995008193131,1.987524270011265,1.9944977392604812,3987.0916639862417
+73.5,54.14206058875199,0.392769337853836,3963.0740404922335,53.91937470057461,1.9872769832948516,1.9943581213081913,3992.565959507766
+73.6,54.14185322152126,0.3927651470303001,3968.423634685922,53.9187993843196,1.9870296965784384,1.994218503355901,3998.040365314077
+73.7,54.14164583096052,0.3927609566792005,3973.773118596252,53.91822413292065,1.9867824098620255,1.9940788854036107,4003.514881403748
+73.8,54.14143841706434,0.39275676679875576,3979.1224922246297,53.9176489461332,1.986535123145612,1.9939392674513208,4008.9895077753695
+73.9,54.14123097982725,0.39275257738719094,3984.4717555724333,53.91707382371357,1.9862878364291987,1.9937996494990307,4014.464244427567
+74.0,54.14102351924378,0.39274838844273824,3989.820908641014,53.91649876541911,1.9860405497127855,1.9936600315467403,4019.939091358986
+74.1,54.140816035308475,0.3927441999636371,3995.1699514317,53.9159237710081,1.9857932629963722,1.9935204135944502,4025.4140485682988
+74.2,54.14060852801586,0.3927400119481335,4000.5188839457915,53.91534884023977,1.9855459762799592,1.9933807956421599,4030.8891160542084
+74.3,54.14040099736046,0.3927358243944807,4005.867706184561,53.91477397287431,1.9852986895635458,1.99324117768987,4036.3642938154385
+74.4,54.1401934433368,0.39273163730093846,4011.2164181492594,53.91419916867284,1.9850514028471327,1.9931015597375799,4041.8395818507406
+74.5,54.139985865939416,0.39272745066577386,4016.565019841109,53.91362442739744,1.9848041161307193,1.9929619417852895,4047.3149801588906
+74.6,54.139778265162825,0.3927232644872604,4021.913511261308,53.913049748811105,1.9845568294143061,1.9928223238329992,4052.790488738691
+74.7,54.13957064100155,0.3927190787636784,4027.2618924110297,53.91247513267777,1.984309542697893,1.9926827058807093,4058.2661075889705
+74.8,54.139362993450106,0.392714893493315,4032.6101632914188,53.911900578762285,1.9840622559814798,1.9925430879284192,4063.7418367085806
+74.9,54.13915532250303,0.39271070867446406,4037.958323903599,53.91132608683043,1.9838149692650664,1.9924034699761288,4069.2176760964007
+75.0,54.13894762815481,0.39270652430542596,4043.3063742486656,53.91075165664888,1.9835676825486532,1.9922638520238387,4074.693625751334
+75.1,54.13873991039998,0.3927023403845077,4048.65431432769,53.91017728798522,1.9833203958322398,1.9921242340715488,4080.1696856723092
+75.2,54.13853216923304,0.3926981569100231,4054.00214414172,53.90960298060797,1.9830731091158265,1.9919846161192585,4085.6458558582804
+75.3,54.13832440464849,0.39269397388029215,4059.349863691774,53.90902873428651,1.9828258223994135,1.9918449981669684,4091.1221363082254
+75.4,54.138116616640865,0.3926897912936418,4064.697472978852,53.90845454879114,1.9825785356830004,1.991705380214678,4096.598527021148
+75.5,54.13790880520465,0.392685609148405,4070.0449720039246,53.90788042389304,1.982331248966587,1.9915657622623881,4102.075027996075
+75.6,54.13770097033436,0.39268142744292156,4075.392360767939,53.90730635936428,1.9820839622501736,1.9914261443100978,4107.55163923206
+75.7,54.137493112024494,0.3926772461755376,4080.73963927182,53.906732354977805,1.9818366755337606,1.9912865263578077,4113.02836072818
+75.8,54.13728523026955,0.39267306534460533,4086.0868075164626,53.90615841050742,1.9815893888173475,1.9911469084055173,4118.505192483537
+75.9,54.13707732506402,0.39266888494848373,4091.4338655027436,53.905584525727846,1.981342102100934,1.9910072904532272,4123.982134497256
+76.0,54.1368693964024,0.3926647049855377,4096.78081323151,53.905010700414614,1.9810948153845207,1.9908676725009373,4129.4591867684885
+76.1,54.1366614442792,0.3926605254541387,4102.12765070359,53.90443693434416,1.9808475286681078,1.990728054548647,4134.9363492964085
+76.2,54.1364534686889,0.3926563463526644,4107.474377919785,53.90386322729377,1.9806002419516944,1.9905884365963569,4140.413622080215
+76.3,54.136245469625976,0.39265216767949834,4112.820994880869,53.903289579041534,1.9803529552352812,1.9904488186440665,4145.891005119131
+76.4,54.136037447084945,0.39264798943303086,4118.167501587599,53.90271598936648,1.9801056685188678,1.9903092006917766,4151.368498412401
+76.5,54.13582940106027,0.3926438116116579,4123.513898040702,53.902142458048395,1.9798583818024547,1.9901695827394865,4156.846101959298
+76.6,54.13562133154644,0.39263963421378173,4128.860184240884,53.90156898486795,1.9796110950860415,1.9900299647871962,4162.323815759114
+76.7,54.13541323853795,0.3926354572378107,4134.20636018883,53.90099556960665,1.9793638083696283,1.9898903468349058,4167.8016398111695
+76.8,54.13520512202926,0.3926312806821592,4139.552425885195,53.90042221204681,1.979116521653215,1.989750728882616,4173.279574114804
+76.9,54.13499698201486,0.39262710454524763,4144.898381330616,53.899848911971596,1.9788692349368018,1.9896111109303258,4178.757618669384
+77.0,54.13478881848923,0.39262292882550237,4150.244226525702,53.899275669164965,1.9786219482203884,1.9894714929780355,4184.235773474297
+77.1,54.134580631446816,0.3926187535213557,4155.589961471043,53.89870248341172,1.9783746615039755,1.9893318750257454,4189.714038528956
+77.2,54.13437242088213,0.39261457863124605,4160.935586167205,53.89812935449746,1.978127374787562,1.9891922570734555,4195.192413832796
+77.3,54.134164186789604,0.39261040415361736,4166.281100614725,53.8975562822086,1.9778800880711487,1.9890526391211651,4200.670899385274
+77.4,54.13395592916374,0.39260623008692,4171.626504814127,53.89698326633238,1.9776328013547355,1.988913021168875,4206.149495185874
+77.5,54.13374764799898,0.3926020564296095,4176.971798765901,53.89641030665679,1.9773855146383226,1.9887734032165847,4211.628201234098
+77.6,54.1335393432898,0.39259788318014754,4182.316982470523,53.895837402970656,1.9771382279219092,1.9886337852642946,4217.107017529476
+77.7,54.133331015030656,0.3925937103370018,4187.662055928443,53.89526455506361,1.9768909412054958,1.9884941673120045,4222.585944071557
+77.8,54.133122663216,0.39258953789864515,4193.007019140084,53.89469176272601,1.9766436544890826,1.9883545493597143,4228.0649808599155
+77.9,54.1329142878403,0.39258536586355675,4198.351872105853,53.89411902574907,1.9763963677726692,1.988214931407424,4233.544127894147
+78.0,54.13270588889802,0.39258119423022114,4203.696614826131,53.893546343924754,1.9761490810562563,1.9880753134551339,4239.0233851738685
+78.1,54.132497466383604,0.3925770229971283,4209.041247301275,53.89297371704578,1.975901794339843,1.987935695502844,4244.502752698724
+78.2,54.132289020291495,0.3925728521627743,4214.385769531623,53.89240114490566,1.9756545076234298,1.9877960775505537,4249.982230468377
+78.3,54.13208055061616,0.3925686817256607,4219.730181517488,53.89182862729869,1.9754072209070164,1.9876564595982635,4255.461818482512
+78.4,54.131872057352034,0.3925645116842942,4225.074483259161,53.89125616401991,1.9751599341906032,1.9875168416459732,4260.941516740839
+78.5,54.13166354049357,0.3925603420371876,4230.418674756912,53.890683754865115,1.97491264747419,1.9873772236936833,4266.421325243088
+78.6,54.1314550000352,0.3925561727828589,4235.762756010987,53.890111399630875,1.9746653607577769,1.9872376057413932,4271.901243989012
+78.7,54.13124643597138,0.39255200391983175,4241.106727021611,53.8895390981145,1.9744180740413635,1.9870979877891028,4277.381272978389
+78.8,54.13103784829654,0.39254783544663496,4246.450587788987,53.888966850114045,1.9741707873249503,1.9869583698368125,4282.861412211013
+78.9,54.13082923700514,0.39254366736180324,4251.794338313297,53.88839465542835,1.973923500608537,1.9868187518845226,4288.341661686703
+79.0,54.13062060209158,0.3925394996638762,4257.137978594697,53.887822513856925,1.9736762138921236,1.9866791339322325,4293.822021405303
+79.1,54.13041194355031,0.39253533235139904,4262.481508633325,53.88725042520006,1.9734289271757106,1.9865395159799422,4299.302491366675
+79.2,54.13020326137577,0.3925311654229226,4267.824928429298,53.88667838925881,1.9731816404592974,1.986399898027652,4304.783071570702
+79.3,54.12999455556238,0.39252699887700243,4273.168237982707,53.886106405834894,1.972934353742884,1.9862602800753617,4310.263762017293
+79.4,54.12978582610457,0.39252283271219995,4278.511437293627,53.88553447473081,1.9726870670264707,1.9861206621230718,4315.7445627063735
+79.5,54.12957707299677,0.3925186669270815,4283.854526362105,53.88496259574975,1.9724397803100577,1.9859810441707817,4321.2254736378945
+79.6,54.129368296233395,0.39251450152021866,4289.197505188172,53.884390768695624,1.9721924935936446,1.9858414262184914,4326.706494811828
+79.7,54.129159495808864,0.3925103364901884,4294.540373771833,53.88381899337307,1.9719452068772312,1.985701808266201,4332.187626228166
+79.8,54.12895067171761,0.39250617183557296,4299.883132113078,53.88324726958745,1.9716979201608178,1.9855621903139111,4337.668867886921
+79.9,54.128741823954044,0.39250200755495923,4305.22578021187,53.882675597144804,1.9714506334444049,1.985422572361621,4343.15021978813
+80.0,54.12853295251258,0.3924978436469398,4310.568318068152,53.8821039758519,1.9712033467279915,1.9852829544093307,4348.631681931848
+80.1,54.12832405738764,0.3924936801101121,4315.910745681847,53.8815324055162,1.9709560600115783,1.9851433364570406,4354.113254318152
+80.2,54.12811513857361,0.3924895169430787,4321.253063052857,53.880960885945846,1.970708773295165,1.9850037185047507,4359.594936947143
+80.3,54.12790619606493,0.3924853541444472,4326.595270181062,53.88038941694971,1.9704614865787518,1.9848641005524603,4365.076729818938
+80.4,54.127697229856,0.39248119171283025,4331.937367066323,53.87981799833734,1.9702141998623386,1.9847244826001702,4370.558632933678
+80.5,54.12748823994121,0.39247702964684544,4337.279353708474,53.87924662991894,1.9699669131459254,1.9845848646478799,4376.040646291525
+80.6,54.12727922631497,0.39247286794511543,4342.621230107338,53.87867531150545,1.969719626429512,1.98444524669559,4381.52276989266
+80.7,54.12707018897169,0.39246870660626787,4347.962996262712,53.878104042908454,1.9694723397130989,1.9843056287432999,4387.005003737288
+80.8,54.12686112790576,0.39246454562893524,4353.30465217437,53.87753282394023,1.9692250529966855,1.9841660107910095,4392.487347825629
+80.9,54.126652043111584,0.3924603850117549,4358.64619784207,53.87696165441372,1.9689777662802725,1.9840263928387192,4397.96980215793
+81.0,54.12644293458356,0.3924562247533694,4363.987633265547,53.87639053414255,1.9687304795638592,1.983886774886429,4403.452366734453
+81.1,54.126233802316065,0.3924520648524256,4369.328958444514,53.87581946294099,1.9684831928474458,1.9837471569341392,4408.935041555485
+81.2,54.1260246463035,0.3924479053075758,4374.670173378669,53.875248440624,1.9682359061310326,1.9836075389818488,4414.417826621331
+81.3,54.125815466540246,0.39244374611747646,4380.011278067683,53.87467746700717,1.9679886194146197,1.9834679210295587,4419.900721932317
+81.4,54.125606263020714,0.39243958728078954,4385.352272511213,53.87410654190679,1.9677413326982063,1.9833283030772684,4425.383727488787
+81.5,54.12539703573927,0.3924354287961813,4390.693156708891,53.87353566513977,1.967494045981793,1.9831886851249785,4430.866843291108
+81.6,54.12518778469029,0.39243127066232275,4396.033930660331,53.87296483652367,1.9672467592653797,1.9830490671726884,4436.350069339667
+81.7,54.124978509868164,0.39242711287788984,4401.374594365128,53.87239405587672,1.9669994725489663,1.982909449220398,4441.833405634872
+81.8,54.124769211267285,0.39242295544156314,4406.715147822855,53.87182332301779,1.9667521858325534,1.9827698312681077,4447.316852177144
+81.9,54.124559888882004,0.3924187983520277,4412.055591033065,53.87125263776636,1.96650489911614,1.9826302133158178,4452.800408966935
+82.0,54.12435054270671,0.39241464160797335,4417.395923995292,53.87068199994258,1.9662576123997269,1.9824905953635277,4458.2840760047075
+82.1,54.12414117273578,0.39241048520809485,4422.736146709052,53.87011140936726,1.9660103256833135,1.9823509774112373,4463.767853290947
+82.2,54.12393177896357,0.39240632915109086,4428.076259173837,53.86954086586176,1.9657630389669003,1.9822113594589472,4469.251740826163
+82.3,54.12372236138446,0.39240217343566525,4433.416261389121,53.86897036924813,1.9655157522504871,1.9820717415066573,4474.735738610878
+82.4,54.12351291999281,0.3923980180605264,4438.756153354363,53.86839991934906,1.965268465534074,1.981932123554367,4480.2198466456375
+82.5,54.123303454783,0.39239386302438667,4444.095935068995,53.86782951598781,1.9650211788176606,1.9817925056020769,4485.704064931006
+82.6,54.12309396574936,0.3923897083259636,4449.435606532432,53.86725915898828,1.9647738921012474,1.9816528876497865,4491.188393467567
+82.7,54.12288445288629,0.39238555396397895,4454.775167744076,53.86668884817503,1.964526605384834,1.9815132696974964,4496.672832255925
+82.8,54.12267491618812,0.39238139993715876,4460.114618703296,53.86611858337315,1.9642793186684206,1.9813736517452063,4502.157381296703
+82.9,54.12246535564921,0.39237724624423376,4465.453959409458,53.86554836440841,1.9640320319520077,1.9812340337929162,4507.642040590543
+83.0,54.122255771263916,0.3923730928839392,4470.793189861895,53.86497819110717,1.9637847452355945,1.9810944158406258,4513.126810138105
+83.1,54.1220461630266,0.39236893985501436,4476.132310059928,53.86440806329637,1.9635374585191812,1.980954797888336,4518.61168994007
+83.2,54.12183653093161,0.3923647871562034,4481.471320002859,53.863837980803595,1.9632901718027678,1.9808151799360458,4524.09667999714
+83.3,54.12162687497328,0.39236063478625427,4486.810219689967,53.86326794345699,1.9630428850863548,1.9806755619837555,4529.581780310033
+83.4,54.121417195145966,0.3923564827439198,4492.149009120515,53.86269795108531,1.9627955983699414,1.9805359440314654,4535.066990879485
+83.5,54.12120749144402,0.3923523310279568,4497.487688293745,53.86212800351791,1.9625483116535283,1.980396326079175,4540.552311706254
+83.6,54.12099776386177,0.39234817963712654,4502.826257208883,53.86155810058474,1.962301024937115,1.9802567081268851,4546.037742791115
+83.7,54.12078801239356,0.3923440285701945,4508.164715865134,53.8609882421163,1.962053738220702,1.980117090174595,4551.523284134865
+83.8,54.120578237033726,0.3923398778259303,4513.503064261683,53.86041842794371,1.9618064515042886,1.9799774722223047,4557.008935738316
+83.9,54.12036843777661,0.3923357274031082,4518.841302397701,53.859848657898695,1.9615591647878754,1.9798378542700144,4562.494697602299
+84.0,54.120158614616535,0.39233157730050616,4524.179430272333,53.859278931813485,1.961311878071462,1.9796982363177245,4567.980569727667
+84.1,54.11994876754785,0.39232742751690675,4529.517447884712,53.858709249520956,1.9610645913550488,1.9795586183654343,4573.4665521152865
+84.2,54.11973889656486,0.39232327805109646,4534.855355233951,53.85813961085452,1.9608173046386357,1.979419000413144,4578.952644766049
+84.3,54.119529001661924,0.3923191289018662,4540.193152319142,53.85757001564819,1.9605700179222225,1.9792793824608539,4584.438847680857
+84.4,54.11931908283333,0.3923149800680106,4545.530839139361,53.8570004637365,1.9603227312058091,1.9791397645085635,4589.925160860639
+84.5,54.119109140073434,0.39231083154832896,4550.868415693664,53.856430954954604,1.9600754444893957,1.9790001465562737,4595.4115843063355
+84.6,54.11889917337653,0.39230668334162416,4556.205881981088,53.855861489138164,1.9598281577729826,1.9788605286039835,4600.89811801891
+84.7,54.118689182736965,0.39230253544670346,4561.543238000657,53.855292066123454,1.9595808710565696,1.9787209106516932,4606.384761999343
+84.8,54.11847916814903,0.39229838786237814,4566.880483751368,53.85472268574727,1.9593335843401563,1.9785812926994033,4611.8715162486305
+84.9,54.11826912960706,0.3922942405874635,4572.2176192322095,53.85415334784698,1.9590862976237429,1.978441674747113,4617.3583807677915
+85.0,54.11805906710535,0.39229009362077866,4577.554644442142,53.853584052260494,1.9588390109073297,1.9783020567948228,4622.845355557857
+85.1,54.11784898063823,0.3922859469611473,4582.8915593801175,53.8530147988263,1.9585917241909168,1.9781624388425325,4628.332440619881
+85.2,54.1176388702,0.3922818006073964,4588.228364045064,53.85244558738338,1.9583444374745034,1.9780228208902424,4633.819635954936
+85.3,54.117428735784955,0.39227765455835734,4593.565058435891,53.851876417771294,1.95809715075809,1.9778832029379525,4639.3069415641085
+85.4,54.11721857738742,0.3922735088128654,4598.901642551496,53.85130728983016,1.9578498640416768,1.9777435849856622,4644.794357448504
+85.5,54.11700839500168,0.3922693633697595,4604.23811639075,53.85073820340059,1.9576025773252634,1.977603967033372,4650.281883609249
+85.6,54.11679818862204,0.3922652182278829,4609.574479952514,53.850169158323766,1.9573552906088505,1.9774643490810817,4655.769520047485
+85.7,54.11658795824281,0.3922610733860825,4614.910733235629,53.84960015444141,1.957108003892437,1.9773247311287918,4661.257266764371
+85.8,54.11637770385828,0.3922569288432092,4620.246876238915,53.849031191595756,1.956860717176024,1.9771851131765017,4666.745123761084
+85.9,54.116167425462734,0.3922527845981174,4625.582908961179,53.84846226962956,1.9566134304596106,1.9770454952242114,4672.233091038821
+86.0,54.11595712305047,0.3922486406496659,4630.918831401207,53.84789338838613,1.9563661437431974,1.976905877271921,4677.721168598792
+86.1,54.11574679661578,0.3922444969967168,4636.254643557769,53.847324547709285,1.9561188570267842,1.9767662593196311,4683.20935644223
+86.2,54.11553644615295,0.39224035363813636,4641.590345429618,53.84675574744336,1.955871570310371,1.976626641367341,4688.697654570382
+86.3,54.11532607165628,0.3922362105727946,4646.925937015489,53.84618698743324,1.9556242835939577,1.9764870234150507,4694.1860629845105
+86.4,54.11511567312003,0.392232067799565,4652.261418314098,53.84561826752428,1.9553769968775445,1.9763474054627606,4699.674581685902
+86.5,54.11490525053849,0.392227925317325,4657.596789324145,53.84504958756237,1.9551297101611311,1.9762077875104707,4705.163210675854
+86.6,54.11469480390595,0.39222378312495587,4662.932050044315,53.84448094739394,1.9548824234447177,1.9760681695581803,4710.651949955684
+86.7,54.11448433321667,0.3922196412213424,4668.267200473272,53.843912346865885,1.9546351367283048,1.9759285516058902,4716.140799526727
+86.8,54.11427383846493,0.3922154996053731,4673.602240609664,53.843343785825624,1.9543878500118916,1.9757889336535999,4721.6297593903355
+86.9,54.11406331964502,0.39221135827594045,4678.9371704521245,53.84277526412111,1.9541405632954783,1.9756493157013095,4727.118829547876
+87.0,54.113852776751195,0.39220721723194024,4684.271989999266,53.84220678160076,1.9538932765790649,1.9755096977490196,4732.608010000734
+87.1,54.11364220977772,0.3922030764722719,4689.606699249684,53.84163833811349,1.953645989862652,1.9753700797967295,4738.097300750314
+87.2,54.113431618718884,0.39219893599583894,4694.941298201965,53.84106993350877,1.9533987031462385,1.9752304618444392,4743.586701798035
+87.3,54.113221003568924,0.3921947958015478,4700.275786854664,53.84050156763648,1.9531514164298254,1.975090843892149,4749.076213145335
+87.4,54.11301036432213,0.3921906558883091,4705.610165206335,53.83993324034708,1.952904129713412,1.9749512259398592,4754.565834793665
+87.5,54.112799700972744,0.3921865162550368,4710.944433255503,53.83936495149146,1.952656842996999,1.9748116079875688,4760.055566744497
+87.6,54.11258901351502,0.3921823769006484,4716.27859100068,53.83879670092101,1.9524095562805857,1.9746719900352787,4765.545408999319
+87.7,54.11237830194323,0.39217823782406486,4721.612638440365,53.83822848848762,1.9521622695641725,1.9745323720829884,4771.035361559635
+87.8,54.11216756625163,0.3921740990242111,4726.946575573036,53.837660314043696,1.951914982847759,1.9743927541306985,4776.525424426963
+87.9,54.11195680643445,0.3921699605000149,4732.280402397156,53.837092177442045,1.951667696131346,1.9742531361784081,4782.0155976028445
+88.0,54.11174602248596,0.3921658222504081,4737.61411891117,53.83652407853602,1.9514204094149328,1.974113518226118,4787.5058810888295
+88.1,54.111535214400405,0.39216168427432585,4742.9477251135095,53.835956017179456,1.9511731226985196,1.9739739002738277,4792.996274886489
+88.2,54.11132438217203,0.3921575465707066,4748.281221002587,53.835387993226604,1.9509258359821062,1.9738342823215378,4798.486778997413
+88.3,54.11111352579507,0.39215340913849234,4753.614606576796,53.83482000653223,1.9506785492656928,1.9736946643692477,4803.9773934232035
+88.4,54.11090264526377,0.39214927197662874,4758.947881834521,53.83425205695159,1.9504312625492797,1.9735550464169573,4809.46811816548
+88.5,54.11069174057238,0.3921451350840644,4764.281046774123,53.83368414434037,1.9501839758328667,1.9734154284646672,4814.958953225877
+88.6,54.11048081171512,0.39214099845975187,4769.614101393949,53.83311626855473,1.9499366891164533,1.9732758105123769,4820.44989860605
+88.7,54.11026985868625,0.39213686210264675,4774.9470456923345,53.83254842945134,1.94968940240004,1.973136192560087,4825.940954307665
+88.8,54.110058881479986,0.3921327260117079,4780.279879667589,53.831980626887265,1.9494421156836268,1.9729965746077969,4831.43212033241
+88.9,54.10984788009055,0.39212859018589785,4785.612603318014,53.831412860720064,1.9491948289672134,1.9728569566555065,4836.923396681987
+89.0,54.10963685451219,0.3921244546241825,4790.945216641892,53.83084513080778,1.9489475422508005,1.9727173387032162,4842.414783358107
+89.1,54.109425804739125,0.3921203193255307,4796.277719637489,53.83027743700886,1.948700255534387,1.9725777207509263,4847.90628036251
+89.2,54.10921473076558,0.3921161842889149,4801.610112303057,53.829709779182245,1.948452968817974,1.9724381027986362,4853.397887696943
+89.3,54.10900363258578,0.3921120495133109,4806.942394636828,53.82914215718733,1.9482056821015605,1.9722984848463458,4858.889605363171
+89.4,54.10879251019394,0.3921079149976976,4812.274566637023,53.82857457088392,1.9479583953851476,1.9721588668940557,4864.381433362977
+89.5,54.10858136358429,0.39210378074105706,4817.606628301843,53.82800702013232,1.9477111086687342,1.9720192489417658,4869.873371698157
+89.6,54.10837019275103,0.392099646742375,4822.938579629474,53.82743950479324,1.947463821952321,1.9718796309894755,4875.365420370525
+89.7,54.108158997688385,0.39209551300063994,4828.270420618089,53.826872024727855,1.9472165352359077,1.9717400130371854,4880.857579381911
+89.8,54.10794777839056,0.3920913795148439,4833.60215126584,53.82630457979778,1.9469692485194945,1.971600395084895,4886.3498487341585
+89.9,54.107736534851774,0.3920872462839823,4838.933771570872,53.825737169865086,1.9467219618030813,1.9714607771326051,4891.842228429128
+90.0,54.10752526706622,0.392083113307053,4844.265281531301,53.82516979479224,1.9464746750866682,1.9713211591803148,4897.334718468698
+90.1,54.10731397502812,0.3920789805830579,4849.596681145241,53.824602454442186,1.9462273883702548,1.9711815412280247,4902.827318854758
+90.2,54.10710265873166,0.3920748481110015,4854.927970410782,53.82403514867829,1.9459801016538416,1.9710419232757344,4908.3200295892175
+90.3,54.106891318171066,0.39207071588989184,4860.259149326001,53.82346787736435,1.9457328149374282,1.9709023053234442,4913.812850673999
+90.4,54.10667995334052,0.3920665839187397,4865.590217888959,53.822900640364594,1.9454855282210148,1.9707626873711543,4919.305782111041
+90.5,54.10646856423422,0.3920624521965595,4870.921176097704,53.82233343754369,1.945238241504602,1.970623069418864,4924.798823902295
+90.6,54.10625715084636,0.3920583207223682,4876.252023950263,53.8217662687667,1.9449909547881887,1.9704834514665739,4930.291976049736
+90.7,54.106045713171135,0.3920541894951861,4881.582761444653,53.82119913389915,1.9447436680717753,1.9703438335142835,4935.785238555347
+90.8,54.105834251202744,0.3920500585140368,4886.913388578873,53.82063203280698,1.944496381355362,1.9702042155619937,4941.278611421126
+90.9,54.105622764935354,0.39204592777794667,4892.243905350908,53.820064965356515,1.944249094638949,1.9700645976097035,4946.772094649093
+91.0,54.105411254363176,0.3920417972859452,4897.574311758724,53.81949793141455,1.9440018079225356,1.9699249796574132,4952.265688241275
+91.1,54.10519971948038,0.39203766703706505,4902.904607800278,53.81893093084829,1.9437545212061225,1.9697853617051229,4957.75939219972
+91.2,54.10498816028115,0.3920335370303417,4908.234793473509,53.818363963525314,1.943507234489709,1.969645743752833,4963.253206526491
+91.3,54.10477657675966,0.3920294072648139,4913.564868776336,53.81779702931365,1.9432599477732961,1.9695061258005429,4968.747131223663
+91.4,54.104564968910104,0.3920252777395233,4918.894833706673,53.81723012808176,1.9430126610568828,1.9693665078482525,4974.241166293327
+91.5,54.10435333672666,0.3920211484535145,4924.2246882624095,53.816663259698466,1.9427653743404696,1.9692268898959624,4979.73531173759
+91.6,54.10414168020347,0.3920170194058348,4929.554432441422,53.816096424033,1.9425180876240562,1.9690872719436725,4985.2295675585765
+91.7,54.10392999933473,0.3920128905955351,4934.88406624158,53.81552962095506,1.942270800907643,1.9689476539913822,4990.723933758421
+91.8,54.103718294114614,0.39200876202166873,4940.213589660724,53.81496285033469,1.9420235141912299,1.968808036039092,4996.218410339275
+91.9,54.10350656453727,0.3920046336832922,4945.543002696692,53.81439611204235,1.9417762274748167,1.9686684180868017,5001.712997303308
+92.0,54.10329481059688,0.39200050557946486,4950.872305347302,53.81382940594894,1.9415289407584033,1.9685288001345114,5007.207694652698
+92.1,54.103083032287586,0.39199637770924883,4956.201497610355,53.81326273192568,1.94128165404199,1.9683891821822215,5012.702502389644
+92.2,54.102871229603565,0.39199225007170946,4961.530579483643,53.81269608984428,1.9410343673255768,1.9682495642299314,5018.197420516357
+92.3,54.10265940253899,0.391988122665915,4966.8595509649385,53.812129479576804,1.9407870806091638,1.968109946277641,5023.69244903506
+92.4,54.10244755108798,0.3919839954909358,4972.188412052,53.81156290099567,1.9405397938927504,1.967970328325351,5029.187587948
+92.5,54.10223567524472,0.3919798685458462,4977.517162742573,53.81099635397376,1.940292507176337,1.967830710373061,5034.682837257426
+92.6,54.102023775003346,0.39197574182972256,4982.845803034387,53.810429838384316,1.940045220459924,1.9676910924207707,5040.178196965611
+92.7,54.10181185035801,0.39197161534164443,4988.174332925158,53.80986335410095,1.9397979337435105,1.9675514744684806,5045.673667074841
+92.8,54.10159990130287,0.39196748908069406,4993.502752412585,53.80929690099769,1.9395506470270976,1.9674118565161902,5051.169247587414
+92.9,54.10138792783206,0.39196336304595675,4998.831061494357,53.80873047894894,1.9393033603106842,1.9672722385639003,5056.6649385056435
+93.0,54.10117592993972,0.39195923723652015,5004.159260168142,53.80816408782948,1.939056073594271,1.9671326206116102,5062.160739831857
+93.1,54.100963907620006,0.391955111651475,5009.487348431599,53.80759772751449,1.9388087868778576,1.9669930026593199,5067.6566515684
+93.2,54.10075186086704,0.391950986289915,5014.815326282372,53.80703139787953,1.9385615001614447,1.9668533847070295,5073.152673717628
+93.3,54.100539789674976,0.3919468611509362,5020.143193718088,53.806465098800516,1.9383142134450313,1.9667137667547396,5078.648806281912
+93.4,54.100327694037944,0.39194273623363757,5025.470950736362,53.805898830153765,1.9380669267286181,1.9665741488024495,5084.145049263638
+93.5,54.10011557395007,0.39193861153712095,5030.798597334793,53.80533259181597,1.9378196400122047,1.9664345308501592,5089.641402665206
+93.6,54.09990342940549,0.3919344870604907,5036.126133510966,53.804766383664166,1.9375723532957916,1.966294912897869,5095.1378664890335
+93.7,54.099691260398316,0.39193036280285404,5041.4535592624525,53.8042002055758,1.9373250665793784,1.9661552949455787,5100.634440737547
+93.8,54.099479066922704,0.39192623876332094,5046.7808745868115,53.803634057428695,1.937077779862965,1.9660156769932888,5106.131125413188
+93.9,54.09926684897275,0.3919221149410037,5052.108079481583,53.80306793910099,1.9368304931465519,1.9658760590409987,5111.627920518416
+94.0,54.099054606542595,0.3919179913350178,5057.435173944297,53.802501850471245,1.9365832064301387,1.9657364410887084,5117.124826055702
+94.1,54.098842339626344,0.3919138679444811,5062.762157972468,53.801935791418366,1.9363359197137253,1.9655968231364185,5122.621842027531
+94.2,54.098630048218126,0.39190974476851415,5068.089031563597,53.801369761821626,1.936088632997312,1.9654572051841281,5128.118968436403
+94.3,54.09841773231205,0.3919056218062403,5073.415794715171,53.800803761560665,1.935841346280899,1.965317587231838,5133.6162052848285
+94.4,54.098205391902226,0.3919014990567852,5078.742447424661,53.800237790515475,1.9355940595644856,1.9651779692795477,5139.113552575339
+94.5,54.09799302698278,0.3918973765192775,5084.0689896895265,53.79967184856642,1.9353467728480724,1.9650383513272576,5144.611010310473
+94.6,54.0977806375478,0.3918932541928482,5089.395421507212,53.799105935594206,1.935099486131659,1.9648987333749677,5150.108578492787
+94.7,54.09756822359141,0.3918891320766312,5094.721742875149,53.798540051479925,1.934852199415246,1.9647591154226773,5155.60625712485
+94.8,54.097355785107695,0.39188501016976246,5100.047953790753,53.79797419610499,1.9346049126988327,1.9646194974703872,5161.104046209247
+94.9,54.09714332209077,0.39188088847138103,5105.374054251428,53.79740836935119,1.9343576259824196,1.9644798795180969,5166.601945748572
+95.0,54.096930834534746,0.3918767669806285,5110.700044254565,53.79684257110068,1.9341103392660062,1.964340261565807,5172.099955745434
+95.1,54.096718322433695,0.3918726456966486,5116.025923797536,53.79627680123592,1.9338630525495932,1.9642006436135167,5177.598076202464
+95.2,54.09650578578174,0.39186852461858807,5121.351692877706,53.79571105963977,1.9336157658331798,1.9640610256612265,5183.096307122293
+95.3,54.096293224572946,0.3918644037455959,5126.677351492422,53.795145346195405,1.9333684791167667,1.9639214077089362,5188.594648507577
+95.4,54.096080638801425,0.39186028307682363,5132.002899639018,53.794579660786354,1.9331211924003533,1.963781789756646,5194.093100360981
+95.5,54.09586802846125,0.3918561626114256,5137.328337314816,53.7940140032965,1.9328739056839404,1.9636421718043562,5199.591662685183
+95.6,54.095655393546515,0.39185204234855814,5142.653664517123,53.79344837361007,1.932626618967527,1.9635025538520658,5205.090335482877
+95.7,54.09544273405132,0.3918479222873807,5147.9788812432325,53.79288277161162,1.9323793322511138,1.9633629358997757,5210.589118756768
+95.8,54.09523004996973,0.39184380242705474,5153.303987490426,53.79231719718608,1.9321320455347004,1.9632233179474858,5216.088012509573
+95.9,54.095017341295815,0.39183968276674425,5158.628983255969,53.79175165021865,1.931884758818287,1.9630836999951955,5221.587016744032
+96.0,54.09480460802368,0.39183556330561586,5163.953868537115,53.79118613059495,1.9316374721018739,1.9629440820429054,5227.086131462884
+96.1,54.09459185014739,0.3918314440428387,5169.278643331106,53.7906206382009,1.931390185385461,1.962804464090615,5232.585356668893
+96.2,54.09437906766101,0.391827324977584,5174.603307635167,53.79005517292273,1.9311428986690475,1.9626648461383247,5238.084692364833
+96.3,54.09416626055862,0.39182320610902566,5179.92786144651,53.78948973464704,1.9308956119526341,1.9625252281860348,5243.5841385534895
+96.4,54.09395342883428,0.39181908743634003,5185.252304762337,53.78892432326076,1.930648325236221,1.9623856102337447,5249.083695237663
+96.5,54.093740572482076,0.39181496895870577,5190.576637579834,53.78835893865113,1.9304010385198076,1.9622459922814544,5254.583362420166
+96.6,54.09352769149605,0.39181085067530397,5195.900859896174,53.78779358070573,1.9301537518033947,1.9621063743291642,5260.083140103826
+96.7,54.093314785870284,0.3918067325853183,5201.224971708519,53.7872282493125,1.9299064650869813,1.9619667563768743,5265.583028291481
+96.8,54.09310185559883,0.3918026146879345,5206.548973014013,53.78666294435965,1.929659178370568,1.961827138424584,5271.083026985985
+96.9,54.09288890067574,0.3917984969823407,5211.872863809793,53.78609766573573,1.9294118916541547,1.9616875204722939,5276.583136190207
+97.0,54.09267592109508,0.39179437946772777,5217.196644092978,53.78553241332967,1.9291646049377418,1.9615479025200036,5282.0833559070215
+97.1,54.0924629168509,0.3917902621432885,5222.520313860675,53.78496718703064,1.9289173182213284,1.9614082845677137,5287.5836861393245
+97.2,54.092249887937236,0.39178614500821807,5227.843873109979,53.78440198672818,1.9286700315049152,1.9612686666154233,5293.084126890021
+97.3,54.09203683434817,0.39178202806171447,5233.167321837974,53.78383681231217,1.9284227447885018,1.9611290486631332,5298.584678162026
+97.4,54.09182375607773,0.3917779113029774,5238.490660041725,53.78327166367274,1.928175458072089,1.9609894307108429,5304.085339958275
+97.5,54.09161065311996,0.3917737947312092,5243.813887718289,53.7827065407004,1.9279281713556755,1.960849812758553,5309.5861122817105
+97.6,54.091397525468906,0.3917696783456146,5249.13700486471,53.78214144328597,1.9276808846392621,1.9607101948062629,5315.086995135288
+97.7,54.0911843731186,0.39176556214540015,5254.460011478016,53.78157637132053,1.927433597922849,1.9605705768539725,5320.587988521984
+97.8,54.090971196063094,0.39176144612977526,5259.7829075552245,53.78101132469555,1.9271863112064358,1.9604309589016824,5326.089092444775
+97.9,54.090757994296425,0.39175733029795134,5265.105693093341,53.78044630330276,1.9269390244900224,1.960291340949392,5331.59030690666
+98.0,54.090544767812624,0.39175321464914203,5270.428368089354,53.77988130703422,1.926691737773609,1.9601517229971022,5337.091631910645
+98.1,54.090331516605715,0.39174909918256334,5275.7509325402425,53.77931633578229,1.926444451057196,1.960012105044812,5342.593067459757
+98.2,54.090118240669725,0.39174498389743334,5281.073386442974,53.77875138943965,1.9261971643407827,1.9598724870925217,5348.094613557027
+98.3,54.08990493999869,0.39174086879297254,5286.395729794499,53.778186467899275,1.9259498776243695,1.9597328691402314,5353.5962702055
+98.4,54.089691614586634,0.3917367538684037,5291.717962591759,53.77762157105446,1.9257025909079561,1.9595932511879415,5359.098037408241
+98.5,54.08947826442758,0.39173263912295164,5297.040084831682,53.7770566987988,1.9254553041915432,1.9594536332356514,5364.599915168317
+98.6,54.08926488951555,0.39172852455584345,5302.362096511182,53.776491851026194,1.9252080174751298,1.959314015283361,5370.101903488817
+98.7,54.08905148984455,0.3917244101663085,5307.683997627163,53.77592702763083,1.9249607307587167,1.959174397331071,5375.6040023728365
+98.8,54.08883806540861,0.3917202959535782,5313.005788176512,53.77536222850721,1.9247134440423033,1.959034779378781,5381.106211823487
+98.9,54.08862461620174,0.39171618191688623,5318.32746815611,53.77479745355014,1.9244661573258903,1.9588951614264907,5386.608531843891
+99.0,54.08841114221796,0.3917120680554685,5323.649037562816,53.774232702654714,1.924218870609477,1.9587555434742006,5392.110962437183
+99.1,54.08819764345126,0.39170795436856304,5328.970496393488,53.773667975716336,1.9239715838930638,1.9586159255219102,5397.613503606511
+99.2,54.08798411989566,0.39170384085540993,5334.291844644963,53.77310327263068,1.9237242971766504,1.9584763075696203,5403.116155355036
+99.3,54.08777057154518,0.39169972751525167,5339.613082314069,53.77253859329375,1.9234770104602374,1.95833668961733,5408.61891768593
+99.4,54.08755699839379,0.39169561434733263,5344.934209397621,53.77197393760182,1.923229723743824,1.9581970716650399,5414.1217906023785
+99.5,54.08734340043549,0.3916915013508992,5350.255225892419,53.77140930545144,1.922982437027411,1.9580574537127495,5419.624774107581
+99.6,54.08712977766432,0.39168738852520046,5355.5761317952565,53.77084469673952,1.9227351503109975,1.9579178357604594,5425.127868204742
+99.7,54.08691613007425,0.39168327586948715,5360.89692710291,53.77028011136319,1.9224878635945841,1.9577782178081695,5430.631072897089
+99.8,54.08670245765926,0.3916791633830119,5366.217611812143,53.769715549219875,1.922240576878171,1.9576385998558792,5436.134388187856
+99.9,54.086488760413374,0.3916750510650302,5371.538185919714,53.769151010207345,1.9219932901617578,1.957498981903589,5441.637814080286
diff --git a/Documents/Padulles-I/PadullesI_Test.html b/Documents/Padulles-I/PadullesI_Test.html
new file mode 100644
index 00000000..06aed492
--- /dev/null
+++ b/Documents/Padulles-I/PadullesI_Test.html
@@ -0,0 +1,624 @@
+
+
+PadullesI_Test
+
+
+
+
OPEM Report (Padulles-I Model)
+
What is Padulles-I ?
+
+In this model, Nernst and fuel cell potential were modeled as a function of oxygen and hydrogen gases partial pressure
+that can be calculated from independent variables or constants. The partial pressure of gases is proportional to
+the molar flow of each gas.
+
+
Inputs
+
+
+
+Input
+
+Description
+
+Value
+
+
+
+
+B
+
+
+Activation voltage constant [V]
+
+
+0.04777
+
+
+
+C
+
+
+Activation constant parameter [A^(-1)]
+
+
+0.0136
+
+
+
+E0
+
+
+No load voltage [V]
+
+
+0.6
+
+
+
+KH2
+
+
+Hydrogen valve constant [kmol.s^(-1).atm^(-1)]
+
+
+4.22e-05
+
+
+
+KO2
+
+
+Oxygen valve constant [kmol.s^(-1).atm^(-1)]
+
+
+2.11e-05
+
+
+
+N0
+
+
+Number of cells
+
+
+88
+
+
+
+Rint
+
+
+Fuel cell internal resistance [ohm]
+
+
+0.00303
+
+
+
+T
+
+
+Fuel cell temperature [K]
+
+
+343
+
+
+
+i-start
+
+
+Cell operating current start point [A]
+
+
+0
+
+
+
+i-step
+
+
+Cell operating current step
+
+
+0.1
+
+
+
+i-stop
+
+
+Cell operating current end point [A]
+
+
+100
+
+
+
+qH2
+
+
+Molar flow of hydrogen [kmol.s^(-1)]
+
+
+0.0004
+
+
+
+rho
+
+
+Hydrogen-Oxygen flow rate
+
+
+1.168
+
+
+
+tH2
+
+
+Hydrogen time constant [s]
+
+
+3.37
+
+
+
+tO2
+
+
+Oxygen time constant [s]
+
+
+6.74
+
+
+
Overall Parameters
+
+
+
+Parameter
+
+Description
+
+Value
+
+
+
+
+Efficiency|Pmax
+
+
+Cell efficiency at maximum power
+
+
+0.3916750510650302
+
+
+
+Pmax
+
+
+Maximum power [W]
+
+
+5371.538185919714
+
+
+
+Ptotal(Elec)
+
+
+Total electrical power [W]
+
+
+5396.239669420725
+
+
+
+Ptotal(Thermal)
+
+
+Total thermal power [W]
+
+
+5406.112330579272
+
+
+
+VFC|Pmax
+
+
+Cell voltage at maximum power [V]
+
+
+53.769151010207345
+
+
+
Graphs
+
+
+
+
+
+
+
+
+
+
+
+
+
+Parameter
+
+Description
+
+Value
+
+
+
+
+K
+
+
+Slope of the curve obtained by linear approximation [A^(-1)]
+
+
+-0.006476306259911604
+
+
+
+Pmax(L-Approx)
+
+
+Maximum power obtained by linear approximation [W]
+
+
+114214.7436320723
+
+
+
+V0
+
+
+Intercept of the curve obtained by linear approximation [V]
+
+
+54.39447248236125
+
+
+
+VFC|Pmax(L-Approx)
+
+
+Cell voltage at maximum power obtained by linear approximation [V]
+
+
+27.197236241180626
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Warning : There are errors in the simulations in some of I amounts; please refer to the .opem file for review. If you are confident about this parameters, ignore this error.
+
+
\ No newline at end of file
diff --git a/Documents/Padulles-I/PadullesI_Test.opem b/Documents/Padulles-I/PadullesI_Test.opem
new file mode 100644
index 00000000..a631debe
--- /dev/null
+++ b/Documents/Padulles-I/PadullesI_Test.opem
@@ -0,0 +1,10030 @@
+ ___
+ / _ \ _ __ ___ _ __ ___
+| | | || '_ \ / _ \| '_ ` _ \
+| |_| || |_) || __/| | | | | |
+ \___/ | .__/ \___||_| |_| |_|
+ |_|
+Simulation Date : 2019-02-22 18:15:40.354252
+**********
+Padulles-I Model
+
+**********
+Simulation Inputs :
+
+B : 0.04777
+C : 0.0136
+E0 : 0.6
+KH2 : 4.22e-05
+KO2 : 2.11e-05
+N0 : 88
+Name : PadullesI_Test
+Rint : 0.00303
+T : 343
+i-start : 0
+i-step : 0.1
+i-stop : 100
+qH2 : 0.0004
+rho : 1.168
+tH2 : 3.37
+tO2 : 6.74
+**********
+I :0 A
+
+E : 54.28850557413407 V
+FC Efficiency : None
+FC Power : None W
+FC Voltage : None V
+PH2 : 2.169032719858579 atm
+PO2 : 2.0969773162414582 atm
+Power-Thermal : None W
+###########
+I :0.1 A
+
+E : 54.288313997298886 V
+FC Efficiency : 0.3977513543332525
+FC Power : 5.4603305922868905 W
+FC Voltage : 54.6033059228689 V
+PH2 : 2.168785433142166 atm
+PO2 : 2.096837698289168 atm
+Power-Thermal : 5.36366940771311 W
+###########
+I :0.2 A
+
+E : 54.28812240067271 V
+FC Efficiency : 0.39750655365258875
+FC Power : 10.913939937085477 W
+FC Voltage : 54.56969968542738 V
+PH2 : 2.1685381464257527 atm
+PO2 : 2.096698080336878 atm
+Power-Thermal : 10.734060062914523 W
+###########
+I :0.3 A
+
+E : 54.287930784251316 V
+FC Efficiency : 0.39736185898012566
+FC Power : 16.364950800237498 W
+FC Voltage : 54.54983600079166 V
+PH2 : 2.168290859709339 atm
+PO2 : 2.096558462384588 atm
+Power-Thermal : 16.1070491997625 W
+###########
+I :0.4 A
+
+E : 54.28773914803044 V
+FC Efficiency : 0.3972581497084044
+FC Power : 21.814239516787904 W
+FC Voltage : 54.535598791969754 V
+PH2 : 2.1680435729929264 atm
+PO2 : 2.0964188444322978 atm
+Power-Thermal : 21.4817604832121 W
+###########
+I :0.5 A
+
+E : 54.28754749200584 V
+FC Efficiency : 0.3971768980805572
+FC Power : 27.262222284249443 W
+FC Voltage : 54.524444568498886 V
+PH2 : 2.1677962862765128 atm
+PO2 : 2.0962792264800076 atm
+Power-Thermal : 26.857777715750554 W
+###########
+I :0.6 A
+
+E : 54.28735581617328 V
+FC Efficiency : 0.3971098513395853
+FC Power : 32.709144235138965 W
+FC Voltage : 54.515240391898274 V
+PH2 : 2.1675489995600996 atm
+PO2 : 2.0961396085277175 atm
+Power-Thermal : 32.23485576486103 W
+###########
+I :0.7 A
+
+E : 54.287164120528516 V
+FC Efficiency : 0.3970526072135646
+FC Power : 38.155167342794705 W
+FC Voltage : 54.507381918278156 V
+PH2 : 2.1673017128436864 atm
+PO2 : 2.0959999905754274 atm
+Power-Thermal : 37.61283265720528 W
+###########
+I :0.8 A
+
+E : 54.28697240506729 V
+FC Efficiency : 0.39700253793845613
+FC Power : 43.60040672655301 W
+FC Voltage : 54.50050840819126 V
+PH2 : 2.1670544261272733 atm
+PO2 : 2.0958603726231373 atm
+Power-Thermal : 42.991593273446995 W
+###########
+I :0.9 A
+
+E : 54.286780669785365 V
+FC Efficiency : 0.39695794855256433
+FC Power : 49.044948459566434 W
+FC Voltage : 54.49438717729603 V
+PH2 : 2.16680713941086 atm
+PO2 : 2.0957207546708467 atm
+Power-Thermal : 48.37105154043357 W
+###########
+I :1.0 A
+
+E : 54.28658891467849 V
+FC Efficiency : 0.39691768174793257
+FC Power : 54.48885935035618 W
+FC Voltage : 54.48885935035618 V
+PH2 : 2.166559852694447 atm
+PO2 : 2.0955811367185566 atm
+Power-Thermal : 53.751140649643816 W
+###########
+I :1.1 A
+
+E : 54.2863971397424 V
+FC Efficiency : 0.39688091206389015
+FC Power : 59.93219276894392 W
+FC Voltage : 54.483811608130836 V
+PH2 : 2.1663125659780333 atm
+PO2 : 2.095441518766267 atm
+Power-Thermal : 59.13180723105608 W
+###########
+I :1.2 A
+
+E : 54.286205344972856 V
+FC Efficiency : 0.3968470300107991
+FC Power : 65.37499233585899 W
+FC Voltage : 54.4791602798825 V
+PH2 : 2.16606527926162 atm
+PO2 : 2.0953019008139764 atm
+Power-Thermal : 64.51300766414099 W
+###########
+I :1.3 A
+
+E : 54.286013530365594 V
+FC Efficiency : 0.3968155727355017
+FC Power : 70.81729437266857 W
+FC Voltage : 54.47484182512967 V
+PH2 : 2.165817992545207 atm
+PO2 : 2.0951622828616863 atm
+Power-Thermal : 69.89470562733142 W
+###########
+I :1.4 A
+
+E : 54.28582169591637 V
+FC Efficiency : 0.3967861804549145
+FC Power : 76.25912959399092 W
+FC Voltage : 54.470806852850664 V
+PH2 : 2.165570705828794 atm
+PO2 : 2.095022664909396 atm
+Power-Thermal : 75.27687040600905 W
+###########
+I :1.5 A
+
+E : 54.28562984162091 V
+FC Efficiency : 0.3967585679566162
+FC Power : 81.7005243136264 W
+FC Voltage : 54.46701620908427 V
+PH2 : 2.1653234191123807 atm
+PO2 : 2.094883046957106 atm
+Power-Thermal : 80.65947568637358 W
+###########
+I :1.6 A
+
+E : 54.28543796747497 V
+FC Efficiency : 0.39673250531602267
+FC Power : 87.14150132765376 W
+FC Voltage : 54.46343832978359 V
+PH2 : 2.1650761323959675 atm
+PO2 : 2.094743429004816 atm
+Power-Thermal : 86.04249867234626 W
+###########
+I :1.7 A
+
+E : 54.28524607347429 V
+FC Efficiency : 0.3967078044696878
+FC Power : 92.58208057591786 W
+FC Voltage : 54.46004739759874 V
+PH2 : 2.164828845679554 atm
+PO2 : 2.094603811052526 atm
+Power-Thermal : 91.42591942408212 W
+###########
+I :1.8 A
+
+E : 54.285054159614596 V
+FC Efficiency : 0.3966843096322109
+FC Power : 98.02227964735785 W
+FC Voltage : 54.456822026309915 V
+PH2 : 2.164581558963141 atm
+PO2 : 2.0944641931002357 atm
+Power-Thermal : 96.80972035264215 W
+###########
+I :1.9 A
+
+E : 54.284862225891644 V
+FC Efficiency : 0.3966618903075967
+FC Power : 103.46211417271105 W
+FC Voltage : 54.45374430142687 V
+PH2 : 2.1643342722467276 atm
+PO2 : 2.094324575147945 atm
+Power-Thermal : 102.19388582728892 W
+###########
+I :2.0 A
+
+E : 54.28467027230115 V
+FC Efficiency : 0.39664043609530514
+FC Power : 108.90159813432699 W
+FC Voltage : 54.450799067163494 V
+PH2 : 2.1640869855303144 atm
+PO2 : 2.0941849571956554 atm
+Power-Thermal : 107.578401865673 W
+###########
+I :2.1 A
+
+E : 54.28447829883886 V
+FC Efficiency : 0.3966198527648516
+FC Power : 114.34074411387355 W
+FC Voltage : 54.44797338755883 V
+PH2 : 2.1638396988139013 atm
+PO2 : 2.094045339243365 atm
+Power-Thermal : 112.96325588612645 W
+###########
+I :2.2 A
+
+E : 54.2842863055005 V
+FC Efficiency : 0.3966000592444172
+FC Power : 119.77956349276191 W
+FC Voltage : 54.44525613307359 V
+PH2 : 2.1635924120974876 atm
+PO2 : 2.0939057212910748 atm
+Power-Thermal : 118.34843650723809 W
+###########
+I :2.3 A
+
+E : 54.284094292281814 V
+FC Efficiency : 0.39658098527940633
+FC Power : 125.21806661606087 W
+FC Voltage : 54.4426376591569 V
+PH2 : 2.163345125381075 atm
+PO2 : 2.0937661033387847 atm
+Power-Thermal : 123.7339333839391 W
+###########
+I :2.4 A
+
+E : 54.28390225917852 V
+FC Efficiency : 0.3965625695896912
+FC Power : 130.65626292785475 W
+FC Voltage : 54.44010955327281 V
+PH2 : 2.1630978386646613 atm
+PO2 : 2.0936264853864945 atm
+Power-Thermal : 129.11973707214523 W
+###########
+I :2.5 A
+
+E : 54.28371020618635 V
+FC Efficiency : 0.3965447584032809
+FC Power : 136.09416108400603 W
+FC Voltage : 54.43766443360241 V
+PH2 : 2.162850551948248 atm
+PO2 : 2.0934868674342044 atm
+Power-Thermal : 134.50583891599396 W
+###########
+I :2.6 A
+
+E : 54.28351813330103 V
+FC Efficiency : 0.3965275042777518
+FC Power : 141.5317690468494 W
+FC Voltage : 54.435295787249764 V
+PH2 : 2.162603265231835 atm
+PO2 : 2.0933472494819143 atm
+Power-Thermal : 139.8922309531506 W
+###########
+I :2.7 A
+
+E : 54.2833260405183 V
+FC Efficiency : 0.39651076514422556
+FC Power : 146.9690941652981 W
+FC Voltage : 54.432997838999285 V
+PH2 : 2.162355978515422 atm
+PO2 : 2.093207631529624 atm
+Power-Thermal : 145.27890583470193 W
+###########
+I :2.8 A
+
+E : 54.28313392783386 V
+FC Efficiency : 0.3964945035252972
+FC Power : 152.40614324306785 W
+FC Voltage : 54.4307654439528 V
+PH2 : 2.1621086917990087 atm
+PO2 : 2.093068013577334 atm
+Power-Thermal : 150.66585675693213 W
+###########
+I :2.9 A
+
+E : 54.28294179524345 V
+FC Efficiency : 0.39647868589026086
+FC Power : 157.84292259714354 W
+FC Voltage : 54.428593999015014 V
+PH2 : 2.1618614050825955 atm
+PO2 : 2.092928395625044 atm
+Power-Thermal : 156.05307740285645 W
+###########
+I :3.0 A
+
+E : 54.282749642742786 V
+FC Efficiency : 0.39646328211968823
+FC Power : 163.2794381081724 W
+FC Voltage : 54.4264793693908 V
+PH2 : 2.161614118366182 atm
+PO2 : 2.0927887776727534 atm
+Power-Thermal : 161.4405618918276 W
+###########
+I :3.1 A
+
+E : 54.282557470327596 V
+FC Efficiency : 0.3964482650578333
+FC Power : 168.71569526413202 W
+FC Voltage : 54.42441782713936 V
+PH2 : 2.1613668316497687 atm
+PO2 : 2.0926491597204633 atm
+Power-Thermal : 166.828304735868 W
+###########
+I :3.2 A
+
+E : 54.282365277993584 V
+FC Efficiency : 0.39643361013612227
+FC Power : 174.15169919835796 W
+FC Voltage : 54.42240599948686 V
+PH2 : 2.1611195449333556 atm
+PO2 : 2.0925095417681736 atm
+Power-Thermal : 172.21630080164203 W
+###########
+I :3.3 A
+
+E : 54.282173065736494 V
+FC Efficiency : 0.39641929505459833
+FC Power : 179.58745472281433 W
+FC Voltage : 54.420440825095255 V
+PH2 : 2.1608722582169424 atm
+PO2 : 2.092369923815883 atm
+Power-Thermal : 177.60454527718562 W
+###########
+I :3.4 A
+
+E : 54.28198083355201 V
+FC Efficiency : 0.3964052995109346
+FC Power : 185.02296635732776 W
+FC Voltage : 54.41851951686111 V
+PH2 : 2.1606249715005292 atm
+PO2 : 2.092230305863593 atm
+Power-Thermal : 182.9930336426722 W
+###########
+I :3.5 A
+
+E : 54.28178858143586 V
+FC Efficiency : 0.3963916049687393
+FC Power : 190.45823835537988 W
+FC Voltage : 54.41663953010853 V
+PH2 : 2.160377684784116 atm
+PO2 : 2.092090687911303 atm
+Power-Thermal : 188.38176164462013 W
+###########
+I :3.6 A
+
+E : 54.281596309383765 V
+FC Efficiency : 0.39637819445850625
+FC Power : 195.89327472694944 W
+FC Voltage : 54.414798535263735 V
+PH2 : 2.1601303980677025 atm
+PO2 : 2.0919510699590127 atm
+Power-Thermal : 193.77072527305054 W
+###########
+I :3.7 A
+
+E : 54.281404017391424 V
+FC Efficiency : 0.39636505240584513
+FC Power : 201.32807925881536 W
+FC Voltage : 54.41299439427442 V
+PH2 : 2.1598831113512893 atm
+PO2 : 2.0918114520067226 atm
+Power-Thermal : 199.15992074118464 W
+###########
+I :3.8 A
+
+E : 54.28121170545457 V
+FC Efficiency : 0.3963521644826228
+FC Power : 206.76265553266293 W
+FC Voltage : 54.41122514017446 V
+PH2 : 2.159635824634876 atm
+PO2 : 2.0916718340544325 atm
+Power-Thermal : 204.54934446733702 W
+###########
+I :3.9 A
+
+E : 54.28101937356888 V
+FC Efficiency : 0.39633951747744234
+FC Power : 212.1970069412828 W
+FC Voltage : 54.40948895930328 V
+PH2 : 2.159388537918463 atm
+PO2 : 2.0915322161021423 atm
+Power-Thermal : 209.9389930587172 W
+###########
+I :4.0 A
+
+E : 54.280827021730076 V
+FC Efficiency : 0.39632709918252523
+FC Power : 217.63113670310827 W
+FC Voltage : 54.40778417577707 V
+PH2 : 2.15914125120205 atm
+PO2 : 2.091392598149852 atm
+Power-Thermal : 215.3288632968917 W
+###########
+I :4.1 A
+
+E : 54.280634649933866 V
+FC Efficiency : 0.3963148982945616
+FC Power : 223.06504787529738 W
+FC Voltage : 54.406109237877416 V
+PH2 : 2.158893964485636 atm
+PO2 : 2.091252980197562 atm
+Power-Thermal : 220.71895212470255 W
+###########
+I :4.2 A
+
+E : 54.28044225817597 V
+FC Efficiency : 0.3963029043275101
+FC Power : 228.49874336553847 W
+FC Voltage : 54.40446270608059 V
+PH2 : 2.1586466777692235 atm
+PO2 : 2.0911133622452716 atm
+Power-Thermal : 226.10925663446153 W
+###########
+I :4.3 A
+
+E : 54.28024984645206 V
+FC Efficiency : 0.3962911075356599
+FC Power : 233.93222594273018 W
+FC Voltage : 54.40284324249539 V
+PH2 : 2.15839939105281 atm
+PO2 : 2.0909737442929814 atm
+Power-Thermal : 231.49977405726978 W
+###########
+I :4.4 A
+
+E : 54.28005741475785 V
+FC Efficiency : 0.396279498845539
+FC Power : 239.36549824666864 W
+FC Voltage : 54.401249601515595 V
+PH2 : 2.1581521043363967 atm
+PO2 : 2.0908341263406913 atm
+Power-Thermal : 236.8905017533314 W
+###########
+I :4.5 A
+
+E : 54.279864963089054 V
+FC Efficiency : 0.3962680697954745
+FC Power : 244.79856279685234 W
+FC Voltage : 54.39968062152274 V
+PH2 : 2.1579048176199835 atm
+PO2 : 2.090694508388401 atm
+Power-Thermal : 242.28143720314765 W
+###########
+I :4.6 A
+
+E : 54.27967249144135 V
+FC Efficiency : 0.39625681248179695
+FC Power : 250.23142200050498 W
+FC Voltage : 54.398135217501085 V
+PH2 : 2.1576575309035704 atm
+PO2 : 2.090554890436111 atm
+Power-Thermal : 247.67257799949496 W
+###########
+I :4.7 A
+
+E : 54.27947999981046 V
+FC Efficiency : 0.3962457195108303
+FC Power : 255.66407815989993 W
+FC Voltage : 54.39661237444679 V
+PH2 : 2.157410244187157 atm
+PO2 : 2.090415272483821 atm
+Power-Thermal : 253.06392184010008 W
+###########
+I :4.8 A
+
+E : 54.27928748819207 V
+FC Efficiency : 0.39623478395593686
+FC Power : 261.09653347906084 W
+FC Voltage : 54.39511114147101 V
+PH2 : 2.157162957470744 atm
+PO2 : 2.090275654531531 atm
+Power-Thermal : 258.4554665209391 W
+###########
+I :4.9 A
+
+E : 54.27909495658186 V
+FC Efficiency : 0.3962239993189913
+FC Power : 266.5287900699045 W
+FC Voltage : 54.393630626511126 V
+PH2 : 2.1569156707543304 atm
+PO2 : 2.0901360365792407 atm
+Power-Thermal : 263.84720993009546 W
+###########
+I :5.0 A
+
+E : 54.27890240497553 V
+FC Efficiency : 0.3962133594957477
+FC Power : 271.96084995788124 W
+FC Voltage : 54.392169991576246 V
+PH2 : 2.1566683840379173 atm
+PO2 : 2.0899964186269506 atm
+Power-Thermal : 269.23915004211875 W
+###########
+I :5.1 A
+
+E : 54.27870983336879 V
+FC Efficiency : 0.3962028587446355
+FC Power : 277.39271508716416 W
+FC Voltage : 54.39072844846356 V
+PH2 : 2.156421097321504 atm
+PO2 : 2.08985680067466 atm
+Power-Thermal : 274.6312849128358 W
+###########
+I :5.2 A
+
+E : 54.278517241757314 V
+FC Efficiency : 0.39619249165858605
+FC Power : 282.82438732543164 W
+FC Voltage : 54.389305254890694 V
+PH2 : 2.156173810605091 atm
+PO2 : 2.08971718272237 atm
+Power-Thermal : 280.02361267456837 W
+###########
+I :5.3 A
+
+E : 54.27832463013679 V
+FC Efficiency : 0.3961822531395427
+FC Power : 288.25586846828105 W
+FC Voltage : 54.38789971099642 V
+PH2 : 2.155926523888678 atm
+PO2 : 2.0895775647700803 atm
+Power-Thermal : 285.4161315317189 W
+###########
+I :5.4 A
+
+E : 54.278131998502914 V
+FC Efficiency : 0.39617213837535364
+FC Power : 293.6871602433102 W
+FC Voltage : 54.38651115616855 V
+PH2 : 2.1556792371722646 atm
+PO2 : 2.0894379468177897 atm
+Power-Thermal : 290.8088397566898 W
+###########
+I :5.5 A
+
+E : 54.27793934685136 V
+FC Efficiency : 0.3961621428187851
+FC Power : 299.1182643138955 W
+FC Voltage : 54.38513896616282 V
+PH2 : 2.155431950455851 atm
+PO2 : 2.0892983288654996 atm
+Power-Thermal : 296.2017356861045 W
+###########
+I :5.6 A
+
+E : 54.27774667517782 V
+FC Efficiency : 0.39615226216842525
+FC Power : 304.54918228269594 W
+FC Voltage : 54.38378255048142 V
+PH2 : 2.155184663739438 atm
+PO2 : 2.0891587109132095 atm
+Power-Thermal : 301.594817717304 W
+###########
+I :5.7 A
+
+E : 54.277553983477986 V
+FC Efficiency : 0.39614249235127874
+FC Power : 309.9799156949062 W
+FC Voltage : 54.382441349983544 V
+PH2 : 2.1549373770230247 atm
+PO2 : 2.0890190929609194 atm
+Power-Thermal : 306.98808430509376 W
+###########
+I :5.8 A
+
+E : 54.27736127174754 V
+FC Efficiency : 0.3961328295068746
+FC Power : 315.4104660412817 W
+FC Voltage : 54.38111483470375 V
+PH2 : 2.1546900903066115 atm
+PO2 : 2.0888794750086292 atm
+Power-Thermal : 312.3815339587182 W
+###########
+I :5.9 A
+
+E : 54.277168539982135 V
+FC Efficiency : 0.39612326997273295
+FC Power : 320.84083476095503 W
+FC Voltage : 54.37980250185678 V
+PH2 : 2.1544428035901984 atm
+PO2 : 2.088739857056339 atm
+Power-Thermal : 317.775165239045 W
+###########
+I :6.0 A
+
+E : 54.27697578817749 V
+FC Efficiency : 0.396113810271053
+FC Power : 326.2710232440609 W
+FC Voltage : 54.37850387401016 V
+PH2 : 2.1541955168737847 atm
+PO2 : 2.0886002391040486 atm
+Power-Thermal : 323.168976755939 W
+###########
+I :6.1 A
+
+E : 54.276783016329254 V
+FC Efficiency : 0.39610444709650133
+FC Power : 331.701032834187 W
+FC Voltage : 54.37721849740771 V
+PH2 : 2.153948230157372 atm
+PO2 : 2.0884606211517585 atm
+Power-Thermal : 328.5629671658129 W
+###########
+I :6.2 A
+
+E : 54.2765902244331 V
+FC Efficiency : 0.39609517730499355
+FC Power : 337.13086483066303 W
+FC Voltage : 54.37594594042952 V
+PH2 : 2.1537009434409584 atm
+PO2 : 2.088321003199469 atm
+Power-Thermal : 333.957135169337 W
+###########
+I :6.3 A
+
+E : 54.27639741248473 V
+FC Efficiency : 0.3960859979033728
+FC Power : 342.56052049070263 W
+FC Voltage : 54.37468579217502 V
+PH2 : 2.1534536567245453 atm
+PO2 : 2.0881813852471782 atm
+Power-Thermal : 339.3514795092973 W
+###########
+I :6.4 A
+
+E : 54.2762045804798 V
+FC Efficiency : 0.3960769060399018
+FC Power : 347.99000103140946 W
+FC Voltage : 54.37343766115772 V
+PH2 : 2.153206370008132 atm
+PO2 : 2.088041767294888 atm
+Power-Thermal : 344.7459989685906 W
+###########
+I :6.5 A
+
+E : 54.27601172841398 V
+FC Efficiency : 0.39606789899549155
+FC Power : 353.41930763165703 W
+FC Voltage : 54.37220117410108 V
+PH2 : 2.152959083291719 atm
+PO2 : 2.087902149342598 atm
+Power-Thermal : 350.14069236834297 W
+###########
+I :6.6 A
+
+E : 54.27581885628293 V
+FC Efficiency : 0.3960589741755998
+FC Power : 358.84844143385385 W
+FC Voltage : 54.370975974826344 V
+PH2 : 2.1527117965753058 atm
+PO2 : 2.087762531390308 atm
+Power-Thermal : 355.53555856614605 W
+###########
+I :6.7 A
+
+E : 54.27562596408236 V
+FC Efficiency : 0.3960501291027394
+FC Power : 364.27740354560126 W
+FC Voltage : 54.369761723224066 V
+PH2 : 2.1524645098588926 atm
+PO2 : 2.0876229134380178 atm
+Power-Thermal : 360.9305964543987 W
+###########
+I :6.8 A
+
+E : 54.275433051807894 V
+FC Efficiency : 0.39604136140953994
+FC Power : 369.7061950412512 W
+FC Voltage : 54.36855809430165 V
+PH2 : 2.152217223142479 atm
+PO2 : 2.0874832954857276 atm
+Power-Thermal : 366.32580495874873 W
+###########
+I :6.9 A
+
+E : 54.27524011945521 V
+FC Efficiency : 0.396032668832318
+FC Power : 375.13481696337425 W
+FC Voltage : 54.367364777300615 V
+PH2 : 2.151969936426066 atm
+PO2 : 2.0873436775334375 atm
+Power-Thermal : 371.72118303662575 W
+###########
+I :7.0 A
+
+E : 54.27504716701999 V
+FC Efficiency : 0.3960240492051086
+FC Power : 380.5632703241412 W
+FC Voltage : 54.36618147487731 V
+PH2 : 2.1517226497096527 atm
+PO2 : 2.0872040595811474 atm
+Power-Thermal : 377.1167296758588 W
+###########
+I :7.1 A
+
+E : 54.27485419449788 V
+FC Efficiency : 0.39601550045412026
+FC Power : 385.9915561066256 W
+FC Voltage : 54.36500790234163 V
+PH2 : 2.1514753629932395 atm
+PO2 : 2.0870644416288573 atm
+Power-Thermal : 382.5124438933744 W
+###########
+I :7.2 A
+
+E : 54.27466120188455 V
+FC Efficiency : 0.3960070205925784
+FC Power : 391.419675266034 W
+FC Voltage : 54.36384378694917 V
+PH2 : 2.1512280762768263 atm
+PO2 : 2.0869248236765667 atm
+Power-Thermal : 387.90832473396597 W
+###########
+I :7.3 A
+
+E : 54.27446818917565 V
+FC Efficiency : 0.39599860771592377
+FC Power : 396.8476287308667 W
+FC Voltage : 54.362688867242014 V
+PH2 : 2.150980789560413 atm
+PO2 : 2.0867852057242766 atm
+Power-Thermal : 393.30437126913324 W
+###########
+I :7.4 A
+
+E : 54.27427515636685 V
+FC Efficiency : 0.3959902599973375
+FC Power : 402.27541740401534 W
+FC Voltage : 54.3615428924345 V
+PH2 : 2.1507335028439996 atm
+PO2 : 2.0866455877719865 atm
+Power-Thermal : 398.70058259598466 W
+###########
+I :7.5 A
+
+E : 54.27408210345381 V
+FC Efficiency : 0.39598197568356786
+FC Power : 407.70304216380146 W
+FC Voltage : 54.360405621840194 V
+PH2 : 2.1504862161275864 atm
+PO2 : 2.0865059698196964 atm
+Power-Thermal : 404.0969578361985 W
+###########
+I :7.6 A
+
+E : 54.27388903043216 V
+FC Efficiency : 0.3959737530910308
+FC Power : 413.13050386495894 W
+FC Voltage : 54.3592768243367 V
+PH2 : 2.1502389294111732 atm
+PO2 : 2.0863663518674063 atm
+Power-Thermal : 409.49349613504097 W
+###########
+I :7.7 A
+
+E : 54.27369593729759 V
+FC Efficiency : 0.39596559060216824
+FC Power : 418.55780333956557 W
+FC Voltage : 54.35815627786565 V
+PH2 : 2.14999164269476 atm
+PO2 : 2.086226733915116 atm
+Power-Thermal : 414.8901966604344 W
+###########
+I :7.8 A
+
+E : 54.27350282404573 V
+FC Efficiency : 0.39595748666203945
+FC Power : 423.98494139792524 W
+FC Voltage : 54.35704376896478 V
+PH2 : 2.149744355978347 atm
+PO2 : 2.086087115962826 atm
+Power-Thermal : 420.2870586020747 W
+###########
+I :7.9 A
+
+E : 54.27330969067225 V
+FC Efficiency : 0.39594943977513053
+FC Power : 429.4119188294064 W
+FC Voltage : 54.35593909232992 V
+PH2 : 2.1494970692619333 atm
+PO2 : 2.085947498010536 atm
+Power-Thermal : 425.68408117059363 W
+###########
+I :8.0 A
+
+E : 54.273116537172776 V
+FC Efficiency : 0.3959414485023632
+FC Power : 434.8387364032354 W
+FC Voltage : 54.35484205040442 V
+PH2 : 2.1492497825455206 atm
+PO2 : 2.085807880058246 atm
+Power-Thermal : 431.0812635967646 W
+###########
+I :8.1 A
+
+E : 54.27292336354297 V
+FC Efficiency : 0.3959335114582917
+FC Power : 440.26539486925367 W
+FC Voltage : 54.353752452994286 V
+PH2 : 2.149002495829107 atm
+PO2 : 2.0856682621059552 atm
+Power-Thermal : 436.47860513074625 W
+###########
+I :8.2 A
+
+E : 54.27273016977849 V
+FC Efficiency : 0.3959256273084696
+FC Power : 445.6918949586349 W
+FC Voltage : 54.3526701169067 V
+PH2 : 2.148755209112694 atm
+PO2 : 2.085528644153665 atm
+Power-Thermal : 441.87610504136495 W
+###########
+I :8.3 A
+
+E : 54.27253695587497 V
+FC Efficiency : 0.3959177947669765
+FC Power : 451.1182373845676 W
+FC Voltage : 54.351594865610544 V
+PH2 : 2.1485079223962806 atm
+PO2 : 2.0853890262013755 atm
+Power-Thermal : 447.2737626154325 W
+###########
+I :8.4 A
+
+E : 54.27234372182806 V
+FC Efficiency : 0.39591001259409475
+FC Power : 456.5444228429056 W
+FC Voltage : 54.35052652891733 V
+PH2 : 2.1482606356798675 atm
+PO2 : 2.085249408249085 atm
+Power-Thermal : 452.6715771570944 W
+###########
+I :8.5 A
+
+E : 54.27215046763339 V
+FC Efficiency : 0.39590227959412055
+FC Power : 461.9704520127874 W
+FC Voltage : 54.34946494268087 V
+PH2 : 2.1480133489634543 atm
+PO2 : 2.0851097902967948 atm
+Power-Thermal : 458.06954798721256 W
+###########
+I :8.6 A
+
+E : 54.2719571932866 V
+FC Efficiency : 0.39589459461330556
+FC Power : 467.3963255572255 W
+FC Voltage : 54.34840994851459 V
+PH2 : 2.147766062247041 atm
+PO2 : 2.0849701723445047 atm
+Power-Thermal : 463.4676744427744 W
+###########
+I :8.7 A
+
+E : 54.271763898783355 V
+FC Efficiency : 0.39588695653791695
+FC Power : 472.82204412366957 W
+FC Voltage : 54.34736139352524 V
+PH2 : 2.1475187755306275 atm
+PO2 : 2.0848305543922145 atm
+Power-Thermal : 468.8659558763303 W
+###########
+I :8.8 A
+
+E : 54.27157058411928 V
+FC Efficiency : 0.39587936429240733
+FC Power : 478.2476083445428 W
+FC Voltage : 54.34631913006168 V
+PH2 : 2.1472714888142144 atm
+PO2 : 2.0846909364399244 atm
+Power-Thermal : 474.2643916554572 W
+###########
+I :8.9 A
+
+E : 54.27137724929001 V
+FC Efficiency : 0.39587181683768885
+FC Power : 483.67301883775355 W
+FC Voltage : 54.345283015477925 V
+PH2 : 2.147024202097801 atm
+PO2 : 2.0845513184876343 atm
+Power-Thermal : 479.66298116224647 W
+###########
+I :9.0 A
+
+E : 54.271183894291184 V
+FC Efficiency : 0.39586431316950405
+FC Power : 489.0982762071857 W
+FC Voltage : 54.34425291190952 V
+PH2 : 2.146776915381388 atm
+PO2 : 2.084411700535344 atm
+Power-Thermal : 485.0617237928143 W
+###########
+I :9.1 A
+
+E : 54.270990519118435 V
+FC Efficiency : 0.3958568523168863
+FC Power : 494.5233810431655 W
+FC Voltage : 54.34322868606215 V
+PH2 : 2.146529628664975 atm
+PO2 : 2.084272082583054 atm
+Power-Thermal : 490.46061895683437 W
+###########
+I :9.2 A
+
+E : 54.270797123767395 V
+FC Efficiency : 0.39584943334070355
+FC Power : 499.9483339229084 W
+FC Voltage : 54.34221020901178 V
+PH2 : 2.1462823419485617 atm
+PO2 : 2.084132464630764 atm
+Power-Thermal : 495.8596660770915 W
+###########
+I :9.3 A
+
+E : 54.27060370823369 V
+FC Efficiency : 0.3958420553322827
+FC Power : 505.37313541094676 W
+FC Voltage : 54.341197356015776 V
+PH2 : 2.146035055232148 atm
+PO2 : 2.0839928466784734 atm
+Power-Thermal : 501.25886458905325 W
+###########
+I :9.4 A
+
+E : 54.27041027251297 V
+FC Efficiency : 0.39583471741210624
+FC Power : 510.79778605953913 W
+FC Voltage : 54.34019000633395 V
+PH2 : 2.145787768515735 atm
+PO2 : 2.0838532287261833 atm
+Power-Thermal : 506.6582139404609 W
+###########
+I :9.5 A
+
+E : 54.27021681660084 V
+FC Efficiency : 0.39582741872857735
+FC Power : 516.2222864090614 W
+FC Voltage : 54.3391880430591 V
+PH2 : 2.1455404817993218 atm
+PO2 : 2.083713610773893 atm
+Power-Thermal : 512.0577135909384 W
+###########
+I :9.6 A
+
+E : 54.27002334049294 V
+FC Efficiency : 0.3958201584568512
+FC Power : 521.6466369883827 W
+FC Voltage : 54.338191352956535 V
+PH2 : 2.1452931950829086 atm
+PO2 : 2.083573992821603 atm
+Power-Thermal : 517.4573630116172 W
+###########
+I :9.7 A
+
+E : 54.26982984418489 V
+FC Efficiency : 0.3958129357977258
+FC Power : 527.0708383152245 W
+FC Voltage : 54.3371998263118 V
+PH2 : 2.1450459083664954 atm
+PO2 : 2.083434374869313 atm
+Power-Thermal : 522.8571616847754 W
+###########
+I :9.8 A
+
+E : 54.26963632767231 V
+FC Efficiency : 0.3958057499765897
+FC Power : 532.4948908965051 W
+FC Voltage : 54.33621335678623 V
+PH2 : 2.144798621650082 atm
+PO2 : 2.083294756917023 atm
+Power-Thermal : 528.2571091034949 W
+###########
+I :9.9 A
+
+E : 54.26944279095084 V
+FC Efficiency : 0.39579860024242375
+FC Power : 537.9187952286713 W
+FC Voltage : 54.33523184127993 V
+PH2 : 2.144551334933669 atm
+PO2 : 2.0831551389647327 atm
+Power-Thermal : 533.6572047713287 W
+###########
+I :10.0 A
+
+E : 54.26924923401609 V
+FC Efficiency : 0.39579148586685203
+FC Power : 543.3425517980145 W
+FC Voltage : 54.33425517980145 V
+PH2 : 2.1443040482172555 atm
+PO2 : 2.0830155210124426 atm
+Power-Thermal : 539.0574482019854 W
+###########
+I :10.1 A
+
+E : 54.26905565686368 V
+FC Efficiency : 0.39578440614324145
+FC Power : 548.7661610809763 W
+FC Voltage : 54.333283275344186 V
+PH2 : 2.1440567615008423 atm
+PO2 : 2.0828759030601525 atm
+Power-Thermal : 544.4578389190236 W
+###########
+I :10.2 A
+
+E : 54.26886205948923 V
+FC Efficiency : 0.39577736038584393
+FC Power : 554.1896235444402 W
+FC Voltage : 54.332316033768656 V
+PH2 : 2.143809474784429 atm
+PO2 : 2.082736285107862 atm
+Power-Thermal : 549.8583764555597 W
+###########
+I :10.3 A
+
+E : 54.26866844188835 V
+FC Efficiency : 0.3957703479289819
+FC Power : 559.6129396460136 W
+FC Voltage : 54.33135336369064 V
+PH2 : 2.143562188068016 atm
+PO2 : 2.082596667155572 atm
+Power-Thermal : 555.2590603539865 W
+###########
+I :10.4 A
+
+E : 54.268474804056666 V
+FC Efficiency : 0.3957633681262726
+FC Power : 565.0361098342969 W
+FC Voltage : 54.3303951763747 V
+PH2 : 2.143314901351603 atm
+PO2 : 2.082457049203282 atm
+Power-Thermal : 560.6598901657031 W
+###########
+I :10.5 A
+
+E : 54.26828114598979 V
+FC Efficiency : 0.39575642034988906
+FC Power : 570.4591345491442 W
+FC Voltage : 54.32944138563278 V
+PH2 : 2.1430676146351897 atm
+PO2 : 2.0823174312509916 atm
+Power-Thermal : 566.0608654508558 W
+###########
+I :10.6 A
+
+E : 54.268087467683316 V
+FC Efficiency : 0.3957495039898572
+FC Power : 575.8820142219125 W
+FC Voltage : 54.3284919077276 V
+PH2 : 2.142820327918776 atm
+PO2 : 2.0821778132987014 atm
+Power-Thermal : 571.4619857780873 W
+###########
+I :10.7 A
+
+E : 54.26789376913289 V
+FC Efficiency : 0.39574261845338476
+FC Power : 581.3047492757031 W
+FC Voltage : 54.327546661280664 V
+PH2 : 2.142573041202363 atm
+PO2 : 2.0820381953464113 atm
+Power-Thermal : 576.8632507242968 W
+###########
+I :10.8 A
+
+E : 54.2677000503341 V
+FC Efficiency : 0.39573576316422193
+FC Power : 586.7273401255915 W
+FC Voltage : 54.32660556718439 V
+PH2 : 2.1423257544859498 atm
+PO2 : 2.081898577394121 atm
+Power-Thermal : 582.2646598744086 W
+###########
+I :10.9 A
+
+E : 54.26750631128255 V
+FC Efficiency : 0.3957289375620519
+FC Power : 592.1497871788515 W
+FC Voltage : 54.325668548518486 V
+PH2 : 2.1420784677695366 atm
+PO2 : 2.081758959441831 atm
+Power-Thermal : 587.6662128211485 W
+###########
+I :11.0 A
+
+E : 54.267312551973845 V
+FC Efficiency : 0.3957221411019082
+FC Power : 597.5720908351695 W
+FC Voltage : 54.32473553046996 V
+PH2 : 2.1418311810531234 atm
+PO2 : 2.081619341489541 atm
+Power-Thermal : 593.0679091648304 W
+###########
+I :11.1 A
+
+E : 54.267118772403606 V
+FC Efficiency : 0.39571537325361983
+FC Power : 602.9942514868519 W
+FC Voltage : 54.32380644025693 V
+PH2 : 2.14158389433671 atm
+PO2 : 2.0814797235372504 atm
+Power-Thermal : 598.469748513148 W
+###########
+I :11.2 A
+
+E : 54.26692497256744 V
+FC Efficiency : 0.3957086335012797
+FC Power : 608.4162695190237 W
+FC Voltage : 54.32288120705569 V
+PH2 : 2.1413366076202967 atm
+PO2 : 2.0813401055849603 atm
+Power-Thermal : 603.8717304809762 W
+###########
+I :11.3 A
+
+E : 54.26673115246092 V
+FC Efficiency : 0.3957019213427378
+FC Power : 613.8381453098209 W
+FC Voltage : 54.32195976193105 V
+PH2 : 2.1410893209038835 atm
+PO2 : 2.0812004876326706 atm
+Power-Thermal : 609.2738546901792 W
+###########
+I :11.4 A
+
+E : 54.266537312079684 V
+FC Efficiency : 0.39569523628911635
+FC Power : 619.2598792305768 W
+FC Voltage : 54.32104203776989 V
+PH2 : 2.1408420341874703 atm
+PO2 : 2.08106086968038 atm
+Power-Thermal : 614.6761207694232 W
+###########
+I :11.5 A
+
+E : 54.26634345141929 V
+FC Efficiency : 0.39568857786434586
+FC Power : 624.6814716460001 W
+FC Voltage : 54.320127969217396 V
+PH2 : 2.140594747471057 atm
+PO2 : 2.08092125172809 atm
+Power-Thermal : 620.0785283539999 W
+###########
+I :11.6 A
+
+E : 54.26614957047538 V
+FC Efficiency : 0.39568194560472203
+FC Power : 630.1029229143485 W
+FC Voltage : 54.31921749261625 V
+PH2 : 2.140347460754644 atm
+PO2 : 2.0807816337758 atm
+Power-Thermal : 625.4810770856515 W
+###########
+I :11.7 A
+
+E : 54.26595566924352 V
+FC Efficiency : 0.3956753390584808
+FC Power : 635.5242333875944 W
+FC Voltage : 54.31831054594824 V
+PH2 : 2.1401001740382304 atm
+PO2 : 2.0806420158235097 atm
+Power-Thermal : 630.8837666124055 W
+###########
+I :11.8 A
+
+E : 54.2657617477193 V
+FC Efficiency : 0.3956687577853919
+FC Power : 640.9454034115876 W
+FC Voltage : 54.3174070687786 V
+PH2 : 2.1398528873218177 atm
+PO2 : 2.0805023978712196 atm
+Power-Thermal : 636.2865965884125 W
+###########
+I :11.9 A
+
+E : 54.26556780589835 V
+FC Efficiency : 0.39566220135636965
+FC Power : 646.366433326209 W
+FC Voltage : 54.31650700220243 V
+PH2 : 2.139605600605404 atm
+PO2 : 2.0803627799189295 atm
+Power-Thermal : 641.6895666737911 W
+###########
+I :12.0 A
+
+E : 54.265373843776224 V
+FC Efficiency : 0.3956556693530998
+FC Power : 651.7873234655225 W
+FC Voltage : 54.31561028879354 V
+PH2 : 2.139358313888991 atm
+PO2 : 2.0802231619666394 atm
+Power-Thermal : 647.0926765344774 W
+###########
+I :12.1 A
+
+E : 54.26517986134853 V
+FC Efficiency : 0.3956491613676821
+FC Power : 657.2080741579202 W
+FC Voltage : 54.314716872555394 V
+PH2 : 2.1391110271725777 atm
+PO2 : 2.0800835440143493 atm
+Power-Thermal : 652.4959258420796 W
+###########
+I :12.2 A
+
+E : 54.26498585861086 V
+FC Efficiency : 0.3956426770022871
+FC Power : 662.6286857262625 W
+FC Voltage : 54.313826698873974 V
+PH2 : 2.1388637404561646 atm
+PO2 : 2.079943926062059 atm
+Power-Thermal : 657.8993142737374 W
+###########
+I :12.3 A
+
+E : 54.264791835558796 V
+FC Efficiency : 0.3956362158688277
+FC Power : 668.0491584880139 W
+FC Voltage : 54.31293971447267 V
+PH2 : 2.1386164537397514 atm
+PO2 : 2.0798043081097686 atm
+Power-Thermal : 663.3028415119861 W
+###########
+I :12.4 A
+
+E : 54.26459779218792 V
+FC Efficiency : 0.39562977758864354
+FC Power : 673.4694927553755 W
+FC Voltage : 54.31205586736899 V
+PH2 : 2.1383691670233382 atm
+PO2 : 2.0796646901574785 atm
+Power-Thermal : 668.7065072446245 W
+###########
+I :12.5 A
+
+E : 54.26440372849381 V
+FC Efficiency : 0.3956233617921977
+FC Power : 678.8896888354112 W
+FC Voltage : 54.3111751068329 V
+PH2 : 2.1381218803069246 atm
+PO2 : 2.079525072205189 atm
+Power-Thermal : 674.1103111645887 W
+###########
+I :12.6 A
+
+E : 54.264209644472075 V
+FC Efficiency : 0.3956169681187866
+FC Power : 684.3097470301724 W
+FC Voltage : 54.31029738334702 V
+PH2 : 2.1378745935905115 atm
+PO2 : 2.0793854542528982 atm
+Power-Thermal : 679.5142529698275 W
+###########
+I :12.7 A
+
+E : 54.26401554011828 V
+FC Efficiency : 0.39561059621626
+FC Power : 689.7296676368157 W
+FC Voltage : 54.30942264856817 V
+PH2 : 2.1376273068740983 atm
+PO2 : 2.079245836300608 atm
+Power-Thermal : 684.918332363184 W
+###########
+I :12.8 A
+
+E : 54.263821415428 V
+FC Efficiency : 0.39560424574075304
+FC Power : 695.1494509477194 W
+FC Voltage : 54.30855085529058 V
+PH2 : 2.137380020157685 atm
+PO2 : 2.079106218348318 atm
+Power-Thermal : 690.3225490522806 W
+###########
+I :12.9 A
+
+E : 54.263627270396825 V
+FC Efficiency : 0.3955979163564283
+FC Power : 700.5690972505952 W
+FC Voltage : 54.30768195741048 V
+PH2 : 2.137132733441272 atm
+PO2 : 2.078966600396028 atm
+Power-Thermal : 695.7269027494048 W
+###########
+I :13.0 A
+
+E : 54.263433105020326 V
+FC Efficiency : 0.39559160773522783
+FC Power : 705.9886068285971 W
+FC Voltage : 54.30681590989208 V
+PH2 : 2.1368854467248584 atm
+PO2 : 2.0788269824437378 atm
+Power-Thermal : 701.1313931714029 W
+###########
+I :13.1 A
+
+E : 54.26323891929408 V
+FC Efficiency : 0.3955853195566345
+FC Power : 711.4079799604257 W
+FC Voltage : 54.30595266873478 V
+PH2 : 2.136638160008445 atm
+PO2 : 2.0786873644914476 atm
+Power-Thermal : 706.5360200395743 W
+###########
+I :13.2 A
+
+E : 54.26304471321367 V
+FC Efficiency : 0.39557905150744266
+FC Power : 716.8272169204308 W
+FC Voltage : 54.30509219094173 V
+PH2 : 2.136390873292032 atm
+PO2 : 2.078547746539157 atm
+Power-Thermal : 711.9407830795691 W
+###########
+I :13.3 A
+
+E : 54.262850486774646 V
+FC Efficiency : 0.39557280328153777
+FC Power : 722.2463179787105 W
+FC Voltage : 54.30423443448951 V
+PH2 : 2.136143586575619 atm
+PO2 : 2.078408128586867 atm
+Power-Thermal : 717.3456820212895 W
+###########
+I :13.4 A
+
+E : 54.26265623997261 V
+FC Efficiency : 0.39556657457968364
+FC Power : 727.6652834012062 W
+FC Voltage : 54.30337935829897 V
+PH2 : 2.1358962998592057 atm
+PO2 : 2.0782685106345773 atm
+Power-Thermal : 722.7507165987938 W
+###########
+I :13.5 A
+
+E : 54.2624619728031 V
+FC Efficiency : 0.3955603651093175
+FC Power : 733.0841134497961 W
+FC Voltage : 54.302526922207115 V
+PH2 : 2.1356490131427925 atm
+PO2 : 2.0781288926822867 atm
+Power-Thermal : 728.1558865502038 W
+###########
+I :13.6 A
+
+E : 54.26226768526171 V
+FC Efficiency : 0.395554174584354
+FC Power : 738.5028083823855 W
+FC Voltage : 54.30167708694012 V
+PH2 : 2.135401726426379 atm
+PO2 : 2.0779892747299966 atm
+Power-Thermal : 733.5611916176143 W
+###########
+I :13.7 A
+
+E : 54.262073377343995 V
+FC Efficiency : 0.39554800272499413
+FC Power : 743.9213684529947 W
+FC Voltage : 54.3008298140872 V
+PH2 : 2.135154439709966 atm
+PO2 : 2.0778496567777065 atm
+Power-Thermal : 738.9666315470052 W
+###########
+I :13.8 A
+
+E : 54.261879049045525 V
+FC Efficiency : 0.39554184925754354
+FC Power : 749.339793911843 W
+FC Voltage : 54.29998506607558 V
+PH2 : 2.1349071529935526 atm
+PO2 : 2.0777100388254164 atm
+Power-Thermal : 744.372206088157 W
+###########
+I :13.9 A
+
+E : 54.261684700361855 V
+FC Efficiency : 0.3955357139142353
+FC Power : 754.7580850054325 W
+FC Voltage : 54.29914280614622 V
+PH2 : 2.1346598662771394 atm
+PO2 : 2.0775704208731263 atm
+Power-Thermal : 749.7779149945675 W
+###########
+I :14.0 A
+
+E : 54.26149033128855 V
+FC Efficiency : 0.3955295964330603
+FC Power : 760.1762419766272 W
+FC Voltage : 54.29830299833052 V
+PH2 : 2.1344125795607263 atm
+PO2 : 2.077430802920836 atm
+Power-Thermal : 755.1837580233727 W
+###########
+I :14.1 A
+
+E : 54.261295941821174 V
+FC Efficiency : 0.3955234965576036
+FC Power : 765.5942650647323 W
+FC Voltage : 54.297465607427824 V
+PH2 : 2.134165292844313 atm
+PO2 : 2.077291184968546 atm
+Power-Thermal : 760.5897349352675 W
+###########
+I :14.2 A
+
+E : 54.261101531955305 V
+FC Efficiency : 0.395517414036886
+FC Power : 771.0121545055687 W
+FC Voltage : 54.29663059898371 V
+PH2 : 2.1339180061279 atm
+PO2 : 2.077151567016256 atm
+Power-Thermal : 765.9958454944311 W
+###########
+I :14.3 A
+
+E : 54.26090710168646 V
+FC Efficiency : 0.395511348625211
+FC Power : 776.4299105315463 W
+FC Voltage : 54.295797939268965 V
+PH2 : 2.133670719411487 atm
+PO2 : 2.077011949063966 atm
+Power-Thermal : 771.4020894684537 W
+###########
+I :14.4 A
+
+E : 54.26071265101024 V
+FC Efficiency : 0.3955053000820185
+FC Power : 781.847533371737 W
+FC Voltage : 54.29496759525951 V
+PH2 : 2.133423432695073 atm
+PO2 : 2.0768723311116752 atm
+Power-Thermal : 776.8084666282631 W
+###########
+I :14.5 A
+
+E : 54.26051817992216 V
+FC Efficiency : 0.395499268171742
+FC Power : 787.2650232519428 W
+FC Voltage : 54.29413953461675 V
+PH2 : 2.13317614597866 atm
+PO2 : 2.076732713159385 atm
+Power-Thermal : 782.2149767480571 W
+###########
+I :14.6 A
+
+E : 54.26032368841779 V
+FC Efficiency : 0.39549325266367136
+FC Power : 792.6823803947646 W
+FC Voltage : 54.2933137256688 V
+PH2 : 2.132928859262247 atm
+PO2 : 2.0765930952070955 atm
+Power-Thermal : 787.6216196052354 W
+###########
+I :14.7 A
+
+E : 54.260129176492704 V
+FC Efficiency : 0.39548725333182033
+FC Power : 798.0996050196668 W
+FC Voltage : 54.2924901373923 V
+PH2 : 2.1326815725458337 atm
+PO2 : 2.076453477254805 atm
+Power-Thermal : 793.0283949803331 W
+###########
+I :14.8 A
+
+E : 54.25993464414242 V
+FC Efficiency : 0.3954812699547984
+FC Power : 803.516697343042 W
+FC Voltage : 54.29166873939472 V
+PH2 : 2.1324342858294205 atm
+PO2 : 2.0763138593025148 atm
+Power-Thermal : 798.435302656958 W
+###########
+I :14.9 A
+
+E : 54.259740091362495 V
+FC Efficiency : 0.39547530231568684
+FC Power : 808.9336575782727 W
+FC Voltage : 54.2908495018975 V
+PH2 : 2.132186999113007 atm
+PO2 : 2.0761742413502247 atm
+Power-Thermal : 803.8423424217273 W
+###########
+I :15.0 A
+
+E : 54.259545518148485 V
+FC Efficiency : 0.3954693502019196
+FC Power : 814.3504859357928 W
+FC Voltage : 54.29003239571952 V
+PH2 : 2.1319397123965937 atm
+PO2 : 2.0760346233979345 atm
+Power-Thermal : 809.2495140642071 W
+###########
+I :15.1 A
+
+E : 54.259350924495934 V
+FC Efficiency : 0.39546341340516683
+FC Power : 819.7671826231457 W
+FC Voltage : 54.28921739226131 V
+PH2 : 2.1316924256801806 atm
+PO2 : 2.0758950054456444 atm
+Power-Thermal : 814.6568173768542 W
+###########
+I :15.2 A
+
+E : 54.259156310400385 V
+FC Efficiency : 0.39545749172122363
+FC Power : 825.1837478450416 W
+FC Voltage : 54.28840446348958 V
+PH2 : 2.1314451389637674 atm
+PO2 : 2.0757553874933543 atm
+Power-Thermal : 820.0642521549584 W
+###########
+I :15.3 A
+
+E : 54.25896167585738 V
+FC Efficiency : 0.3954515849499015
+FC Power : 830.600181803414 W
+FC Voltage : 54.28759358192248 V
+PH2 : 2.1311978522473543 atm
+PO2 : 2.0756157695410637 atm
+Power-Thermal : 825.471818196586 W
+###########
+I :15.4 A
+
+E : 54.25876702086246 V
+FC Efficiency : 0.39544569289492404
+FC Power : 836.0164846974737 W
+FC Voltage : 54.286784720615174 V
+PH2 : 2.130950565530941 atm
+PO2 : 2.0754761515887736 atm
+Power-Thermal : 830.8795153025262 W
+###########
+I :15.5 A
+
+E : 54.25857234541116 V
+FC Efficiency : 0.3954398153638254
+FC Power : 841.4326567237621 W
+FC Voltage : 54.285977853145944 V
+PH2 : 2.1307032788145275 atm
+PO2 : 2.075336533636484 atm
+Power-Thermal : 836.2873432762378 W
+###########
+I :15.6 A
+
+E : 54.25837764949904 V
+FC Efficiency : 0.3954339521678521
+FC Power : 846.8486980762027 W
+FC Voltage : 54.28517295360274 V
+PH2 : 2.1304559920981148 atm
+PO2 : 2.0751969156841934 atm
+Power-Thermal : 841.6953019237972 W
+###########
+I :15.7 A
+
+E : 54.2581829331216 V
+FC Efficiency : 0.39542810312186866
+FC Power : 852.264608946151 W
+FC Voltage : 54.284369996570135 V
+PH2 : 2.130208705381701 atm
+PO2 : 2.0750572977319033 atm
+Power-Thermal : 847.1033910538488 W
+###########
+I :15.8 A
+
+E : 54.25798819627442 V
+FC Efficiency : 0.3954222680442653
+FC Power : 857.6803895224444 W
+FC Voltage : 54.283568957116735 V
+PH2 : 2.129961418665288 atm
+PO2 : 2.074917679779613 atm
+Power-Thermal : 852.5116104775556 W
+###########
+I :15.9 A
+
+E : 54.257793438953 V
+FC Efficiency : 0.3954164467568688
+FC Power : 863.096039991449 W
+FC Voltage : 54.28276981078295 V
+PH2 : 2.129714131948875 atm
+PO2 : 2.074778061827323 atm
+Power-Thermal : 857.919960008551 W
+###########
+I :16.0 A
+
+E : 54.25759866115288 V
+FC Efficiency : 0.3954106390848571
+FC Power : 868.5115605371069 W
+FC Voltage : 54.28197253356918 V
+PH2 : 2.1294668452324617 atm
+PO2 : 2.074638443875033 atm
+Power-Thermal : 863.328439462893 W
+###########
+I :16.1 A
+
+E : 54.257403862869616 V
+FC Efficiency : 0.3954048448566748
+FC Power : 873.9269513409816 W
+FC Voltage : 54.28117710192432 V
+PH2 : 2.1292195585160485 atm
+PO2 : 2.074498825922743 atm
+Power-Thermal : 868.7370486590185 W
+###########
+I :16.2 A
+
+E : 54.2572090440987 V
+FC Efficiency : 0.395399063903953
+FC Power : 879.3422125823015 W
+FC Voltage : 54.280383492734664 V
+PH2 : 2.1289722717996353 atm
+PO2 : 2.0743592079704527 atm
+Power-Thermal : 874.1457874176983 W
+###########
+I :16.3 A
+
+E : 54.25701420483567 V
+FC Efficiency : 0.3953932960614303
+FC Power : 884.7573444380043 W
+FC Voltage : 54.27959168331315 V
+PH2 : 2.1287249850832217 atm
+PO2 : 2.0742195900181626 atm
+Power-Thermal : 879.5546555619956 W
+###########
+I :16.4 A
+
+E : 54.25681934507607 V
+FC Efficiency : 0.39538754116687735
+FC Power : 890.1723470827783 W
+FC Voltage : 54.278801651388925 V
+PH2 : 2.1284776983668086 atm
+PO2 : 2.0740799720658725 atm
+Power-Thermal : 884.9636529172215 W
+###########
+I :16.5 A
+
+E : 54.25662446481542 V
+FC Efficiency : 0.3953817990610228
+FC Power : 895.5872206891038 W
+FC Voltage : 54.2780133750972 V
+PH2 : 2.1282304116503954 atm
+PO2 : 2.073940354113582 atm
+Power-Thermal : 890.372779310896 W
+###########
+I :16.6 A
+
+E : 54.25642956404922 V
+FC Efficiency : 0.3953760695874814
+FC Power : 901.0019654272929 W
+FC Voltage : 54.27722683296945 V
+PH2 : 2.1279831249339822 atm
+PO2 : 2.073800736161292 atm
+Power-Thermal : 895.7820345727072 W
+###########
+I :16.7 A
+
+E : 54.25623464277302 V
+FC Efficiency : 0.39537035259268566
+FC Power : 906.4165814655289 W
+FC Voltage : 54.27644200392389 V
+PH2 : 2.127735838217569 atm
+PO2 : 2.0736611182090017 atm
+Power-Thermal : 901.1914185344709 W
+###########
+I :16.8 A
+
+E : 54.256039700982335 V
+FC Efficiency : 0.3953646479258177
+FC Power : 911.8310689699051 W
+FC Voltage : 54.275658867256254 V
+PH2 : 2.1274885515011555 atm
+PO2 : 2.0735215002567116 atm
+Power-Thermal : 906.6009310300949 W
+###########
+I :16.9 A
+
+E : 54.255844738672685 V
+FC Efficiency : 0.3953589554387444
+FC Power : 917.2454281044609 W
+FC Voltage : 54.27487740263083 V
+PH2 : 2.1272412647847423 atm
+PO2 : 2.0733818823044214 atm
+Power-Thermal : 912.0105718955389 W
+###########
+I :17.0 A
+
+E : 54.25564975583957 V
+FC Efficiency : 0.3953532749859535
+FC Power : 922.6596590312189 W
+FC Voltage : 54.2740975900717 V
+PH2 : 2.126993978068329 atm
+PO2 : 2.0732422643521313 atm
+Power-Thermal : 917.420340968781 W
+###########
+I :17.1 A
+
+E : 54.25545475247852 V
+FC Efficiency : 0.395347606424493
+FC Power : 928.0737619102204 W
+FC Voltage : 54.273319409954404 V
+PH2 : 2.126746691351916 atm
+PO2 : 2.073102646399841 atm
+Power-Thermal : 922.8302380897796 W
+###########
+I :17.2 A
+
+E : 54.25525972858506 V
+FC Efficiency : 0.39534194961391095
+FC Power : 933.4877368995604 W
+FC Voltage : 54.2725428429977 V
+PH2 : 2.126499404635503 atm
+PO2 : 2.072963028447551 atm
+Power-Thermal : 928.2402631004394 W
+###########
+I :17.3 A
+
+E : 54.255064684154675 V
+FC Efficiency : 0.39533630441619705
+FC Power : 938.9015841554207 W
+FC Voltage : 54.27176787025553 V
+PH2 : 2.1262521179190896 atm
+PO2 : 2.072823410495261 atm
+Power-Thermal : 933.6504158445792 W
+###########
+I :17.4 A
+
+E : 54.254869619182905 V
+FC Efficiency : 0.39533067069572725
+FC Power : 944.3153038321042 W
+FC Voltage : 54.27099447310944 V
+PH2 : 2.126004831202676 atm
+PO2 : 2.0726837925429704 atm
+Power-Thermal : 939.0606961678956 W
+###########
+I :17.5 A
+
+E : 54.25467453366524 V
+FC Efficiency : 0.3953250483192084
+FC Power : 949.7288960820663 W
+FC Voltage : 54.27022263326093 V
+PH2 : 2.1257575444862633 atm
+PO2 : 2.0725441745906803 atm
+Power-Thermal : 944.4711039179336 W
+###########
+I :17.6 A
+
+E : 54.2544794275972 V
+FC Efficiency : 0.3953194371556253
+FC Power : 955.1423610559467 W
+FC Voltage : 54.26945233272424 V
+PH2 : 2.1255102577698497 atm
+PO2 : 2.0724045566383906 atm
+Power-Thermal : 949.8816389440533 W
+###########
+I :17.7 A
+
+E : 54.25428430097429 V
+FC Efficiency : 0.39531383707618917
+FC Power : 960.5556989026007 W
+FC Voltage : 54.26868355381925 V
+PH2 : 2.1252629710534365 atm
+PO2 : 2.0722649386861 atm
+Power-Thermal : 955.2923010973991 W
+###########
+I :17.8 A
+
+E : 54.254089153792 V
+FC Efficiency : 0.3953082479542874
+FC Power : 965.9689097691294 W
+FC Voltage : 54.26791627916457 V
+PH2 : 2.1250156843370234 atm
+PO2 : 2.07212532073381 atm
+Power-Thermal : 960.7030902308707 W
+###########
+I :17.9 A
+
+E : 54.25389398604587 V
+FC Efficiency : 0.39530266966543465
+FC Power : 971.3819938009085 W
+FC Voltage : 54.26715049167087 V
+PH2 : 2.12476839762061 atm
+PO2 : 2.07198570278152 atm
+Power-Thermal : 966.1140061990912 W
+###########
+I :18.0 A
+
+E : 54.25369879773137 V
+FC Efficiency : 0.3952971020872258
+FC Power : 976.7949511416184 W
+FC Voltage : 54.266386174534354 V
+PH2 : 2.124521110904197 atm
+PO2 : 2.0718460848292297 atm
+Power-Thermal : 971.5250488583815 W
+###########
+I :18.1 A
+
+E : 54.25350358884401 V
+FC Efficiency : 0.3952915450992895
+FC Power : 982.2077819332715 W
+FC Voltage : 54.26562331123046 V
+PH2 : 2.124273824187784 atm
+PO2 : 2.0717064668769396 atm
+Power-Thermal : 976.9362180667285 W
+###########
+I :18.2 A
+
+E : 54.25330835937929 V
+FC Efficiency : 0.39528599858324337
+FC Power : 987.6204863162392 W
+FC Voltage : 54.26486188550765 V
+PH2 : 2.1240265374713703 atm
+PO2 : 2.0715668489246495 atm
+Power-Thermal : 982.3475136837607 W
+###########
+I :18.3 A
+
+E : 54.253113109332716 V
+FC Efficiency : 0.39528046242265075
+FC Power : 993.0330644292814 W
+FC Voltage : 54.26410188138149 V
+PH2 : 2.123779250754957 atm
+PO2 : 2.071427230972359 atm
+Power-Thermal : 987.7589355707187 W
+###########
+I :18.4 A
+
+E : 54.25291783869977 V
+FC Efficiency : 0.3952749365029779
+FC Power : 998.44551640957 W
+FC Voltage : 54.26334328312881 V
+PH2 : 2.123531964038544 atm
+PO2 : 2.0712876130200693 atm
+Power-Thermal : 993.1704835904297 W
+###########
+I :18.5 A
+
+E : 54.252722547475955 V
+FC Efficiency : 0.3952694207115529
+FC Power : 1003.8578423927166 W
+FC Voltage : 54.26258607528198 V
+PH2 : 2.1232846773221308 atm
+PO2 : 2.071147995067779 atm
+Power-Thermal : 998.5821576072833 W
+###########
+I :18.6 A
+
+E : 54.252527235656764 V
+FC Efficiency : 0.39526391493752544
+FC Power : 1009.2700425127971 W
+FC Voltage : 54.261830242623496 V
+PH2 : 2.1230373906057176 atm
+PO2 : 2.0710083771154886 atm
+Power-Thermal : 1003.9939574872029 W
+###########
+I :18.7 A
+
+E : 54.25233190323769 V
+FC Efficiency : 0.39525841907182807
+FC Power : 1014.6821169023765 W
+FC Voltage : 54.26107577018056 V
+PH2 : 2.122790103889304 atm
+PO2 : 2.0708687591631985 atm
+Power-Thermal : 1009.4058830976234 W
+###########
+I :18.8 A
+
+E : 54.25213655021422 V
+FC Efficiency : 0.39525293300713754
+FC Power : 1020.0940656925331 W
+FC Voltage : 54.260322643219844 V
+PH2 : 2.122542817172891 atm
+PO2 : 2.0707291412109083 atm
+Power-Thermal : 1014.8179343074669 W
+###########
+I :18.9 A
+
+E : 54.25194117658184 V
+FC Efficiency : 0.3952474566378384
+FC Power : 1025.5058890128823 W
+FC Voltage : 54.25957084724245 V
+PH2 : 2.1222955304564777 atm
+PO2 : 2.0705895232586182 atm
+Power-Thermal : 1020.2301109871175 W
+###########
+I :19.0 A
+
+E : 54.25174578233606 V
+FC Efficiency : 0.39524198985998665
+FC Power : 1030.9175869916005 W
+FC Voltage : 54.25882036797897 V
+PH2 : 2.1220482437400645 atm
+PO2 : 2.070449905306328 atm
+Power-Thermal : 1025.6424130083994 W
+###########
+I :19.1 A
+
+E : 54.251550367472326 V
+FC Efficiency : 0.39523653257127445
+FC Power : 1036.329159755445 W
+FC Voltage : 54.25807119138455 V
+PH2 : 2.1218009570236513 atm
+PO2 : 2.070310287354038 atm
+Power-Thermal : 1031.054840244555 W
+###########
+I :19.2 A
+
+E : 54.25135493198616 V
+FC Efficiency : 0.3952310846709965
+FC Power : 1041.7406074297805 W
+FC Voltage : 54.2573233036344 V
+PH2 : 2.121553670307238 atm
+PO2 : 2.070170669401748 atm
+Power-Thermal : 1036.4673925702193 W
+###########
+I :19.3 A
+
+E : 54.25115947587302 V
+FC Efficiency : 0.39522564606001637
+FC Power : 1047.1519301385977 W
+FC Voltage : 54.25657669111905 V
+PH2 : 2.1213063835908246 atm
+PO2 : 2.0700310514494578 atm
+Power-Thermal : 1041.8800698614023 W
+###########
+I :19.4 A
+
+E : 54.2509639991284 V
+FC Efficiency : 0.395220216640734
+FC Power : 1052.5631280045352 W
+FC Voltage : 54.25583134043996 V
+PH2 : 2.121059096874412 atm
+PO2 : 2.0698914334971676 atm
+Power-Thermal : 1047.2928719954646 W
+###########
+I :19.5 A
+
+E : 54.25076850174777 V
+FC Efficiency : 0.39521479631705414
+FC Power : 1057.9742011489013 W
+FC Voltage : 54.255087238405196 V
+PH2 : 2.1208118101579982 atm
+PO2 : 2.069751815544877 atm
+Power-Thermal : 1052.7057988510985 W
+###########
+I :19.6 A
+
+E : 54.25057298372662 V
+FC Efficiency : 0.395209384994356
+FC Power : 1063.3851496916939 W
+FC Voltage : 54.254344372025194 V
+PH2 : 2.120564523441585 atm
+PO2 : 2.069612197592587 atm
+Power-Thermal : 1058.1188503083063 W
+###########
+I :19.7 A
+
+E : 54.25037744506042 V
+FC Efficiency : 0.3952039825794626
+FC Power : 1068.7959737516198 W
+FC Voltage : 54.253602728508625 V
+PH2 : 2.120317236725172 atm
+PO2 : 2.0694725796402973 atm
+Power-Thermal : 1063.53202624838 W
+###########
+I :19.8 A
+
+E : 54.25018188574465 V
+FC Efficiency : 0.39519858898061183
+FC Power : 1074.2066734461162 W
+FC Voltage : 54.25286229525839 V
+PH2 : 2.1200699500087588 atm
+PO2 : 2.0693329616880067 atm
+Power-Thermal : 1068.945326553884 W
+###########
+I :19.9 A
+
+E : 54.24998630577477 V
+FC Efficiency : 0.39519320410742786
+FC Power : 1079.6172488913671 W
+FC Voltage : 54.2521230598677 V
+PH2 : 2.1198226632923456 atm
+PO2 : 2.0691933437357166 atm
+Power-Thermal : 1074.3587511086325 W
+###########
+I :20.0 A
+
+E : 54.24979070514627 V
+FC Efficiency : 0.3951878278708936
+FC Power : 1085.0277002023256 W
+FC Voltage : 54.25138501011628 V
+PH2 : 2.1195753765759324 atm
+PO2 : 2.0690537257834265 atm
+Power-Thermal : 1079.7722997976743 W
+###########
+I :20.1 A
+
+E : 54.249595083854615 V
+FC Efficiency : 0.3951824601833235
+FC Power : 1090.4380274927298 W
+FC Voltage : 54.25064813396665 V
+PH2 : 2.119328089859519 atm
+PO2 : 2.0689141078311364 atm
+Power-Thermal : 1085.1859725072704 W
+###########
+I :20.2 A
+
+E : 54.24939944189526 V
+FC Efficiency : 0.39517710095833636
+FC Power : 1095.8482308751204 W
+FC Voltage : 54.24991241956042 V
+PH2 : 2.1190808031431057 atm
+PO2 : 2.0687744898788463 atm
+Power-Thermal : 1090.5997691248795 W
+###########
+I :20.3 A
+
+E : 54.249203779263695 V
+FC Efficiency : 0.39517175011083105
+FC Power : 1101.258310460862 W
+FC Voltage : 54.24917785521488 V
+PH2 : 2.1188335164266925 atm
+PO2 : 2.068634871926556 atm
+Power-Thermal : 1096.0136895391379 W
+###########
+I :20.4 A
+
+E : 54.24900809595536 V
+FC Efficiency : 0.39516640755695975
+FC Power : 1106.6682663601564 W
+FC Voltage : 54.248444429419436 V
+PH2 : 2.1185862297102793 atm
+PO2 : 2.0684952539742656 atm
+Power-Thermal : 1101.4277336398434 W
+###########
+I :20.5 A
+
+E : 54.24881239196575 V
+FC Efficiency : 0.39516107321410493
+FC Power : 1112.0780986820628 W
+FC Voltage : 54.247712130832326 V
+PH2 : 2.118338942993866 atm
+PO2 : 2.0683556360219755 atm
+Power-Thermal : 1106.8419013179373 W
+###########
+I :20.6 A
+
+E : 54.24861666729031 V
+FC Efficiency : 0.39515574700085404
+FC Power : 1117.4878075345114 W
+FC Voltage : 54.24698094827725 V
+PH2 : 2.1180916562774526 atm
+PO2 : 2.068216018069686 atm
+Power-Thermal : 1112.2561924654888 W
+###########
+I :20.7 A
+
+E : 54.2484209219245 V
+FC Efficiency : 0.39515042883697715
+FC Power : 1122.8973930243226 W
+FC Voltage : 54.246250870740226 V
+PH2 : 2.1178443695610394 atm
+PO2 : 2.0680764001173952 atm
+Power-Thermal : 1117.6706069756772 W
+###########
+I :20.8 A
+
+E : 54.248225155863786 V
+FC Efficiency : 0.3951451186434038
+FC Power : 1128.3068552572227 W
+FC Voltage : 54.24552188736647 V
+PH2 : 2.117597082844626 atm
+PO2 : 2.067936782165105 atm
+Power-Thermal : 1123.0851447427774 W
+###########
+I :20.9 A
+
+E : 54.24802936910361 V
+FC Efficiency : 0.3951398163422004
+FC Power : 1133.716194337857 W
+FC Voltage : 54.24479398745727 V
+PH2 : 2.117349796128213 atm
+PO2 : 2.067797164212815 atm
+Power-Thermal : 1128.4998056621428 W
+###########
+I :21.0 A
+
+E : 54.24783356163947 V
+FC Efficiency : 0.3951345218565494
+FC Power : 1139.1254103698093 W
+FC Voltage : 54.244067160467104 V
+PH2 : 2.1171025094118 atm
+PO2 : 2.067657546260525 atm
+Power-Thermal : 1133.9145896301907 W
+###########
+I :21.1 A
+
+E : 54.247637733466775 V
+FC Efficiency : 0.3951292351107273
+FC Power : 1144.5345034556135 W
+FC Voltage : 54.24334139600064 V
+PH2 : 2.1168552226953867 atm
+PO2 : 2.0675179283082348 atm
+Power-Thermal : 1139.3294965443865 W
+###########
+I :21.2 A
+
+E : 54.24744188458101 V
+FC Efficiency : 0.3951239560300841
+FC Power : 1149.9434736967708 W
+FC Voltage : 54.24261668380994 V
+PH2 : 2.116607935978973 atm
+PO2 : 2.0673783103559447 atm
+Power-Thermal : 1144.7445263032291 W
+###########
+I :21.3 A
+
+E : 54.2472460149776 V
+FC Efficiency : 0.3951186845410233
+FC Power : 1155.3523211937627 W
+FC Voltage : 54.241893013791675 V
+PH2 : 2.1163606492625604 atm
+PO2 : 2.0672386924036545 atm
+Power-Thermal : 1150.1596788062373 W
+###########
+I :21.4 A
+
+E : 54.24705012465202 V
+FC Efficiency : 0.39511342057098225
+FC Power : 1160.7610460460671 W
+FC Voltage : 54.241170375984446 V
+PH2 : 2.116113362546147 atm
+PO2 : 2.0670990744513644 atm
+Power-Thermal : 1155.5749539539327 W
+###########
+I :21.5 A
+
+E : 54.24685421359971 V
+FC Efficiency : 0.3951081640484125
+FC Power : 1166.1696483521705 W
+FC Voltage : 54.24044876056607 V
+PH2 : 2.1158660758297336 atm
+PO2 : 2.0669594564990743 atm
+Power-Thermal : 1160.9903516478294 W
+###########
+I :21.6 A
+
+E : 54.24665828181612 V
+FC Efficiency : 0.39510291490276117
+FC Power : 1171.578128209583 W
+FC Voltage : 54.239728157851054 V
+PH2 : 2.1156187891133205 atm
+PO2 : 2.0668198385467837 atm
+Power-Thermal : 1166.4058717904172 W
+###########
+I :21.7 A
+
+E : 54.24646232929669 V
+FC Efficiency : 0.39509767306445276
+FC Power : 1176.9864857148511 W
+FC Voltage : 54.23900855828808 V
+PH2 : 2.1153715023969073 atm
+PO2 : 2.0666802205944936 atm
+Power-Thermal : 1171.8215142851486 W
+###########
+I :21.8 A
+
+E : 54.24626635603686 V
+FC Efficiency : 0.3950924384648707
+FC Power : 1182.3947209635724 W
+FC Voltage : 54.23828995245744 V
+PH2 : 2.115124215680494 atm
+PO2 : 2.066540602642204 atm
+Power-Thermal : 1177.2372790364277 W
+###########
+I :21.9 A
+
+E : 54.2460703620321 V
+FC Efficiency : 0.39508721103634015
+FC Power : 1187.802834050406 W
+FC Voltage : 54.237572331068776 V
+PH2 : 2.114876928964081 atm
+PO2 : 2.0664009846899134 atm
+Power-Thermal : 1182.6531659495936 W
+###########
+I :22.0 A
+
+E : 54.24587434727782 V
+FC Efficiency : 0.39508199071211086
+FC Power : 1193.210825069089 W
+FC Voltage : 54.236855684958584 V
+PH2 : 2.1146296422476674 atm
+PO2 : 2.0662613667376233 atm
+Power-Thermal : 1188.069174930911 W
+###########
+I :22.1 A
+
+E : 54.24567831176948 V
+FC Efficiency : 0.3950767774263403
+FC Power : 1198.6186941124447 W
+FC Voltage : 54.236140005088 V
+PH2 : 2.114382355531254 atm
+PO2 : 2.066121748785333 atm
+Power-Thermal : 1193.4853058875553 W
+###########
+I :22.2 A
+
+E : 54.24548225550251 V
+FC Efficiency : 0.395071571114077
+FC Power : 1204.0264412723989 W
+FC Voltage : 54.23542528254049 V
+PH2 : 2.114135068814841 atm
+PO2 : 2.065982130833043 atm
+Power-Thermal : 1198.901558727601 W
+###########
+I :22.3 A
+
+E : 54.24528617847235 V
+FC Efficiency : 0.395066371711245
+FC Power : 1209.4340666399896 W
+FC Voltage : 54.234711508519716 V
+PH2 : 2.113887782098428 atm
+PO2 : 2.065842512880753 atm
+Power-Thermal : 1204.3179333600103 W
+###########
+I :22.4 A
+
+E : 54.245090080674416 V
+FC Efficiency : 0.3950611791546279
+FC Power : 1214.84157030538 W
+FC Voltage : 54.23399867434732 V
+PH2 : 2.1136404953820147 atm
+PO2 : 2.065702894928463 atm
+Power-Thermal : 1209.7344296946198 W
+###########
+I :22.5 A
+
+E : 54.24489396210418 V
+FC Efficiency : 0.3950559933818539
+FC Power : 1220.2489523578702 W
+FC Voltage : 54.2332867714609 V
+PH2 : 2.113393208665601 atm
+PO2 : 2.0655632769761723 atm
+Power-Thermal : 1215.1510476421297 W
+###########
+I :22.6 A
+
+E : 54.24469782275704 V
+FC Efficiency : 0.3950508143313798
+FC Power : 1225.6562128859073 W
+FC Voltage : 54.23257579141182 V
+PH2 : 2.113145921949188 atm
+PO2 : 2.065423659023882 atm
+Power-Thermal : 1220.5677871140929 W
+###########
+I :22.7 A
+
+E : 54.24450166262845 V
+FC Efficiency : 0.395045641942478
+FC Power : 1231.0633519770986 W
+FC Voltage : 54.23186572586338 V
+PH2 : 2.1128986352327748 atm
+PO2 : 2.0652840410715925 atm
+Power-Thermal : 1225.9846480229012 W
+###########
+I :22.8 A
+
+E : 54.24430548171382 V
+FC Efficiency : 0.3950404761552206
+FC Power : 1236.4703697182222 W
+FC Voltage : 54.23115656658869 V
+PH2 : 2.1126513485163616 atm
+PO2 : 2.065144423119302 atm
+Power-Thermal : 1231.401630281778 W
+###########
+I :22.9 A
+
+E : 54.24410928000859 V
+FC Efficiency : 0.39503531691046634
+FC Power : 1241.877266195236 W
+FC Voltage : 54.23044830546882 V
+PH2 : 2.1124040617999484 atm
+PO2 : 2.065004805167012 atm
+Power-Thermal : 1236.818733804764 W
+###########
+I :23.0 A
+
+E : 54.24391305750819 V
+FC Efficiency : 0.3950301641498466
+FC Power : 1247.2840414932916 W
+FC Voltage : 54.22974093449094 V
+PH2 : 2.1121567750835353 atm
+PO2 : 2.0648651872147217 atm
+Power-Thermal : 1242.2359585067081 W
+###########
+I :23.1 A
+
+E : 54.24371681420803 V
+FC Efficiency : 0.3950250178157519
+FC Power : 1252.6906956967425 W
+FC Voltage : 54.22903444574642 V
+PH2 : 2.1119094883671217 atm
+PO2 : 2.0647255692624316 atm
+Power-Thermal : 1247.6533043032575 W
+###########
+I :23.2 A
+
+E : 54.24352055010354 V
+FC Efficiency : 0.39501987785131887
+FC Power : 1258.0972288891542 W
+FC Voltage : 54.22832883142906 V
+PH2 : 2.111662201650709 atm
+PO2 : 2.0645859513101414 atm
+Power-Thermal : 1253.0707711108457 W
+###########
+I :23.3 A
+
+E : 54.24332426519014 V
+FC Efficiency : 0.39501474420041754
+FC Power : 1263.5036411533165 W
+FC Voltage : 54.22762408383332 V
+PH2 : 2.1114149149342953 atm
+PO2 : 2.0644463333578513 atm
+Power-Thermal : 1258.4883588466835 W
+###########
+I :23.4 A
+
+E : 54.24312795946326 V
+FC Efficiency : 0.39500961680763874
+FC Power : 1268.9099325712516 W
+FC Voltage : 54.22692019535264 V
+PH2 : 2.111167628217882 atm
+PO2 : 2.0643067154055608 atm
+Power-Thermal : 1263.906067428748 W
+###########
+I :23.5 A
+
+E : 54.2429316329183 V
+FC Efficiency : 0.39500449561828127
+FC Power : 1274.316103224225 W
+FC Voltage : 54.22621715847765 V
+PH2 : 2.110920341501469 atm
+PO2 : 2.064167097453271 atm
+Power-Thermal : 1269.323896775775 W
+###########
+I :23.6 A
+
+E : 54.242735285550694 V
+FC Efficiency : 0.3949993805783409
+FC Power : 1279.7221531927535 W
+FC Voltage : 54.22551496579464 V
+PH2 : 2.110673054785056 atm
+PO2 : 2.064027479500981 atm
+Power-Thermal : 1274.7418468072465 W
+###########
+I :23.7 A
+
+E : 54.242538917355844 V
+FC Efficiency : 0.3949942716344977
+FC Power : 1285.128082556617 W
+FC Voltage : 54.22481360998384 V
+PH2 : 2.1104257680686427 atm
+PO2 : 2.0638878615486904 atm
+Power-Thermal : 1280.1599174433827 W
+###########
+I :23.8 A
+
+E : 54.242342528329175 V
+FC Efficiency : 0.3949891687341048
+FC Power : 1290.5338913948663 W
+FC Voltage : 54.224113083817905 V
+PH2 : 2.1101784813522295 atm
+PO2 : 2.0637482435964003 atm
+Power-Thermal : 1285.5781086051338 W
+###########
+I :23.9 A
+
+E : 54.24214611846609 V
+FC Efficiency : 0.39498407182517725
+FC Power : 1295.939579785832 W
+FC Voltage : 54.22341338016034 V
+PH2 : 2.109931194635816 atm
+PO2 : 2.0636086256441106 atm
+Power-Thermal : 1290.9964202141678 W
+###########
+I :24.0 A
+
+E : 54.241949687761995 V
+FC Efficiency : 0.3949789808563809
+FC Power : 1301.3451478071352 W
+FC Voltage : 54.22271449196397 V
+PH2 : 2.1096839079194027 atm
+PO2 : 2.06346900769182 atm
+Power-Thermal : 1296.4148521928646 W
+###########
+I :24.1 A
+
+E : 54.24175323621232 V
+FC Efficiency : 0.39497389577702136
+FC Power : 1306.7505955356949 W
+FC Voltage : 54.22201641226949 V
+PH2 : 2.1094366212029896 atm
+PO2 : 2.06332938973953 atm
+Power-Thermal : 1301.8334044643052 W
+###########
+I :24.2 A
+
+E : 54.241556763812454 V
+FC Efficiency : 0.39496881653703353
+FC Power : 1312.155923047736 W
+FC Voltage : 54.221319134203966 V
+PH2 : 2.1091893344865764 atm
+PO2 : 2.06318977178724 atm
+Power-Thermal : 1307.252076952264 W
+###########
+I :24.3 A
+
+E : 54.241360270557806 V
+FC Efficiency : 0.3949637430869715
+FC Power : 1317.5611304188008 W
+FC Voltage : 54.22062265097945 V
+PH2 : 2.1089420477701633 atm
+PO2 : 2.0630501538349497 atm
+Power-Thermal : 1312.6708695811992 W
+###########
+I :24.4 A
+
+E : 54.24116375644378 V
+FC Efficiency : 0.39495867537799784
+FC Power : 1322.9662177237535 W
+FC Voltage : 54.219926955891545 V
+PH2 : 2.1086947610537496 atm
+PO2 : 2.0629105358826596 atm
+Power-Thermal : 1318.089782276246 W
+###########
+I :24.5 A
+
+E : 54.240967221465795 V
+FC Efficiency : 0.3949536133618742
+FC Power : 1328.3711850367931 W
+FC Voltage : 54.21923204231809 V
+PH2 : 2.1084474743373365 atm
+PO2 : 2.0627709179303695 atm
+Power-Thermal : 1323.5088149632068 W
+###########
+I :24.6 A
+
+E : 54.24077066561922 V
+FC Efficiency : 0.394948556990951
+FC Power : 1333.7760324314568 W
+FC Voltage : 54.21853790371775 V
+PH2 : 2.1082001876209233 atm
+PO2 : 2.062631299978079 atm
+Power-Thermal : 1328.9279675685432 W
+###########
+I :24.7 A
+
+E : 54.240574088899486 V
+FC Efficiency : 0.3949435062181584
+FC Power : 1339.180759980631 W
+FC Voltage : 54.217844533628785 V
+PH2 : 2.10795290090451 atm
+PO2 : 2.062491682025789 atm
+Power-Thermal : 1334.3472400193689 W
+###########
+I :24.8 A
+
+E : 54.240377491301984 V
+FC Efficiency : 0.39493846099699664
+FC Power : 1344.585367756559 W
+FC Voltage : 54.2171519256677 V
+PH2 : 2.107705614188097 atm
+PO2 : 2.062352064073499 atm
+Power-Thermal : 1339.7666322434409 W
+###########
+I :24.9 A
+
+E : 54.240180872822094 V
+FC Efficiency : 0.39493342128152675
+FC Power : 1349.989855830847 W
+FC Voltage : 54.216460073528 V
+PH2 : 2.107458327471684 atm
+PO2 : 2.0622124461212086 atm
+Power-Thermal : 1345.1861441691526 W
+###########
+I :25.0 A
+
+E : 54.239984233455225 V
+FC Efficiency : 0.3949283870263619
+FC Power : 1355.394224274474 W
+FC Voltage : 54.215768970978964 V
+PH2 : 2.10721104075527 atm
+PO2 : 2.0620728281689185 atm
+Power-Thermal : 1350.6057757255257 W
+###########
+I :25.1 A
+
+E : 54.23978757319676 V
+FC Efficiency : 0.39492335818665825
+FC Power : 1360.7984731577978 W
+FC Voltage : 54.21507861186445 V
+PH2 : 2.1069637540388575 atm
+PO2 : 2.0619332102166283 atm
+Power-Thermal : 1356.0255268422022 W
+###########
+I :25.2 A
+
+E : 54.23959089204211 V
+FC Efficiency : 0.3949183347181069
+FC Power : 1366.2026025505631 W
+FC Voltage : 54.21438899010171 V
+PH2 : 2.106716467322444 atm
+PO2 : 2.0617935922643382 atm
+Power-Thermal : 1361.4453974494368 W
+###########
+I :25.3 A
+
+E : 54.23939418998665 V
+FC Efficiency : 0.3949133165769242
+FC Power : 1371.606612521908 W
+FC Voltage : 54.21370009968015 V
+PH2 : 2.1064691806060307 atm
+PO2 : 2.061653974312048 atm
+Power-Thermal : 1366.865387478092 W
+###########
+I :25.4 A
+
+E : 54.23919746702576 V
+FC Efficiency : 0.3949083037198448
+FC Power : 1377.0105031403716 W
+FC Voltage : 54.2130119346603 V
+PH2 : 2.1062218938896176 atm
+PO2 : 2.061514356359758 atm
+Power-Thermal : 1372.2854968596282 W
+###########
+I :25.5 A
+
+E : 54.239000723154845 V
+FC Efficiency : 0.39490329610411307
+FC Power : 1382.4142744739024 W
+FC Voltage : 54.212324489172644 V
+PH2 : 2.1059746071732044 atm
+PO2 : 2.0613747384074674 atm
+Power-Thermal : 1377.7057255260975 W
+###########
+I :25.6 A
+
+E : 54.238803958369296 V
+FC Efficiency : 0.39489829368747464
+FC Power : 1387.8179265898632 W
+FC Voltage : 54.211637757416526 V
+PH2 : 2.1057273204567912 atm
+PO2 : 2.0612351204551778 atm
+Power-Thermal : 1383.126073410137 W
+###########
+I :25.7 A
+
+E : 54.23860717266447 V
+FC Efficiency : 0.394893296428169
+FC Power : 1393.2214595550374 W
+FC Voltage : 54.210951733659044 V
+PH2 : 2.105480033740378 atm
+PO2 : 2.0610955025028876 atm
+Power-Thermal : 1388.5465404449624 W
+###########
+I :25.8 A
+
+E : 54.23841036603577 V
+FC Efficiency : 0.39488830428492194
+FC Power : 1398.6248734356393 W
+FC Voltage : 54.210266412234084 V
+PH2 : 2.1052327470239645 atm
+PO2 : 2.060955884550597 atm
+Power-Thermal : 1393.9671265643606 W
+###########
+I :25.9 A
+
+E : 54.23821353847858 V
+FC Efficiency : 0.39488331721693776
+FC Power : 1404.0281682973173 W
+FC Voltage : 54.20958178754121 V
+PH2 : 2.1049854603075513 atm
+PO2 : 2.060816266598307 atm
+Power-Thermal : 1399.3878317026824 W
+###########
+I :26.0 A
+
+E : 54.238016689988264 V
+FC Efficiency : 0.39487833518389176
+FC Power : 1409.4313442051612 W
+FC Voltage : 54.208897854044665 V
+PH2 : 2.104738173591138 atm
+PO2 : 2.060676648646017 atm
+Power-Thermal : 1404.8086557948386 W
+###########
+I :26.1 A
+
+E : 54.23781982056021 V
+FC Efficiency : 0.39487335814592384
+FC Power : 1414.8344012237105 W
+FC Voltage : 54.20821460627243 V
+PH2 : 2.104490886874725 atm
+PO2 : 2.0605370306937267 atm
+Power-Thermal : 1410.2295987762895 W
+###########
+I :26.2 A
+
+E : 54.237622930189794 V
+FC Efficiency : 0.3948683860636301
+FC Power : 1420.2373394169567 W
+FC Voltage : 54.207532038815145 V
+PH2 : 2.104243600158312 atm
+PO2 : 2.0603974127414366 atm
+Power-Thermal : 1415.650660583043 W
+###########
+I :26.3 A
+
+E : 54.237426018872384 V
+FC Efficiency : 0.39486341889805704
+FC Power : 1425.6401588483545 W
+FC Voltage : 54.206850146325266 V
+PH2 : 2.103996313441898 atm
+PO2 : 2.0602577947891465 atm
+Power-Thermal : 1421.0718411516455 W
+###########
+I :26.4 A
+
+E : 54.23722908660335 V
+FC Efficiency : 0.3948584566106939
+FC Power : 1431.0428595808241 W
+FC Voltage : 54.20616892351607 V
+PH2 : 2.103749026725485 atm
+PO2 : 2.0601181768368564 atm
+Power-Thermal : 1426.4931404191757 W
+###########
+I :26.5 A
+
+E : 54.23703213337809 V
+FC Efficiency : 0.3948534991634669
+FC Power : 1436.4454416767596 W
+FC Voltage : 54.20548836516074 V
+PH2 : 2.103501740009072 atm
+PO2 : 2.0599785588845663 atm
+Power-Thermal : 1431.9145583232403 W
+###########
+I :26.6 A
+
+E : 54.23683515919194 V
+FC Efficiency : 0.39484854651873147
+FC Power : 1441.8479051980328 W
+FC Voltage : 54.20480846609146 V
+PH2 : 2.1032544532926587 atm
+PO2 : 2.059838940932276 atm
+Power-Thermal : 1437.3360948019672 W
+###########
+I :26.7 A
+
+E : 54.23663816404028 V
+FC Efficiency : 0.3948435986392666
+FC Power : 1447.2502502060004 W
+FC Voltage : 54.20412922119852 V
+PH2 : 2.1030071665762455 atm
+PO2 : 2.0596993229799856 atm
+Power-Thermal : 1442.7577497939992 W
+###########
+I :26.8 A
+
+E : 54.236441147918484 V
+FC Efficiency : 0.39483865548826846
+FC Power : 1452.6524767615106 W
+FC Voltage : 54.2034506254295 V
+PH2 : 2.1027598798598324 atm
+PO2 : 2.0595597050276955 atm
+Power-Thermal : 1448.1795232384893 W
+###########
+I :26.9 A
+
+E : 54.236244110821914 V
+FC Efficiency : 0.39483371702934406
+FC Power : 1458.0545849249065 W
+FC Voltage : 54.20277267378835 V
+PH2 : 2.1025125931434188 atm
+PO2 : 2.059420087075406 atm
+Power-Thermal : 1453.6014150750932 W
+###########
+I :27.0 A
+
+E : 54.23604705274593 V
+FC Efficiency : 0.39482878322650494
+FC Power : 1463.4565747560341 W
+FC Voltage : 54.2020953613346 V
+PH2 : 2.102265306427006 atm
+PO2 : 2.0592804691231152 atm
+Power-Thermal : 1459.0234252439657 W
+###########
+I :27.1 A
+
+E : 54.2358499736859 V
+FC Efficiency : 0.39482385404416154
+FC Power : 1468.8584463142456 W
+FC Voltage : 54.201418683182496 V
+PH2 : 2.1020180197105924 atm
+PO2 : 2.059140851170825 atm
+Power-Thermal : 1464.4455536857542 W
+###########
+I :27.2 A
+
+E : 54.23565287363718 V
+FC Efficiency : 0.39481892944711705
+FC Power : 1474.2601996584062 W
+FC Voltage : 54.20074263450023 V
+PH2 : 2.1017707329941793 atm
+PO2 : 2.059001233218535 atm
+Power-Thermal : 1469.8678003415935 W
+###########
+I :27.3 A
+
+E : 54.23545575259513 V
+FC Efficiency : 0.39481400940056205
+FC Power : 1479.6618348469 W
+FC Voltage : 54.20006721050916 V
+PH2 : 2.101523446277766 atm
+PO2 : 2.058861615266245 atm
+Power-Thermal : 1475.2901651531 W
+###########
+I :27.4 A
+
+E : 54.23525861055511 V
+FC Efficiency : 0.3948090938700682
+FC Power : 1485.0633519376331 W
+FC Voltage : 54.199392406482964 V
+PH2 : 2.101276159561353 atm
+PO2 : 2.0587219973139548 atm
+Power-Thermal : 1480.7126480623665 W
+###########
+I :27.5 A
+
+E : 54.23506144751246 V
+FC Efficiency : 0.3948041828215832
+FC Power : 1490.4647509880408 W
+FC Voltage : 54.198718217746936 V
+PH2 : 2.1010288728449398 atm
+PO2 : 2.0585823793616647 atm
+Power-Thermal : 1486.135249011959 W
+###########
+I :27.6 A
+
+E : 54.23486426346255 V
+FC Efficiency : 0.3947992762214252
+FC Power : 1495.8660320550923 W
+FC Voltage : 54.198044639677256 V
+PH2 : 2.1007815861285266 atm
+PO2 : 2.058442761409374 atm
+Power-Thermal : 1491.5579679449077 W
+###########
+I :27.7 A
+
+E : 54.23466705840074 V
+FC Efficiency : 0.3947943740362776
+FC Power : 1501.2671951952952 W
+FC Voltage : 54.19737166770019 V
+PH2 : 2.100534299412113 atm
+PO2 : 2.058303143457084 atm
+Power-Thermal : 1496.9808048047046 W
+###########
+I :27.8 A
+
+E : 54.23446983232236 V
+FC Efficiency : 0.3947894762331831
+FC Power : 1506.6682404647001 W
+FC Voltage : 54.196699297291374 V
+PH2 : 2.1002870126957 atm
+PO2 : 2.0581635255047943 atm
+Power-Thermal : 1502.4037595352997 W
+###########
+I :27.9 A
+
+E : 54.23427258522277 V
+FC Efficiency : 0.3947845827795395
+FC Power : 1512.0691679189074 W
+FC Voltage : 54.19602752397518 V
+PH2 : 2.1000397259792867 atm
+PO2 : 2.0580239075525038 atm
+Power-Thermal : 1507.826832081092 W
+###########
+I :28.0 A
+
+E : 54.234075317097314 V
+FC Efficiency : 0.3947796936430939
+FC Power : 1517.4699776130701 W
+FC Voltage : 54.19535634332394 V
+PH2 : 2.0997924392628735 atm
+PO2 : 2.0578842896002136 atm
+Power-Thermal : 1513.2500223869297 W
+###########
+I :28.1 A
+
+E : 54.23387802794135 V
+FC Efficiency : 0.39477480879193827
+FC Power : 1522.8706696018999 W
+FC Voltage : 54.19468575095729 V
+PH2 : 2.0995451525464603 atm
+PO2 : 2.0577446716479235 atm
+Power-Thermal : 1518.6733303981 W
+###########
+I :28.2 A
+
+E : 54.23368071775022 V
+FC Efficiency : 0.3947699281945041
+FC Power : 1528.271243939671 W
+FC Voltage : 54.194015742541524 V
+PH2 : 2.0992978658300467 atm
+PO2 : 2.0576050536956334 atm
+Power-Thermal : 1524.0967560603287 W
+###########
+I :28.3 A
+
+E : 54.23348338651925 V
+FC Efficiency : 0.3947650518195574
+FC Power : 1533.6717006802244 W
+FC Voltage : 54.193346313788844 V
+PH2 : 2.0990505791136336 atm
+PO2 : 2.0574654357433433 atm
+Power-Thermal : 1529.5202993197756 W
+###########
+I :28.4 A
+
+E : 54.2332860342438 V
+FC Efficiency : 0.394760179636195
+FC Power : 1539.0720398769745 W
+FC Voltage : 54.19267746045685 V
+PH2 : 2.0988032923972204 atm
+PO2 : 2.057325817791053 atm
+Power-Thermal : 1534.9439601230254 W
+###########
+I :28.5 A
+
+E : 54.2330886609192 V
+FC Efficiency : 0.39475531161383876
+FC Power : 1544.4722615829119 W
+FC Voltage : 54.19200917834779 V
+PH2 : 2.0985560056808072 atm
+PO2 : 2.057186199838763 atm
+Power-Thermal : 1540.3677384170878 W
+###########
+I :28.6 A
+
+E : 54.23289126654079 V
+FC Efficiency : 0.3947504477222315
+FC Power : 1549.8723658506071 W
+FC Voltage : 54.19134146330794 V
+PH2 : 2.098308718964394 atm
+PO2 : 2.057046581886473 atm
+Power-Thermal : 1545.7916341493928 W
+###########
+I :28.7 A
+
+E : 54.2326938511039 V
+FC Efficiency : 0.39474558793143266
+FC Power : 1555.272352732217 W
+FC Voltage : 54.19067431122708 V
+PH2 : 2.098061432247981 atm
+PO2 : 2.056906963934183 atm
+Power-Thermal : 1551.2156472677827 W
+###########
+I :28.8 A
+
+E : 54.232496414603894 V
+FC Efficiency : 0.39474073221181394
+FC Power : 1560.6722222794892 W
+FC Voltage : 54.19000771803782 V
+PH2 : 2.0978141455315673 atm
+PO2 : 2.0567673459818923 atm
+Power-Thermal : 1556.6397777205107 W
+###########
+I :28.9 A
+
+E : 54.232298957036065 V
+FC Efficiency : 0.3947358805340541
+FC Power : 1566.071974543762 W
+FC Voltage : 54.18934167971495 V
+PH2 : 2.0975668588151546 atm
+PO2 : 2.056627728029602 atm
+Power-Thermal : 1562.0640254562377 W
+###########
+I :29.0 A
+
+E : 54.23210147839577 V
+FC Efficiency : 0.39473103286913613
+FC Power : 1571.4716095759752 W
+FC Voltage : 54.188676192275004 V
+PH2 : 2.097319572098741 atm
+PO2 : 2.0564881100773125 atm
+Power-Thermal : 1567.4883904240248 W
+###########
+I :29.1 A
+
+E : 54.23190397867833 V
+FC Efficiency : 0.39472618918834185
+FC Power : 1576.871127426669 W
+FC Voltage : 54.18801125177557 V
+PH2 : 2.097072285382328 atm
+PO2 : 2.056348492125022 atm
+Power-Thermal : 1572.9128725733308 W
+###########
+I :29.2 A
+
+E : 54.231706457879085 V
+FC Efficiency : 0.39472134946324844
+FC Power : 1582.2705281459905 W
+FC Voltage : 54.18734685431475 V
+PH2 : 2.0968249986659147 atm
+PO2 : 2.056208874172732 atm
+Power-Thermal : 1578.3374718540092 W
+###########
+I :29.3 A
+
+E : 54.23150891599336 V
+FC Efficiency : 0.39471651366572424
+FC Power : 1587.6698117836975 W
+FC Voltage : 54.186682996030626 V
+PH2 : 2.0965777119495015 atm
+PO2 : 2.0560692562204417 atm
+Power-Thermal : 1583.7621882163025 W
+###########
+I :29.4 A
+
+E : 54.23131135301646 V
+FC Efficiency : 0.3947116817679247
+FC Power : 1593.0689783891607 W
+FC Voltage : 54.18601967310071 V
+PH2 : 2.0963304252330883 atm
+PO2 : 2.0559296382681516 atm
+Power-Thermal : 1589.1870216108389 W
+###########
+I :29.5 A
+
+E : 54.23111376894373 V
+FC Efficiency : 0.3947068537422887
+FC Power : 1598.468028011371 W
+FC Voltage : 54.18535688174139 V
+PH2 : 2.0960831385166747 atm
+PO2 : 2.0557900203158614 atm
+Power-Thermal : 1594.6119719886287 W
+###########
+I :29.6 A
+
+E : 54.23091616377049 V
+FC Efficiency : 0.3947020295615344
+FC Power : 1603.8669606989404 W
+FC Voltage : 54.184694618207445 V
+PH2 : 2.0958358518002616 atm
+PO2 : 2.0556504023635713 atm
+Power-Thermal : 1600.0370393010596 W
+###########
+I :29.7 A
+
+E : 54.23071853749206 V
+FC Efficiency : 0.39469720919865575
+FC Power : 1609.2657765001065 W
+FC Voltage : 54.18403287879147 V
+PH2 : 2.0955885650838484 atm
+PO2 : 2.0555107844112808 atm
+Power-Thermal : 1605.462223499893 W
+###########
+I :29.8 A
+
+E : 54.23052089010375 V
+FC Efficiency : 0.3946923926269187
+FC Power : 1614.6644754627373 W
+FC Voltage : 54.1833716598234 V
+PH2 : 2.0953412783674352 atm
+PO2 : 2.0553711664589907 atm
+Power-Thermal : 1610.8875245372626 W
+###########
+I :29.9 A
+
+E : 54.23032322160089 V
+FC Efficiency : 0.3946875798198574
+FC Power : 1620.063057634334 W
+FC Voltage : 54.18271095767003 V
+PH2 : 2.095093991651022 atm
+PO2 : 2.055231548506701 atm
+Power-Thermal : 1616.3129423656658 W
+###########
+I :30.0 A
+
+E : 54.230125531978786 V
+FC Efficiency : 0.39468277075127095
+FC Power : 1625.4615230620343 W
+FC Voltage : 54.18205076873448 V
+PH2 : 2.094846704934609 atm
+PO2 : 2.0550919305544104 atm
+Power-Thermal : 1621.7384769379655 W
+###########
+I :30.1 A
+
+E : 54.22992782123276 V
+FC Efficiency : 0.3946779653952194
+FC Power : 1630.8598717926172 W
+FC Voltage : 54.18139108945572 V
+PH2 : 2.0945994182181953 atm
+PO2 : 2.0549523126021203 atm
+Power-Thermal : 1627.1641282073826 W
+###########
+I :30.2 A
+
+E : 54.22973008935812 V
+FC Efficiency : 0.3946731637260208
+FC Power : 1636.258103872506 W
+FC Voltage : 54.18073191630814 V
+PH2 : 2.094352131501782 atm
+PO2 : 2.05481269464983 atm
+Power-Thermal : 1632.589896127494 W
+###########
+I :30.3 A
+
+E : 54.22953233635018 V
+FC Efficiency : 0.39466836571824754
+FC Power : 1641.656219347771 W
+FC Voltage : 54.18007324580102 V
+PH2 : 2.094104844785369 atm
+PO2 : 2.05467307669754 atm
+Power-Thermal : 1638.015780652229 W
+###########
+I :30.4 A
+
+E : 54.229334562204244 V
+FC Efficiency : 0.3946635713467227
+FC Power : 1647.0542182641339 W
+FC Voltage : 54.17941507447809 V
+PH2 : 2.093857558068956 atm
+PO2 : 2.05453345874525 atm
+Power-Thermal : 1643.441781735866 W
+###########
+I :30.5 A
+
+E : 54.22913676691563 V
+FC Efficiency : 0.3946587805865174
+FC Power : 1652.4521006669718 W
+FC Voltage : 54.17875739891711 V
+PH2 : 2.0936102713525426 atm
+PO2 : 2.05439384079296 atm
+Power-Thermal : 1648.8678993330282 W
+###########
+I :30.6 A
+
+E : 54.22893895047964 V
+FC Efficiency : 0.3946539934129472
+FC Power : 1657.8498666013195 W
+FC Voltage : 54.178100215729394 V
+PH2 : 2.0933629846361295 atm
+PO2 : 2.0542542228406693 atm
+Power-Thermal : 1654.2941333986805 W
+###########
+I :30.7 A
+
+E : 54.22874111289157 V
+FC Efficiency : 0.3946492098015687
+FC Power : 1663.2475161118718 W
+FC Voltage : 54.17744352155935 V
+PH2 : 2.093115697919716 atm
+PO2 : 2.0541146048883796 atm
+Power-Thermal : 1659.7204838881278 W
+###########
+I :30.8 A
+
+E : 54.22854325414674 V
+FC Efficiency : 0.3946444297281768
+FC Power : 1668.6450492429908 W
+FC Voltage : 54.17678731308411 V
+PH2 : 2.092868411203303 atm
+PO2 : 2.0539749869360895 atm
+Power-Thermal : 1665.146950757009 W
+###########
+I :30.9 A
+
+E : 54.22834537424044 V
+FC Efficiency : 0.39463965316880134
+FC Power : 1674.0424660387032 W
+FC Voltage : 54.17613158701305 V
+PH2 : 2.0926211244868895 atm
+PO2 : 2.053835368983799 atm
+Power-Thermal : 1670.5735339612963 W
+###########
+I :31.0 A
+
+E : 54.228147473167965 V
+FC Efficiency : 0.39463488009970427
+FC Power : 1679.4397665427093 W
+FC Voltage : 54.1754763400874 V
+PH2 : 2.0923738377704764 atm
+PO2 : 2.053695751031509 atm
+Power-Thermal : 1676.0002334572905 W
+###########
+I :31.1 A
+
+E : 54.22794955092463 V
+FC Efficiency : 0.3946301104973764
+FC Power : 1684.836950798383 W
+FC Voltage : 54.17482156907984 V
+PH2 : 2.092126551054063 atm
+PO2 : 2.053556133079219 atm
+Power-Thermal : 1681.427049201617 W
+###########
+I :31.2 A
+
+E : 54.227751607505716 V
+FC Efficiency : 0.39462534433853497
+FC Power : 1690.2340188487753 W
+FC Voltage : 54.17416727079408 V
+PH2 : 2.09187926433765 atm
+PO2 : 2.0534165151269286 atm
+Power-Thermal : 1686.8539811512246 W
+###########
+I :31.3 A
+
+E : 54.227553642906535 V
+FC Efficiency : 0.3946205816001198
+FC Power : 1695.6309707366172 W
+FC Voltage : 54.17351344206445 V
+PH2 : 2.091631977621237 atm
+PO2 : 2.0532768971746385 atm
+Power-Thermal : 1692.2810292633826 W
+###########
+I :31.4 A
+
+E : 54.22735565712236 V
+FC Efficiency : 0.3946158222592915
+FC Power : 1701.0278065043237 W
+FC Voltage : 54.17286007975554 V
+PH2 : 2.0913846909048237 atm
+PO2 : 2.0531372792223483 atm
+Power-Thermal : 1697.708193495676 W
+###########
+I :31.5 A
+
+E : 54.22715765014849 V
+FC Efficiency : 0.3946110662934281
+FC Power : 1706.424526193997 W
+FC Voltage : 54.17220718076181 V
+PH2 : 2.09113740418841 atm
+PO2 : 2.0529976612700582 atm
+Power-Thermal : 1703.135473806003 W
+###########
+I :31.6 A
+
+E : 54.226959621980235 V
+FC Efficiency : 0.3946063136801224
+FC Power : 1711.8211298474278 W
+FC Voltage : 54.1715547420072 V
+PH2 : 2.090890117471997 atm
+PO2 : 2.052858043317768 atm
+Power-Thermal : 1708.5628701525723 W
+###########
+I :31.7 A
+
+E : 54.22676157261285 V
+FC Efficiency : 0.3946015643971791
+FC Power : 1717.2176175060983 W
+FC Voltage : 54.17090276044475 V
+PH2 : 2.0906428307555838 atm
+PO2 : 2.052718425365478 atm
+Power-Thermal : 1713.9903824939013 W
+###########
+I :31.8 A
+
+E : 54.22656350204166 V
+FC Efficiency : 0.3945968184226127
+FC Power : 1722.6139892111894 W
+FC Voltage : 54.17025123305627 V
+PH2 : 2.0903955440391706 atm
+PO2 : 2.0525788074131874 atm
+Power-Thermal : 1719.4180107888105 W
+###########
+I :31.9 A
+
+E : 54.22636541026192 V
+FC Efficiency : 0.39459207573464383
+FC Power : 1728.0102450035758 W
+FC Voltage : 54.16960015685191 V
+PH2 : 2.0901482573227574 atm
+PO2 : 2.0524391894608973 atm
+Power-Thermal : 1724.845754996424 W
+###########
+I :32.0 A
+
+E : 54.22616729726892 V
+FC Efficiency : 0.39458733631169773
+FC Power : 1733.4063849238357 W
+FC Voltage : 54.16894952886987 V
+PH2 : 2.089900970606344 atm
+PO2 : 2.0522995715086076 atm
+Power-Thermal : 1730.273615076164 W
+###########
+I :32.1 A
+
+E : 54.225969163057954 V
+FC Efficiency : 0.39458260013240126
+FC Power : 1738.8024090122512 W
+FC Voltage : 54.16829934617605 V
+PH2 : 2.0896536838899307 atm
+PO2 : 2.052159953556317 atm
+Power-Thermal : 1735.7015909877487 W
+###########
+I :32.2 A
+
+E : 54.22577100762429 V
+FC Efficiency : 0.39457786717558024
+FC Power : 1744.1983173088097 W
+FC Voltage : 54.16764960586365 V
+PH2 : 2.0894063971735175 atm
+PO2 : 2.052020335604027 atm
+Power-Thermal : 1741.1296826911905 W
+###########
+I :32.3 A
+
+E : 54.22557283096321 V
+FC Efficiency : 0.3945731374202569
+FC Power : 1749.5941098532076 W
+FC Voltage : 54.16700030505287 V
+PH2 : 2.0891591104571043 atm
+PO2 : 2.051880717651737 atm
+Power-Thermal : 1746.5578901467918 W
+###########
+I :32.4 A
+
+E : 54.22537463307 V
+FC Efficiency : 0.3945684108456484
+FC Power : 1754.9897866848557 W
+FC Voltage : 54.166351440890615 V
+PH2 : 2.088911823740691 atm
+PO2 : 2.0517410996994467 atm
+Power-Thermal : 1751.986213315144 W
+###########
+I :32.5 A
+
+E : 54.22517641393992 V
+FC Efficiency : 0.39456368743116293
+FC Power : 1760.3853478428766 W
+FC Voltage : 54.16570301055005 V
+PH2 : 2.088664537024278 atm
+PO2 : 2.0516014817471566 atm
+Power-Thermal : 1757.4146521571233 W
+###########
+I :32.6 A
+
+E : 54.22497817356826 V
+FC Efficiency : 0.3945589671563985
+FC Power : 1765.7807933661106 W
+FC Voltage : 54.165055011230386 V
+PH2 : 2.0884172503078644 atm
+PO2 : 2.0514618637948665 atm
+Power-Thermal : 1762.8432066338894 W
+###########
+I :32.7 A
+
+E : 54.22477991195029 V
+FC Efficiency : 0.39455425000114036
+FC Power : 1771.1761232931194 W
+FC Voltage : 54.16440744015655 V
+PH2 : 2.0881699635914517 atm
+PO2 : 2.051322245842576 atm
+Power-Thermal : 1768.2718767068807 W
+###########
+I :32.8 A
+
+E : 54.22458162908127 V
+FC Efficiency : 0.39454953594535824
+FC Power : 1776.5713376621839 W
+FC Voltage : 54.16376029457878 V
+PH2 : 2.087922676875038 atm
+PO2 : 2.0511826278902863 atm
+Power-Thermal : 1773.7006623378156 W
+###########
+I :32.9 A
+
+E : 54.224383324956484 V
+FC Efficiency : 0.3945448249692048
+FC Power : 1781.966436511313 W
+FC Voltage : 54.163113571772435 V
+PH2 : 2.087675390158625 atm
+PO2 : 2.051043009937996 atm
+Power-Thermal : 1779.1295634886867 W
+###########
+I :33.0 A
+
+E : 54.22418499957119 V
+FC Efficiency : 0.39454011705301306
+FC Power : 1787.361419878242 W
+FC Voltage : 54.162467269037634 V
+PH2 : 2.0874281034422117 atm
+PO2 : 2.0509033919857056 atm
+Power-Thermal : 1784.5585801217578 W
+###########
+I :33.1 A
+
+E : 54.22398665292066 V
+FC Efficiency : 0.394535412177294
+FC Power : 1792.7562878004342 W
+FC Voltage : 54.161821383698914 V
+PH2 : 2.0871808167257986 atm
+PO2 : 2.0507637740334155 atm
+Power-Thermal : 1789.9877121995657 W
+###########
+I :33.2 A
+
+E : 54.223788285000154 V
+FC Efficiency : 0.39453071032273473
+FC Power : 1798.1510403150871 W
+FC Voltage : 54.161175913105026 V
+PH2 : 2.0869335300093854 atm
+PO2 : 2.0506241560811254 atm
+Power-Thermal : 1795.416959684913 W
+###########
+I :33.3 A
+
+E : 54.223589895804935 V
+FC Efficiency : 0.3945260114701966
+FC Power : 1803.5456774591319 W
+FC Voltage : 54.16053085462859 V
+PH2 : 2.086686243292972 atm
+PO2 : 2.0504845381288352 atm
+Power-Thermal : 1800.8463225408677 W
+###########
+I :33.4 A
+
+E : 54.22339148533026 V
+FC Efficiency : 0.39452131560071224
+FC Power : 1808.940199269237 W
+FC Voltage : 54.15988620566578 V
+PH2 : 2.0864389565765586 atm
+PO2 : 2.050344920176545 atm
+Power-Thermal : 1806.2758007307627 W
+###########
+I :33.5 A
+
+E : 54.22319305357141 V
+FC Efficiency : 0.39451662269548465
+FC Power : 1814.3346057818105 W
+FC Voltage : 54.159241963636134 V
+PH2 : 2.0861916698601455 atm
+PO2 : 2.050205302224255 atm
+Power-Thermal : 1811.7053942181894 W
+###########
+I :33.6 A
+
+E : 54.22299460052361 V
+FC Efficiency : 0.3945119327358842
+FC Power : 1819.7288970330017 W
+FC Voltage : 54.15859812598219 V
+PH2 : 2.0859443831437323 atm
+PO2 : 2.050065684271965 atm
+Power-Thermal : 1817.1351029669984 W
+###########
+I :33.7 A
+
+E : 54.22279612618214 V
+FC Efficiency : 0.3945072457034471
+FC Power : 1825.1230730587029 W
+FC Voltage : 54.15795469016922 V
+PH2 : 2.085697096427319 atm
+PO2 : 2.0499260663196748 atm
+Power-Thermal : 1822.5649269412972 W
+###########
+I :33.8 A
+
+E : 54.222597630542246 V
+FC Efficiency : 0.39450256157987346
+FC Power : 1830.517133894554 W
+FC Voltage : 54.157311653685035 V
+PH2 : 2.085449809710906 atm
+PO2 : 2.0497864483673847 atm
+Power-Thermal : 1827.9948661054455 W
+###########
+I :33.9 A
+
+E : 54.222399113599195 V
+FC Efficiency : 0.39449788034702543
+FC Power : 1835.911079575944 W
+FC Voltage : 54.15666901403965 V
+PH2 : 2.0852025229944924 atm
+PO2 : 2.049646830415094 atm
+Power-Thermal : 1833.4249204240557 W
+###########
+I :34.0 A
+
+E : 54.22220057534821 V
+FC Efficiency : 0.39449320198692445
+FC Power : 1841.3049101380095 W
+FC Voltage : 54.15602676876499 V
+PH2 : 2.084955236278079 atm
+PO2 : 2.049507212462804 atm
+Power-Thermal : 1838.85508986199 W
+###########
+I :34.1 A
+
+E : 54.22200201578457 V
+FC Efficiency : 0.39448852648175076
+FC Power : 1846.698625615643 W
+FC Voltage : 54.15538491541475 V
+PH2 : 2.084707949561666 atm
+PO2 : 2.0493675945105143 atm
+Power-Thermal : 1844.2853743843568 W
+###########
+I :34.2 A
+
+E : 54.22180343490351 V
+FC Efficiency : 0.39448385381384066
+FC Power : 1852.0922260434904 W
+FC Voltage : 54.154743451564045 V
+PH2 : 2.084460662845253 atm
+PO2 : 2.0492279765582238 atm
+Power-Thermal : 1849.7157739565096 W
+###########
+I :34.3 A
+
+E : 54.22160483270028 V
+FC Efficiency : 0.39447918396568454
+FC Power : 1857.4857114559547 W
+FC Voltage : 54.15410237480918 V
+PH2 : 2.0842133761288397 atm
+PO2 : 2.0490883586059336 atm
+Power-Thermal : 1855.1462885440449 W
+###########
+I :34.4 A
+
+E : 54.22140620917012 V
+FC Efficiency : 0.39447451691992574
+FC Power : 1862.8790818871987 W
+FC Voltage : 54.15346168276741 V
+PH2 : 2.0839660894124266 atm
+PO2 : 2.0489487406536435 atm
+Power-Thermal : 1860.576918112801 W
+###########
+I :34.5 A
+
+E : 54.22120756430827 V
+FC Efficiency : 0.3944698526593583
+FC Power : 1868.2723373711463 W
+FC Voltage : 54.152821373076705 V
+PH2 : 2.083718802696013 atm
+PO2 : 2.0488091227013534 atm
+Power-Thermal : 1866.0076626288535 W
+###########
+I :34.6 A
+
+E : 54.22100889810998 V
+FC Efficiency : 0.3944651911669252
+FC Power : 1873.665477941484 W
+FC Voltage : 54.152181443395484 V
+PH2 : 2.0834715159796002 atm
+PO2 : 2.0486695047490633 atm
+Power-Thermal : 1871.4385220585161 W
+###########
+I :34.7 A
+
+E : 54.22081021057049 V
+FC Efficiency : 0.3944605324257171
+FC Power : 1879.058503631665 W
+FC Voltage : 54.151541891402445 V
+PH2 : 2.0832242292631866 atm
+PO2 : 2.048529886796773 atm
+Power-Thermal : 1876.8694963683351 W
+###########
+I :34.8 A
+
+E : 54.22061150168504 V
+FC Efficiency : 0.39445587641897023
+FC Power : 1884.4514144749087 W
+FC Voltage : 54.15090271479623 V
+PH2 : 2.0829769425467735 atm
+PO2 : 2.0483902688444826 atm
+Power-Thermal : 1882.3005855250908 W
+###########
+I :34.9 A
+
+E : 54.22041277144886 V
+FC Efficiency : 0.3944512231300646
+FC Power : 1889.8442105042047 W
+FC Voltage : 54.15026391129527 V
+PH2 : 2.0827296558303603 atm
+PO2 : 2.048250650892193 atm
+Power-Thermal : 1887.7317894957948 W
+###########
+I :35.0 A
+
+E : 54.2202140198572 V
+FC Efficiency : 0.39444657254252286
+FC Power : 1895.2368917523138 W
+FC Voltage : 54.14962547863754 V
+PH2 : 2.0824823691139467 atm
+PO2 : 2.048111032939903 atm
+Power-Thermal : 1893.163108247686 W
+###########
+I :35.1 A
+
+E : 54.22001524690527 V
+FC Efficiency : 0.3944419246400082
+FC Power : 1900.6294582517694 W
+FC Voltage : 54.148987414580326 V
+PH2 : 2.082235082397534 atm
+PO2 : 2.0479714149876123 atm
+Power-Thermal : 1898.5945417482305 W
+###########
+I :35.2 A
+
+E : 54.21981645258832 V
+FC Efficiency : 0.3944372794063229
+FC Power : 1906.0219100348806 W
+FC Voltage : 54.148349716900015 V
+PH2 : 2.0819877956811204 atm
+PO2 : 2.047831797035322 atm
+Power-Thermal : 1904.0260899651194 W
+###########
+I :35.3 A
+
+E : 54.21961763690157 V
+FC Efficiency : 0.39443263682540697
+FC Power : 1911.4142471337332 W
+FC Voltage : 54.14771238339188 V
+PH2 : 2.081740508964707 atm
+PO2 : 2.047692179083032 atm
+Power-Thermal : 1909.4577528662664 W
+###########
+I :35.4 A
+
+E : 54.219418799840255 V
+FC Efficiency : 0.3944279968813365
+FC Power : 1916.8064695801934 W
+FC Voltage : 54.14707541186987 V
+PH2 : 2.081493222248294 atm
+PO2 : 2.047552561130742 atm
+Power-Thermal : 1914.8895304198063 W
+###########
+I :35.5 A
+
+E : 54.2192199413996 V
+FC Efficiency : 0.39442335955832153
+FC Power : 1922.1985774059065 W
+FC Voltage : 54.14643880016638 V
+PH2 : 2.081245935531881 atm
+PO2 : 2.047412943178452 atm
+Power-Thermal : 1920.3214225940933 W
+###########
+I :35.6 A
+
+E : 54.219021061574836 V
+FC Efficiency : 0.39441872484070545
+FC Power : 1927.590570642301 W
+FC Voltage : 54.145802546132046 V
+PH2 : 2.0809986488154677 atm
+PO2 : 2.0472733252261617 atm
+Power-Thermal : 1925.7534293576991 W
+###########
+I :35.7 A
+
+E : 54.218822160361185 V
+FC Efficiency : 0.3944140927129632
+FC Power : 1932.9824493205908 W
+FC Voltage : 54.14516664763559 V
+PH2 : 2.0807513620990545 atm
+PO2 : 2.047133707273871 atm
+Power-Thermal : 1931.1855506794093 W
+###########
+I :35.8 A
+
+E : 54.21862323775386 V
+FC Efficiency : 0.3944094631596992
+FC Power : 1938.3742134717736 W
+FC Voltage : 54.14453110256351 V
+PH2 : 2.080504075382641 atm
+PO2 : 2.0469940893215814 atm
+Power-Thermal : 1936.617786528226 W
+###########
+I :35.9 A
+
+E : 54.218424293748086 V
+FC Efficiency : 0.3944048361656469
+FC Power : 1943.7658631266384 W
+FC Voltage : 54.143895908820014 V
+PH2 : 2.0802567886662278 atm
+PO2 : 2.0468544713692913 atm
+Power-Thermal : 1942.0501368733612 W
+###########
+I :36.0 A
+
+E : 54.218225328339074 V
+FC Efficiency : 0.3944002117156666
+FC Power : 1949.1573983157618 W
+FC Voltage : 54.143261064326715 V
+PH2 : 2.0800095019498146 atm
+PO2 : 2.0467148534170008 atm
+Power-Thermal : 1947.482601684238 W
+###########
+I :36.1 A
+
+E : 54.21802634152206 V
+FC Efficiency : 0.39439558979474443
+FC Power : 1954.548819069513 W
+FC Voltage : 54.14262656702252 V
+PH2 : 2.0797622152334014 atm
+PO2 : 2.0465752354647107 atm
+Power-Thermal : 1952.915180930487 W
+###########
+I :36.2 A
+
+E : 54.217827333292256 V
+FC Efficiency : 0.3943909703879906
+FC Power : 1959.9401254180534 W
+FC Voltage : 54.14199241486335 V
+PH2 : 2.0795149285169883 atm
+PO2 : 2.046435617512421 atm
+Power-Thermal : 1958.3478745819466 W
+###########
+I :36.3 A
+
+E : 54.21762830364486 V
+FC Efficiency : 0.39438635348063844
+FC Power : 1965.33131739134 W
+FC Voltage : 54.14135860582204 V
+PH2 : 2.079267641800575 atm
+PO2 : 2.0462959995601304 atm
+Power-Thermal : 1963.7806826086596 W
+###########
+I :36.4 A
+
+E : 54.217429252575094 V
+FC Efficiency : 0.39438173905804275
+FC Power : 1970.722395019127 W
+FC Voltage : 54.140725137888104 V
+PH2 : 2.0790203550841615 atm
+PO2 : 2.0461563816078403 atm
+Power-Thermal : 1969.2136049808728 W
+###########
+I :36.5 A
+
+E : 54.217230180078175 V
+FC Efficiency : 0.39437712710567857
+FC Power : 1976.1133583309659 W
+FC Voltage : 54.14009200906756 V
+PH2 : 2.0787730683677488 atm
+PO2 : 2.04601676365555 atm
+Power-Thermal : 1974.646641669034 W
+###########
+I :36.6 A
+
+E : 54.217031086149305 V
+FC Efficiency : 0.39437251760914
+FC Power : 1981.5042073562083 W
+FC Voltage : 54.139459217382736 V
+PH2 : 2.078525781651335 atm
+PO2 : 2.04587714570326 atm
+Power-Thermal : 1980.0797926437917 W
+###########
+I :36.7 A
+
+E : 54.21683197078368 V
+FC Efficiency : 0.39436791055413845
+FC Power : 1986.8949421240072 W
+FC Voltage : 54.13882676087213 V
+PH2 : 2.078278494934922 atm
+PO2 : 2.04573752775097 atm
+Power-Thermal : 1985.513057875993 W
+###########
+I :36.8 A
+
+E : 54.21663283397654 V
+FC Efficiency : 0.39436330592650226
+FC Power : 1992.2855626633204 W
+FC Voltage : 54.13819463759023 V
+PH2 : 2.078031208218509 atm
+PO2 : 2.04559790979868 atm
+Power-Thermal : 1990.946437336679 W
+###########
+I :36.9 A
+
+E : 54.216433675723046 V
+FC Efficiency : 0.394358703712174
+FC Power : 1997.6760690029075 W
+FC Voltage : 54.13756284560725 V
+PH2 : 2.0777839215020957 atm
+PO2 : 2.0454582918463893 atm
+Power-Thermal : 1996.3799309970923 W
+###########
+I :37.0 A
+
+E : 54.21623449601843 V
+FC Efficiency : 0.3943541038972109
+FC Power : 2003.0664611713369 W
+FC Voltage : 54.136931383009106 V
+PH2 : 2.0775366347856825 atm
+PO2 : 2.045318673894099 atm
+Power-Thermal : 2001.8135388286628 W
+###########
+I :37.1 A
+
+E : 54.21603529485788 V
+FC Efficiency : 0.3943495064677822
+FC Power : 2008.4567391969842 W
+FC Voltage : 54.13630024789715 V
+PH2 : 2.077289348069269 atm
+PO2 : 2.0451790559418095 atm
+Power-Thermal : 2007.2472608030157 W
+###########
+I :37.2 A
+
+E : 54.215836072236606 V
+FC Efficiency : 0.3943449114101689
+FC Power : 2013.8469031080335 W
+FC Voltage : 54.13566943838799 V
+PH2 : 2.0770420613528557 atm
+PO2 : 2.045039437989519 atm
+Power-Thermal : 2012.6810968919667 W
+###########
+I :37.3 A
+
+E : 54.21563682814979 V
+FC Efficiency : 0.3943403187107621
+FC Power : 2019.2369529324803 W
+FC Voltage : 54.13503895261342 V
+PH2 : 2.0767947746364426 atm
+PO2 : 2.044899820037229 atm
+Power-Thermal : 2018.115047067519 W
+###########
+I :37.4 A
+
+E : 54.21543756259264 V
+FC Efficiency : 0.3943357283560618
+FC Power : 2024.626888698134 W
+FC Voltage : 54.134408788720165 V
+PH2 : 2.0765474879200294 atm
+PO2 : 2.0447602020849387 atm
+Power-Thermal : 2023.5491113018657 W
+###########
+I :37.5 A
+
+E : 54.215238275560345 V
+FC Efficiency : 0.3943311403326759
+FC Power : 2030.0167104326158 W
+FC Voltage : 54.13377894486975 V
+PH2 : 2.0763002012036162 atm
+PO2 : 2.0446205841326486 atm
+Power-Thermal : 2028.983289567384 W
+###########
+I :37.6 A
+
+E : 54.2150389670481 V
+FC Efficiency : 0.3943265546273192
+FC Power : 2035.406418163363 W
+FC Voltage : 54.13314941923838 V
+PH2 : 2.076052914487203 atm
+PO2 : 2.0444809661803585 atm
+Power-Thermal : 2034.4175818366368 W
+###########
+I :37.7 A
+
+E : 54.21483963705109 V
+FC Efficiency : 0.39432197122681173
+FC Power : 2040.7960119176305 W
+FC Voltage : 54.13252021001672 V
+PH2 : 2.0758056277707895 atm
+PO2 : 2.0443413482280683 atm
+Power-Thermal : 2039.8519880823696 W
+###########
+I :37.8 A
+
+E : 54.21464028556451 V
+FC Efficiency : 0.3943173901180782
+FC Power : 2046.1854917224896 W
+FC Voltage : 54.13189131540978 V
+PH2 : 2.0755583410543763 atm
+PO2 : 2.044201730275778 atm
+Power-Thermal : 2045.28650827751 W
+###########
+I :37.9 A
+
+E : 54.214440912583555 V
+FC Efficiency : 0.3943128112881467
+FC Power : 2051.574857604834 W
+FC Voltage : 54.13126273363678 V
+PH2 : 2.075311054337963 atm
+PO2 : 2.044062112323488 atm
+Power-Thermal : 2050.7211423951658 W
+###########
+I :38.0 A
+
+E : 54.21424151810339 V
+FC Efficiency : 0.39430823472414744
+FC Power : 2056.964109591376 W
+FC Voltage : 54.130634462930956 V
+PH2 : 2.07506376762155 atm
+PO2 : 2.043922494371198 atm
+Power-Thermal : 2056.1558904086232 W
+###########
+I :38.1 A
+
+E : 54.21404210211922 V
+FC Efficiency : 0.3943036604133118
+FC Power : 2062.353247708653 W
+FC Voltage : 54.13000650153944 V
+PH2 : 2.074816480905137 atm
+PO2 : 2.0437828764189074 atm
+Power-Thermal : 2061.590752291347 W
+###########
+I :38.2 A
+
+E : 54.21384266462621 V
+FC Efficiency : 0.39429908834297117
+FC Power : 2067.742271983022 W
+FC Voltage : 54.12937884772309 V
+PH2 : 2.0745691941887237 atm
+PO2 : 2.0436432584666173 atm
+Power-Thermal : 2067.025728016978 W
+###########
+I :38.3 A
+
+E : 54.21364320561956 V
+FC Efficiency : 0.39429451850055663
+FC Power : 2073.1311824406707 W
+FC Voltage : 54.12875149975642 V
+PH2 : 2.07432190747231 atm
+PO2 : 2.0435036405143276 atm
+Power-Thermal : 2072.460817559329 W
+###########
+I :38.4 A
+
+E : 54.21344372509443 V
+FC Efficiency : 0.39428995087359653
+FC Power : 2078.5199791076093 W
+FC Voltage : 54.12812445592733 V
+PH2 : 2.0740746207558973 atm
+PO2 : 2.043364022562037 atm
+Power-Thermal : 2077.8960208923904 W
+###########
+I :38.5 A
+
+E : 54.21324422304602 V
+FC Efficiency : 0.39428538544971664
+FC Power : 2083.9086620096787 W
+FC Voltage : 54.12749771453711 V
+PH2 : 2.0738273340394837 atm
+PO2 : 2.043224404609747 atm
+Power-Thermal : 2083.331337990321 W
+###########
+I :38.6 A
+
+E : 54.21304469946947 V
+FC Efficiency : 0.3942808222166387
+FC Power : 2089.297231172546 W
+FC Voltage : 54.12687127390016 V
+PH2 : 2.0735800473230706 atm
+PO2 : 2.043084786657457 atm
+Power-Thermal : 2088.7667688274537 W
+###########
+I :38.7 A
+
+E : 54.21284515436 V
+FC Efficiency : 0.39427626116217934
+FC Power : 2094.685686621712 W
+FC Voltage : 54.12624513234398 V
+PH2 : 2.0733327606066574 atm
+PO2 : 2.0429451687051667 atm
+Power-Thermal : 2094.2023133782877 W
+###########
+I :38.8 A
+
+E : 54.21264558771274 V
+FC Efficiency : 0.39427170227424935
+FC Power : 2100.074028382507 W
+FC Voltage : 54.12561928820895 V
+PH2 : 2.073085473890244 atm
+PO2 : 2.0428055507528766 atm
+Power-Thermal : 2099.6379716174924 W
+###########
+I :38.9 A
+
+E : 54.21244599952289 V
+FC Efficiency : 0.3942671455408527
+FC Power : 2105.462256480097 W
+FC Voltage : 54.12499373984826 V
+PH2 : 2.072838187173831 atm
+PO2 : 2.0426659328005865 atm
+Power-Thermal : 2105.0737435199026 W
+###########
+I :39.0 A
+
+E : 54.21224638978561 V
+FC Efficiency : 0.39426259095008515
+FC Power : 2110.85037093948 W
+FC Voltage : 54.12436848562769 V
+PH2 : 2.0725909004574175 atm
+PO2 : 2.042526314848296 atm
+Power-Thermal : 2110.5096290605197 W
+###########
+I :39.1 A
+
+E : 54.21204675849606 V
+FC Efficiency : 0.3942580384901338
+FC Power : 2116.23837178549 W
+FC Voltage : 54.12374352392557 V
+PH2 : 2.0723436137410043 atm
+PO2 : 2.042386696896006 atm
+Power-Thermal : 2115.94562821451 W
+###########
+I :39.2 A
+
+E : 54.21184710564941 V
+FC Efficiency : 0.3942534881492762
+FC Power : 2121.6262590427996 W
+FC Voltage : 54.12311885313264 V
+PH2 : 2.072096327024591 atm
+PO2 : 2.042247078943716 atm
+Power-Thermal : 2121.3817409572007 W
+###########
+I :39.3 A
+
+E : 54.211647431240834 V
+FC Efficiency : 0.3942489399158789
+FC Power : 2127.0140327359177 W
+FC Voltage : 54.122494471651855 V
+PH2 : 2.071849040308178 atm
+PO2 : 2.0421074609914256 atm
+Power-Thermal : 2126.8179672640817 W
+###########
+I :39.4 A
+
+E : 54.21144773526549 V
+FC Efficiency : 0.394244393778397
+FC Power : 2132.4016928891947 W
+FC Voltage : 54.12187037789834 V
+PH2 : 2.071601753591765 atm
+PO2 : 2.0419678430391355 atm
+Power-Thermal : 2132.2543071108053 W
+###########
+I :39.5 A
+
+E : 54.211248017718525 V
+FC Efficiency : 0.3942398497253731
+FC Power : 2137.789239526819 W
+FC Voltage : 54.12124657029922 V
+PH2 : 2.0713544668753516 atm
+PO2 : 2.0418282250868454 atm
+Power-Thermal : 2137.6907604731805 W
+###########
+I :39.6 A
+
+E : 54.21104827859512 V
+FC Efficiency : 0.3942353077454364
+FC Power : 2143.1766726728233 W
+FC Voltage : 54.12062304729351 V
+PH2 : 2.071107180158938 atm
+PO2 : 2.0416886071345552 atm
+Power-Thermal : 2143.1273273271768 W
+###########
+I :39.7 A
+
+E : 54.21084851789041 V
+FC Efficiency : 0.3942307678273019
+FC Power : 2148.5639923510807 W
+FC Voltage : 54.119999807332 V
+PH2 : 2.070859893442525 atm
+PO2 : 2.041548989182265 atm
+Power-Thermal : 2148.5640076489194 W
+###########
+I :39.8 A
+
+E : 54.210648735599584 V
+FC Efficiency : 0.3942262299597696
+FC Power : 2153.951198585311 W
+FC Voltage : 54.11937684887717 V
+PH2 : 2.0706126067261117 atm
+PO2 : 2.041409371229975 atm
+Power-Thermal : 2154.0008014146883 W
+###########
+I :39.9 A
+
+E : 54.210448931717764 V
+FC Efficiency : 0.3942216941317231
+FC Power : 2159.3382913990777 W
+FC Voltage : 54.11875417040295 V
+PH2 : 2.0703653200096985 atm
+PO2 : 2.0412697532776845 atm
+Power-Thermal : 2159.437708600922 W
+###########
+I :40.0 A
+
+E : 54.210249106240106 V
+FC Efficiency : 0.3942171603321298
+FC Power : 2164.725270815791 W
+FC Voltage : 54.118131770394776 V
+PH2 : 2.0701180332932854 atm
+PO2 : 2.041130135325395 atm
+Power-Thermal : 2164.8747291842087 W
+###########
+I :40.1 A
+
+E : 54.21004925916177 V
+FC Efficiency : 0.394212628550039
+FC Power : 2170.112136858709 W
+FC Voltage : 54.11750964734936 V
+PH2 : 2.069870746576872 atm
+PO2 : 2.0409905173731047 atm
+Power-Thermal : 2170.311863141291 W
+###########
+I :40.2 A
+
+E : 54.209849390477906 V
+FC Efficiency : 0.3942080987745818
+FC Power : 2175.4988895509387 W
+FC Voltage : 54.116887799774595 V
+PH2 : 2.0696234598604586 atm
+PO2 : 2.040850899420814 atm
+Power-Thermal : 2175.7491104490614 W
+###########
+I :40.3 A
+
+E : 54.209649500183666 V
+FC Efficiency : 0.39420357099497005
+FC Power : 2180.885528915436 W
+FC Voltage : 54.11626622618949 V
+PH2 : 2.069376173144046 atm
+PO2 : 2.040711281468524 atm
+Power-Thermal : 2181.1864710845634 W
+###########
+I :40.4 A
+
+E : 54.20944958827418 V
+FC Efficiency : 0.3941990452004953
+FC Power : 2186.2720549750093 W
+FC Voltage : 54.115644925123995 V
+PH2 : 2.0691288864276323 atm
+PO2 : 2.0405716635162343 atm
+Power-Thermal : 2186.6239450249905 W
+###########
+I :40.5 A
+
+E : 54.20924965474461 V
+FC Efficiency : 0.39419452138052846
+FC Power : 2191.6584677523174 W
+FC Voltage : 54.115023895118945 V
+PH2 : 2.068881599711219 atm
+PO2 : 2.0404320455639438 atm
+Power-Thermal : 2192.0615322476824 W
+###########
+I :40.6 A
+
+E : 54.20904969959008 V
+FC Efficiency : 0.3941899995245186
+FC Power : 2197.0447672698724 W
+FC Voltage : 54.11440313472592 V
+PH2 : 2.068634312994806 atm
+PO2 : 2.0402924276116536 atm
+Power-Thermal : 2197.4992327301275 W
+###########
+I :40.7 A
+
+E : 54.20884972280575 V
+FC Efficiency : 0.39418547962199285
+FC Power : 2202.4309535500424 W
+FC Voltage : 54.11378264250718 V
+PH2 : 2.0683870262783923 atm
+PO2 : 2.0401528096593635 atm
+Power-Thermal : 2202.9370464499575 W
+###########
+I :40.8 A
+
+E : 54.208649724386746 V
+FC Efficiency : 0.39418096166255445
+FC Power : 2207.8170266150473 W
+FC Voltage : 54.113162417035475 V
+PH2 : 2.0681397395619796 atm
+PO2 : 2.040013191707073 atm
+Power-Thermal : 2208.374973384952 W
+###########
+I :40.9 A
+
+E : 54.2084497043282 V
+FC Efficiency : 0.3941764456358833
+FC Power : 2213.202986486967 W
+FC Voltage : 54.112542456894055 V
+PH2 : 2.067892452845566 atm
+PO2 : 2.0398735737547833 atm
+Power-Thermal : 2213.8130135130327 W
+###########
+I :41.0 A
+
+E : 54.20824966262527 V
+FC Efficiency : 0.3941719315317344
+FC Power : 2218.5888331877363 W
+FC Voltage : 54.1119227606765 V
+PH2 : 2.067645166129153 atm
+PO2 : 2.039733955802493 atm
+Power-Thermal : 2219.2511668122634 W
+###########
+I :41.1 A
+
+E : 54.20804959927307 V
+FC Efficiency : 0.3941674193399374
+FC Power : 2223.9745667391494 W
+FC Voltage : 54.1113033269866 V
+PH2 : 2.0673978794127397 atm
+PO2 : 2.0395943378502026 atm
+Power-Thermal : 2224.6894332608504 W
+###########
+I :41.2 A
+
+E : 54.20784951426675 V
+FC Efficiency : 0.3941629090503958
+FC Power : 2229.36018716286 W
+FC Voltage : 54.11068415443834 V
+PH2 : 2.0671505926963265 atm
+PO2 : 2.0394547198979125 atm
+Power-Thermal : 2230.1278128371405 W
+###########
+I :41.3 A
+
+E : 54.207649407601416 V
+FC Efficiency : 0.3941584006530863
+FC Power : 2234.74569448038 W
+FC Voltage : 54.11006524165569 V
+PH2 : 2.0669033059799133 atm
+PO2 : 2.039315101945623 atm
+Power-Thermal : 2235.5663055196196 W
+###########
+I :41.4 A
+
+E : 54.20744927927221 V
+FC Efficiency : 0.39415389413805796
+FC Power : 2240.1310887130853 W
+FC Voltage : 54.10944658727259 V
+PH2 : 2.0666560192635 atm
+PO2 : 2.0391754839933323 atm
+Power-Thermal : 2241.004911286914 W
+###########
+I :41.5 A
+
+E : 54.207249129274274 V
+FC Efficiency : 0.3941493894954317
+FC Power : 2245.516369882214 W
+FC Voltage : 54.108828189932865 V
+PH2 : 2.0664087325470866 atm
+PO2 : 2.039035866041042 atm
+Power-Thermal : 2246.4436301177857 W
+###########
+I :41.6 A
+
+E : 54.207048957602716 V
+FC Efficiency : 0.3941448867153996
+FC Power : 2250.9015380088663 W
+FC Voltage : 54.108210048290054 V
+PH2 : 2.0661614458306734 atm
+PO2 : 2.038896248088752 atm
+Power-Thermal : 2251.882461991134 W
+###########
+I :41.7 A
+
+E : 54.206848764252655 V
+FC Efficiency : 0.39414038578822364
+FC Power : 2256.2865931140063 W
+FC Voltage : 54.10759216100735 V
+PH2 : 2.0659141591142602 atm
+PO2 : 2.038756630136462 atm
+Power-Thermal : 2257.3214068859934 W
+###########
+I :41.8 A
+
+E : 54.206648549219224 V
+FC Efficiency : 0.3941358867042361
+FC Power : 2261.6715352184647 W
+FC Voltage : 54.10697452675753 V
+PH2 : 2.065666872397847 atm
+PO2 : 2.038617012184172 atm
+Power-Thermal : 2262.7604647815347 W
+###########
+I :41.9 A
+
+E : 54.20644831249756 V
+FC Efficiency : 0.3941313894538381
+FC Power : 2267.0563643429396 W
+FC Voltage : 54.1063571442229 V
+PH2 : 2.065419585681434 atm
+PO2 : 2.0384773942318817 atm
+Power-Thermal : 2268.1996356570603 W
+###########
+I :42.0 A
+
+E : 54.20624805408274 V
+FC Efficiency : 0.39412689402749884
+FC Power : 2272.4410805079915 W
+FC Voltage : 54.10574001209504 V
+PH2 : 2.0651722989650207 atm
+PO2 : 2.038337776279591 atm
+Power-Thermal : 2273.638919492008 W
+###########
+I :42.1 A
+
+E : 54.20604777396992 V
+FC Efficiency : 0.3941224004157556
+FC Power : 2277.8256837340546 W
+FC Voltage : 54.105123129074926 V
+PH2 : 2.064925012248607 atm
+PO2 : 2.0381981583273014 atm
+Power-Thermal : 2279.0783162659454 W
+###########
+I :42.2 A
+
+E : 54.2058474721542 V
+FC Efficiency : 0.3941179086092127
+FC Power : 2283.210174041429 W
+FC Voltage : 54.10450649387272 V
+PH2 : 2.064677725532194 atm
+PO2 : 2.0380585403750113 atm
+Power-Thermal : 2284.5178259585714 W
+###########
+I :42.3 A
+
+E : 54.205647148630675 V
+FC Efficiency : 0.3941134185985406
+FC Power : 2288.5945514502837 W
+FC Voltage : 54.103890105207654 V
+PH2 : 2.064430438815781 atm
+PO2 : 2.0379189224227208 atm
+Power-Thermal : 2289.957448549716 W
+###########
+I :42.4 A
+
+E : 54.2054468033945 V
+FC Efficiency : 0.39410893037447614
+FC Power : 2293.9788159806626 W
+FC Voltage : 54.103273961808085 V
+PH2 : 2.0641831520993676 atm
+PO2 : 2.0377793044704307 atm
+Power-Thermal : 2295.3971840193367 W
+###########
+I :42.5 A
+
+E : 54.20524643644076 V
+FC Efficiency : 0.39410444392782096
+FC Power : 2299.3629676524783 W
+FC Voltage : 54.10265806241126 V
+PH2 : 2.0639358653829545 atm
+PO2 : 2.0376396865181405 atm
+Power-Thermal : 2300.8370323475215 W
+###########
+I :42.6 A
+
+E : 54.205046047764554 V
+FC Efficiency : 0.3940999592494412
+FC Power : 2304.747006485516 W
+FC Voltage : 54.102042405763285 V
+PH2 : 2.063688578666541 atm
+PO2 : 2.0375000685658504 atm
+Power-Thermal : 2306.276993514484 W
+###########
+I :42.7 A
+
+E : 54.204845637361004 V
+FC Efficiency : 0.39409547633026726
+FC Power : 2310.1309324994354 W
+FC Voltage : 54.10142699061909 V
+PH2 : 2.063441291950128 atm
+PO2 : 2.0373604506135603 atm
+Power-Thermal : 2311.717067500565 W
+###########
+I :42.8 A
+
+E : 54.20464520522522 V
+FC Efficiency : 0.394090995161293
+FC Power : 2315.51474571377 W
+FC Voltage : 54.1008118157423 V
+PH2 : 2.0631940052337145 atm
+PO2 : 2.03722083266127 atm
+Power-Thermal : 2317.157254286229 W
+###########
+I :42.9 A
+
+E : 54.20444475135229 V
+FC Efficiency : 0.3940865157335746
+FC Power : 2320.8984461479295 W
+FC Voltage : 54.10019687990512 V
+PH2 : 2.0629467185173014 atm
+PO2 : 2.0370812147089796 atm
+Power-Thermal : 2322.59755385207 W
+###########
+I :43.0 A
+
+E : 54.204244275737324 V
+FC Efficiency : 0.39408203803823083
+FC Power : 2326.282033821198 W
+FC Voltage : 54.09958218188833 V
+PH2 : 2.062699431800888 atm
+PO2 : 2.03694159675669 atm
+Power-Thermal : 2328.0379661788015 W
+###########
+I :43.1 A
+
+E : 54.20404377837543 V
+FC Efficiency : 0.39407756206644223
+FC Power : 2331.6655087527392 W
+FC Voltage : 54.09896772048119 V
+PH2 : 2.062452145084475 atm
+PO2 : 2.0368019788044 atm
+Power-Thermal : 2333.4784912472605 W
+###########
+I :43.2 A
+
+E : 54.20384325926169 V
+FC Efficiency : 0.39407308780944994
+FC Power : 2337.0488709615915 W
+FC Voltage : 54.09835349448129 V
+PH2 : 2.062204858368062 atm
+PO2 : 2.0366623608521093 atm
+Power-Thermal : 2338.9191290384083 W
+###########
+I :43.3 A
+
+E : 54.20364271839122 V
+FC Efficiency : 0.39406861525855597
+FC Power : 2342.4321204666744 W
+FC Voltage : 54.09773950269456 V
+PH2 : 2.0619575716516487 atm
+PO2 : 2.036522742899819 atm
+Power-Thermal : 2344.359879533325 W
+###########
+I :43.4 A
+
+E : 54.2034421557591 V
+FC Efficiency : 0.39406414440512194
+FC Power : 2347.8152572867853 W
+FC Voltage : 54.097125743935145 V
+PH2 : 2.061710284935235 atm
+PO2 : 2.0363831249475295 atm
+Power-Thermal : 2349.8007427132143 W
+###########
+I :43.5 A
+
+E : 54.20324157136042 V
+FC Efficiency : 0.3940596752405692
+FC Power : 2353.198281440602 W
+FC Voltage : 54.096512217025335 V
+PH2 : 2.061462998218822 atm
+PO2 : 2.036243506995239 atm
+Power-Thermal : 2355.2417185593977 W
+###########
+I :43.6 A
+
+E : 54.2030409651903 V
+FC Efficiency : 0.3940552077563777
+FC Power : 2358.581192946685 W
+FC Voltage : 54.09589892079553 V
+PH2 : 2.061215711502409 atm
+PO2 : 2.036103889042949 atm
+Power-Thermal : 2360.6828070533147 W
+###########
+I :43.7 A
+
+E : 54.20284033724379 V
+FC Efficiency : 0.3940507419440858
+FC Power : 2363.963991823475 W
+FC Voltage : 54.095285854084096 V
+PH2 : 2.0609684247859956 atm
+PO2 : 2.0359642710906587 atm
+Power-Thermal : 2366.124008176525 W
+###########
+I :43.8 A
+
+E : 54.20263968751601 V
+FC Efficiency : 0.3940462777952895
+FC Power : 2369.3466780892954 W
+FC Voltage : 54.09467301573734 V
+PH2 : 2.0607211380695825 atm
+PO2 : 2.0358246531383686 atm
+Power-Thermal : 2371.565321910704 W
+###########
+I :43.9 A
+
+E : 54.20243901600203 V
+FC Efficiency : 0.39404181530164223
+FC Power : 2374.7292517623546 W
+FC Voltage : 54.09406040460944 V
+PH2 : 2.0604738513531693 atm
+PO2 : 2.0356850351860785 atm
+Power-Thermal : 2377.0067482376453 W
+###########
+I :44.0 A
+
+E : 54.20223832269694 V
+FC Efficiency : 0.394037354454854
+FC Power : 2380.111712860744 W
+FC Voltage : 54.09344801956236 V
+PH2 : 2.0602265646367557 atm
+PO2 : 2.0355454172337883 atm
+Power-Thermal : 2382.448287139256 W
+###########
+I :44.1 A
+
+E : 54.20203760759583 V
+FC Efficiency : 0.39403289524669105
+FC Power : 2385.49406140244 W
+FC Voltage : 54.09283585946575 V
+PH2 : 2.059979277920343 atm
+PO2 : 2.035405799281498 atm
+Power-Thermal : 2387.88993859756 W
+###########
+I :44.2 A
+
+E : 54.20183687069377 V
+FC Efficiency : 0.39402843766897533
+FC Power : 2390.8762974053047 W
+FC Voltage : 54.09222392319693 V
+PH2 : 2.0597319912039294 atm
+PO2 : 2.035266181329208 atm
+Power-Thermal : 2393.3317025946953 W
+###########
+I :44.3 A
+
+E : 54.20163611198585 V
+FC Efficiency : 0.39402398171358405
+FC Power : 2396.258420887088 W
+FC Voltage : 54.091612209640815 V
+PH2 : 2.059484704487516 atm
+PO2 : 2.035126563376918 atm
+Power-Thermal : 2398.7735791129116 W
+###########
+I :44.4 A
+
+E : 54.201435331467145 V
+FC Efficiency : 0.39401952737244883
+FC Power : 2401.640431865426 W
+FC Voltage : 54.091000717689774 V
+PH2 : 2.059237417771103 atm
+PO2 : 2.0349869454246274 atm
+Power-Thermal : 2404.215568134574 W
+###########
+I :44.5 A
+
+E : 54.201234529132726 V
+FC Efficiency : 0.3940150746375558
+FC Power : 2407.022330357843 W
+FC Voltage : 54.09038944624366 V
+PH2 : 2.0589901310546894 atm
+PO2 : 2.0348473274723373 atm
+Power-Thermal : 2409.6576696421566 W
+###########
+I :44.6 A
+
+E : 54.20103370497766 V
+FC Efficiency : 0.3940106235009446
+FC Power : 2412.404116381752 W
+FC Voltage : 54.08977839420968 V
+PH2 : 2.0587428443382767 atm
+PO2 : 2.034707709520047 atm
+Power-Thermal : 2415.099883618248 W
+###########
+I :44.7 A
+
+E : 54.20083285899705 V
+FC Efficiency : 0.3940061739547085
+FC Power : 2417.7857899544565 W
+FC Voltage : 54.08916756050238 V
+PH2 : 2.058495557621863 atm
+PO2 : 2.034568091567757 atm
+Power-Thermal : 2420.5422100455435 W
+###########
+I :44.8 A
+
+E : 54.200631991185936 V
+FC Efficiency : 0.39400172599099276
+FC Power : 2423.167351093148 W
+FC Voltage : 54.08855694404349 V
+PH2 : 2.05824827090545 atm
+PO2 : 2.034428473615467 atm
+Power-Thermal : 2425.9846489068514 W
+###########
+I :44.9 A
+
+E : 54.200431101539415 V
+FC Efficiency : 0.3939972796019958
+FC Power : 2428.5487998149133 W
+FC Voltage : 54.08794654376199 V
+PH2 : 2.0580009841890368 atm
+PO2 : 2.034288855663177 atm
+Power-Thermal : 2431.4272001850863 W
+###########
+I :45.0 A
+
+E : 54.20023019005252 V
+FC Efficiency : 0.3939928347799671
+FC Power : 2433.9301361367247 W
+FC Voltage : 54.08733635859389 V
+PH2 : 2.0577536974726236 atm
+PO2 : 2.0341492377108863 atm
+Power-Thermal : 2436.869863863275 W
+###########
+I :45.1 A
+
+E : 54.200029256720356 V
+FC Efficiency : 0.3939883915172081
+FC Power : 2439.311360075453 W
+FC Voltage : 54.08672638748233 V
+PH2 : 2.0575064107562104 atm
+PO2 : 2.0340096197585966 atm
+Power-Thermal : 2442.3126399245466 W
+###########
+I :45.2 A
+
+E : 54.199828301537956 V
+FC Efficiency : 0.3939839498060707
+FC Power : 2444.692471647858 W
+FC Voltage : 54.086116629377386 V
+PH2 : 2.0572591240397973 atm
+PO2 : 2.0338700018063065 atm
+Power-Thermal : 2447.755528352142 W
+###########
+I :45.3 A
+
+E : 54.1996273245004 V
+FC Efficiency : 0.3939795096389575
+FC Power : 2450.0734708705945 W
+FC Voltage : 54.08550708323609 V
+PH2 : 2.0570118373233837 atm
+PO2 : 2.033730383854016 atm
+Power-Thermal : 2453.198529129405 W
+###########
+I :45.4 A
+
+E : 54.199426325602744 V
+FC Efficiency : 0.39397507100832113
+FC Power : 2455.4543577602135 W
+FC Voltage : 54.08489774802232 V
+PH2 : 2.0567645506069705 atm
+PO2 : 2.033590765901726 atm
+Power-Thermal : 2458.6416422397865 W
+###########
+I :45.5 A
+
+E : 54.199225304840056 V
+FC Efficiency : 0.39397063390666365
+FC Power : 2460.835132333159 W
+FC Voltage : 54.08428862270679 V
+PH2 : 2.0565172638905573 atm
+PO2 : 2.033451147949436 atm
+Power-Thermal : 2464.084867666841 W
+###########
+I :45.6 A
+
+E : 54.199024262207374 V
+FC Efficiency : 0.3939661983265361
+FC Power : 2466.21579460577 W
+FC Voltage : 54.083679706266885 V
+PH2 : 2.056269977174144 atm
+PO2 : 2.0333115299971456 atm
+Power-Thermal : 2469.52820539423 W
+###########
+I :45.7 A
+
+E : 54.198823197699774 V
+FC Efficiency : 0.39396176426053886
+FC Power : 2471.5963445942857 W
+FC Voltage : 54.083070997686775 V
+PH2 : 2.056022690457731 atm
+PO2 : 2.0331719120448555 atm
+Power-Thermal : 2474.9716554057145 W
+###########
+I :45.8 A
+
+E : 54.1986221113123 V
+FC Efficiency : 0.3939573317013198
+FC Power : 2476.9767823148386 W
+FC Voltage : 54.08246249595718 V
+PH2 : 2.055775403741318 atm
+PO2 : 2.0330322940925654 atm
+Power-Thermal : 2480.4152176851608 W
+###########
+I :45.9 A
+
+E : 54.19842100304 V
+FC Efficiency : 0.39395290064157507
+FC Power : 2482.357107783462 W
+FC Voltage : 54.081854200075426 V
+PH2 : 2.0555281170249042 atm
+PO2 : 2.0328926761402752 atm
+Power-Thermal : 2485.8588922165377 W
+###########
+I :46.0 A
+
+E : 54.198219872877935 V
+FC Efficiency : 0.39394847107404823
+FC Power : 2487.7373210160854 W
+FC Voltage : 54.08124610904534 V
+PH2 : 2.055280830308491 atm
+PO2 : 2.032753058187985 atm
+Power-Thermal : 2491.302678983914 W
+###########
+I :46.1 A
+
+E : 54.19801872082115 V
+FC Efficiency : 0.39394404299152985
+FC Power : 2493.11742202854 W
+FC Voltage : 54.08063822187722 V
+PH2 : 2.055033543592078 atm
+PO2 : 2.032613440235695 atm
+Power-Thermal : 2496.74657797146 W
+###########
+I :46.2 A
+
+E : 54.1978175468647 V
+FC Efficiency : 0.3939396163868571
+FC Power : 2498.4974108365536 W
+FC Voltage : 54.08003053758774 V
+PH2 : 2.0547862568756647 atm
+PO2 : 2.0324738222834045 atm
+Power-Thermal : 2502.1905891634465 W
+###########
+I :46.3 A
+
+E : 54.19761635100362 V
+FC Efficiency : 0.39393519125291326
+FC Power : 2503.8772874557567 W
+FC Voltage : 54.07942305519993 V
+PH2 : 2.0545389701592516 atm
+PO2 : 2.0323342043311143 atm
+Power-Thermal : 2507.6347125442426 W
+###########
+I :46.4 A
+
+E : 54.197415133232944 V
+FC Efficiency : 0.39393076758262763
+FC Power : 2509.2570519016804 W
+FC Voltage : 54.078815773743116 V
+PH2 : 2.054291683442838 atm
+PO2 : 2.0321945863788247 atm
+Power-Thermal : 2513.078948098319 W
+###########
+I :46.5 A
+
+E : 54.19721389354773 V
+FC Efficiency : 0.39392634536897464
+FC Power : 2514.6367041897574 W
+FC Voltage : 54.07820869225284 V
+PH2 : 2.0540443967264252 atm
+PO2 : 2.032054968426534 atm
+Power-Thermal : 2518.5232958102424 W
+###########
+I :46.6 A
+
+E : 54.197012631943025 V
+FC Efficiency : 0.39392192460497416
+FC Power : 2520.016244335322 W
+FC Voltage : 54.077601809770854 V
+PH2 : 2.0537971100100116 atm
+PO2 : 2.031915350474244 atm
+Power-Thermal : 2523.967755664678 W
+###########
+I :46.7 A
+
+E : 54.19681134841385 V
+FC Efficiency : 0.39391750528369046
+FC Power : 2525.395672353613 W
+FC Voltage : 54.07699512534503 V
+PH2 : 2.0535498232935985 atm
+PO2 : 2.031775732521954 atm
+Power-Thermal : 2529.412327646387 W
+###########
+I :46.8 A
+
+E : 54.19661004295525 V
+FC Efficiency : 0.39391308739823194
+FC Power : 2530.77498825977 W
+FC Voltage : 54.07638863802928 V
+PH2 : 2.0533025365771853 atm
+PO2 : 2.0316361145696638 atm
+Power-Thermal : 2534.857011740229 W
+###########
+I :46.9 A
+
+E : 54.196408715562264 V
+FC Efficiency : 0.3939086709417512
+FC Power : 2536.1541920688405 W
+FC Voltage : 54.0757823468836 V
+PH2 : 2.053055249860772 atm
+PO2 : 2.0314964966173736 atm
+Power-Thermal : 2540.3018079311587 W
+###########
+I :47.0 A
+
+E : 54.19620736622992 V
+FC Efficiency : 0.3939042559074441
+FC Power : 2541.5332837957744 W
+FC Voltage : 54.075176250973925 V
+PH2 : 2.052807963144359 atm
+PO2 : 2.0313568786650835 atm
+Power-Thermal : 2545.7467162042253 W
+###########
+I :47.1 A
+
+E : 54.19600599495325 V
+FC Efficiency : 0.3938998422885497
+FC Power : 2546.912263455426 W
+FC Voltage : 54.0745703493721 V
+PH2 : 2.052560676427946 atm
+PO2 : 2.031217260712793 atm
+Power-Thermal : 2551.191736544574 W
+###########
+I :47.2 A
+
+E : 54.19580460172728 V
+FC Efficiency : 0.3938954300783499
+FC Power : 2552.2911310625573 W
+FC Voltage : 54.073964641155875 V
+PH2 : 2.052313389711532 atm
+PO2 : 2.0310776427605033 atm
+Power-Thermal : 2556.6368689374426 W
+###########
+I :47.3 A
+
+E : 54.195603186547054 V
+FC Efficiency : 0.39389101927016906
+FC Power : 2557.6698866318366 W
+FC Voltage : 54.073359125408814 V
+PH2 : 2.052066102995119 atm
+PO2 : 2.030938024808213 atm
+Power-Thermal : 2562.0821133681625 W
+###########
+I :47.4 A
+
+E : 54.19540174940758 V
+FC Efficiency : 0.3938866098573734
+FC Power : 2563.0485301778385 W
+FC Voltage : 54.07275380122022 V
+PH2 : 2.051818816278706 atm
+PO2 : 2.0307984068559226 atm
+Power-Thermal : 2567.527469822161 W
+###########
+I :47.5 A
+
+E : 54.195200290303895 V
+FC Efficiency : 0.393882201833371
+FC Power : 2568.427061715046 W
+FC Voltage : 54.07214866768518 V
+PH2 : 2.0515715295622927 atm
+PO2 : 2.0306587889036325 atm
+Power-Thermal : 2572.9729382849537 W
+###########
+I :47.6 A
+
+E : 54.194998809231016 V
+FC Efficiency : 0.39387779519161126
+FC Power : 2573.8054812578494 W
+FC Voltage : 54.0715437239044 V
+PH2 : 2.0513242428458796 atm
+PO2 : 2.030519170951343 atm
+Power-Thermal : 2578.4185187421504 W
+###########
+I :47.7 A
+
+E : 54.194797306183965 V
+FC Efficiency : 0.3938733899255845
+FC Power : 2579.1837888205487 W
+FC Voltage : 54.070938968984244 V
+PH2 : 2.051076956129466 atm
+PO2 : 2.0303795529990523 atm
+Power-Thermal : 2583.8642111794516 W
+###########
+I :47.8 A
+
+E : 54.194595781157766 V
+FC Efficiency : 0.3938689860288218
+FC Power : 2584.5619844173525 W
+FC Voltage : 54.070334402036664 V
+PH2 : 2.050829669413053 atm
+PO2 : 2.030239935046762 atm
+Power-Thermal : 2589.310015582647 W
+###########
+I :47.9 A
+
+E : 54.19439423414744 V
+FC Efficiency : 0.3938645834948946
+FC Power : 2589.9400680623808 W
+FC Voltage : 54.06973002217914 V
+PH2 : 2.05058238269664 atm
+PO2 : 2.030100317094472 atm
+Power-Thermal : 2594.755931937619 W
+###########
+I :48.0 A
+
+E : 54.19419266514798 V
+FC Efficiency : 0.39386018231741404
+FC Power : 2595.318039769661 W
+FC Voltage : 54.0691258285346 V
+PH2 : 2.0503350959802265 atm
+PO2 : 2.0299606991421815 atm
+Power-Thermal : 2600.201960230339 W
+###########
+I :48.1 A
+
+E : 54.19399107415443 V
+FC Efficiency : 0.3938557824900313
+FC Power : 2600.695899553135 W
+FC Voltage : 54.068521820231496 V
+PH2 : 2.0500878092638133 atm
+PO2 : 2.029821081189892 atm
+Power-Thermal : 2605.648100446865 W
+###########
+I :48.2 A
+
+E : 54.193789461161785 V
+FC Efficiency : 0.39385138400643654
+FC Power : 2606.073647426654 W
+FC Voltage : 54.06791799640361 V
+PH2 : 2.0498405225474 atm
+PO2 : 2.0296814632376017 atm
+Power-Thermal : 2611.094352573346 W
+###########
+I :48.3 A
+
+E : 54.19358782616506 V
+FC Efficiency : 0.39384698686035907
+FC Power : 2611.451283403981 W
+FC Voltage : 54.06731435619009 V
+PH2 : 2.0495932358309865 atm
+PO2 : 2.029541845285311 atm
+Power-Thermal : 2616.5407165960182 W
+###########
+I :48.4 A
+
+E : 54.19338616915926 V
+FC Efficiency : 0.3938425910455669
+FC Power : 2616.8288074987945 W
+FC Voltage : 54.06671089873542 V
+PH2 : 2.049345949114574 atm
+PO2 : 2.029402227333021 atm
+Power-Thermal : 2621.9871925012053 W
+###########
+I :48.5 A
+
+E : 54.19318449013941 V
+FC Efficiency : 0.39383819655586644
+FC Power : 2622.2062197246833 W
+FC Voltage : 54.066107623189346 V
+PH2 : 2.04909866239816 atm
+PO2 : 2.0292626093807313 atm
+Power-Thermal : 2627.4337802753166 W
+###########
+I :48.6 A
+
+E : 54.1929827891005 V
+FC Efficiency : 0.3938338033851019
+FC Power : 2627.58352009515 W
+FC Voltage : 54.06550452870679 V
+PH2 : 2.048851375681747 atm
+PO2 : 2.0291229914284408 atm
+Power-Thermal : 2632.88047990485 W
+###########
+I :48.7 A
+
+E : 54.19278106603753 V
+FC Efficiency : 0.3938294115271554
+FC Power : 2632.9607086236124 W
+FC Voltage : 54.06490161444789 V
+PH2 : 2.048604088965334 atm
+PO2 : 2.0289833734761507 atm
+Power-Thermal : 2638.3272913763876 W
+###########
+I :48.8 A
+
+E : 54.19257932094551 V
+FC Efficiency : 0.3938250209759464
+FC Power : 2638.337785323403 W
+FC Voltage : 54.064298879577926 V
+PH2 : 2.0483568022489207 atm
+PO2 : 2.0288437555238605 atm
+Power-Thermal : 2643.774214676597 W
+###########
+I :48.9 A
+
+E : 54.19237755381945 V
+FC Efficiency : 0.3938206317254316
+FC Power : 2643.7147502077687 W
+FC Voltage : 54.06369632326725 V
+PH2 : 2.0481095155325075 atm
+PO2 : 2.0287041375715704 atm
+Power-Thermal : 2649.221249792231 W
+###########
+I :49.0 A
+
+E : 54.19217576465432 V
+FC Efficiency : 0.3938162437696042
+FC Power : 2649.091603289872 W
+FC Voltage : 54.06309394469127 V
+PH2 : 2.0478622288160944 atm
+PO2 : 2.0285645196192803 atm
+Power-Thermal : 2654.6683967101276 W
+###########
+I :49.1 A
+
+E : 54.19197395344516 V
+FC Efficiency : 0.3938118571024944
+FC Power : 2654.468344582794 W
+FC Voltage : 54.06249174303043 V
+PH2 : 2.0476149420996808 atm
+PO2 : 2.02842490166699 atm
+Power-Thermal : 2660.1156554172057 W
+###########
+I :49.2 A
+
+E : 54.191772120186926 V
+FC Efficiency : 0.393807471718168
+FC Power : 2659.8449740995293 W
+FC Voltage : 54.0618897174701 V
+PH2 : 2.047367655383268 atm
+PO2 : 2.0282852837146996 atm
+Power-Thermal : 2665.563025900471 W
+###########
+I :49.3 A
+
+E : 54.19157026487463 V
+FC Efficiency : 0.39380308761072713
+FC Power : 2665.2214918529903 W
+FC Voltage : 54.06128786720062 V
+PH2 : 2.0471203686668544 atm
+PO2 : 2.02814566576241 atm
+Power-Thermal : 2671.010508147009 W
+###########
+I :49.4 A
+
+E : 54.19136838750325 V
+FC Efficiency : 0.3937987047743095
+FC Power : 2670.5978978560097 W
+FC Voltage : 54.060686191417204 V
+PH2 : 2.0468730819504413 atm
+PO2 : 2.02800604781012 atm
+Power-Thermal : 2676.45810214399 W
+###########
+I :49.5 A
+
+E : 54.19116648806781 V
+FC Efficiency : 0.39379432320308794
+FC Power : 2675.974192121336 W
+FC Voltage : 54.060084689319915 V
+PH2 : 2.046625795234028 atm
+PO2 : 2.0278664298578293 atm
+Power-Thermal : 2681.905807878664 W
+###########
+I :49.6 A
+
+E : 54.19096456656325 V
+FC Efficiency : 0.3937899428912705
+FC Power : 2681.3503746616357 W
+FC Voltage : 54.05948336011362 V
+PH2 : 2.046378508517615 atm
+PO2 : 2.027726811905539 atm
+Power-Thermal : 2687.3536253383645 W
+###########
+I :49.7 A
+
+E : 54.19076262298459 V
+FC Efficiency : 0.3937855638331001
+FC Power : 2686.7264454894967 W
+FC Voltage : 54.058882203007975 V
+PH2 : 2.0461312218012013 atm
+PO2 : 2.027587193953249 atm
+Power-Thermal : 2692.8015545105036 W
+###########
+I :49.8 A
+
+E : 54.1905606573268 V
+FC Efficiency : 0.3937811860228536
+FC Power : 2692.102404617424 W
+FC Voltage : 54.05828121721735 V
+PH2 : 2.045883935084788 atm
+PO2 : 2.027447576000959 atm
+Power-Thermal : 2698.2495953825755 W
+###########
+I :49.9 A
+
+E : 54.19035866958488 V
+FC Efficiency : 0.39377680945484295
+FC Power : 2697.478252057846 W
+FC Voltage : 54.057680401960845 V
+PH2 : 2.045636648368375 atm
+PO2 : 2.027307958048669 atm
+Power-Thermal : 2703.6977479421535 W
+###########
+I :50.0 A
+
+E : 54.19015665975379 V
+FC Efficiency : 0.3937724341234133
+FC Power : 2702.853987823109 W
+FC Voltage : 54.05707975646218 V
+PH2 : 2.045389361651962 atm
+PO2 : 2.0271683400963787 atm
+Power-Thermal : 2709.146012176891 W
+###########
+I :50.1 A
+
+E : 54.18995462782852 V
+FC Efficiency : 0.3937680600229437
+FC Power : 2708.2296119254806 W
+FC Voltage : 54.05647927994971 V
+PH2 : 2.0451420749355487 atm
+PO2 : 2.027028722144088 atm
+Power-Thermal : 2714.5943880745194 W
+###########
+I :50.2 A
+
+E : 54.18975257380405 V
+FC Efficiency : 0.39376368714784665
+FC Power : 2713.605124377151 W
+FC Voltage : 54.05587897165639 V
+PH2 : 2.044894788219135 atm
+PO2 : 2.0268891041917985 atm
+Power-Thermal : 2720.042875622849 W
+###########
+I :50.3 A
+
+E : 54.18955049767535 V
+FC Efficiency : 0.39375931549256776
+FC Power : 2718.9805251902308 W
+FC Voltage : 54.0552788308197 V
+PH2 : 2.0446475015027223 atm
+PO2 : 2.0267494862395083 atm
+Power-Thermal : 2725.4914748097685 W
+###########
+I :50.4 A
+
+E : 54.1893483994374 V
+FC Efficiency : 0.3937549450515854
+FC Power : 2724.355814376755 W
+FC Voltage : 54.05467885668165 V
+PH2 : 2.0444002147863087 atm
+PO2 : 2.026609868287218 atm
+Power-Thermal : 2730.940185623245 W
+###########
+I :50.5 A
+
+E : 54.189146279085165 V
+FC Efficiency : 0.39375057581941064
+FC Power : 2729.7309919486793 W
+FC Voltage : 54.054079048488695 V
+PH2 : 2.0441529280698956 atm
+PO2 : 2.0264702503349277 atm
+Power-Thermal : 2736.3890080513206 W
+###########
+I :50.6 A
+
+E : 54.188944136613635 V
+FC Efficiency : 0.3937462077905871
+FC Power : 2735.1060579178848 W
+FC Voltage : 54.05347940549179 V
+PH2 : 2.0439056413534824 atm
+PO2 : 2.026330632382638 atm
+Power-Thermal : 2741.837942082115 W
+###########
+I :50.7 A
+
+E : 54.188741972017745 V
+FC Efficiency : 0.3937418409596898
+FC Power : 2740.481012296173 W
+FC Voltage : 54.05287992694621 V
+PH2 : 2.0436583546370692 atm
+PO2 : 2.0261910144303474 atm
+Power-Thermal : 2747.286987703827 W
+###########
+I :50.8 A
+
+E : 54.18853978529249 V
+FC Efficiency : 0.3937374753213263
+FC Power : 2745.855855095273 W
+FC Voltage : 54.05228061211168 V
+PH2 : 2.043411067920656 atm
+PO2 : 2.0260513964780573 atm
+Power-Thermal : 2752.736144904726 W
+###########
+I :50.9 A
+
+E : 54.18833757643283 V
+FC Efficiency : 0.3937331108701356
+FC Power : 2751.2305863268384 W
+FC Voltage : 54.051681460252226 V
+PH2 : 2.043163781204243 atm
+PO2 : 2.025911778525767 atm
+Power-Thermal : 2758.1854136731613 W
+###########
+I :51.0 A
+
+E : 54.18813534543372 V
+FC Efficiency : 0.3937287476007879
+FC Power : 2756.6052060024444 W
+FC Voltage : 54.05108247063617 V
+PH2 : 2.0429164944878293 atm
+PO2 : 2.025772160573477 atm
+Power-Thermal : 2763.6347939975553 W
+###########
+I :51.1 A
+
+E : 54.18793309229013 V
+FC Efficiency : 0.39372438550798455
+FC Power : 2761.9797141335957 W
+FC Voltage : 54.05048364253612 V
+PH2 : 2.0426692077714166 atm
+PO2 : 2.025632542621187 atm
+Power-Thermal : 2769.084285866404 W
+###########
+I :51.2 A
+
+E : 54.18773081699701 V
+FC Efficiency : 0.39372002458645755
+FC Power : 2767.3541107317196 W
+FC Voltage : 54.04988497522889 V
+PH2 : 2.042421921055003 atm
+PO2 : 2.025492924668897 atm
+Power-Thermal : 2774.5338892682807 W
+###########
+I :51.3 A
+
+E : 54.18752851954934 V
+FC Efficiency : 0.3937156648309699
+FC Power : 2772.7283958081716 W
+FC Voltage : 54.04928646799555 V
+PH2 : 2.04217463433859 atm
+PO2 : 2.0253533067166063 atm
+Power-Thermal : 2779.983604191828 W
+###########
+I :51.4 A
+
+E : 54.18732619994205 V
+FC Efficiency : 0.3937113062363147
+FC Power : 2778.1025693742336 W
+FC Voltage : 54.04868812012128 V
+PH2 : 2.0419273476221766 atm
+PO2 : 2.0252136887643166 atm
+Power-Thermal : 2785.433430625766 W
+###########
+I :51.5 A
+
+E : 54.18712385817012 V
+FC Efficiency : 0.3937069487973152
+FC Power : 2783.4766314411145 W
+FC Voltage : 54.04808993089543 V
+PH2 : 2.041680060905763 atm
+PO2 : 2.0250740708120265 atm
+Power-Thermal : 2790.883368558885 W
+###########
+I :51.6 A
+
+E : 54.18692149422848 V
+FC Efficiency : 0.39370259250882456
+FC Power : 2788.8505820199503 W
+FC Voltage : 54.04749189961144 V
+PH2 : 2.04143277418935 atm
+PO2 : 2.024934452859736 atm
+Power-Thermal : 2796.3334179800495 W
+###########
+I :51.7 A
+
+E : 54.186719108112094 V
+FC Efficiency : 0.39369823736572584
+FC Power : 2794.224421121806 W
+FC Voltage : 54.04689402556684 V
+PH2 : 2.0411854874729367 atm
+PO2 : 2.024794834907446 atm
+Power-Thermal : 2801.783578878194 W
+###########
+I :51.8 A
+
+E : 54.186516699815904 V
+FC Efficiency : 0.3936938833629311
+FC Power : 2799.598148757673 W
+FC Voltage : 54.046296308063184 V
+PH2 : 2.0409382007565235 atm
+PO2 : 2.0246552169551557 atm
+Power-Thermal : 2807.2338512423266 W
+###########
+I :51.9 A
+
+E : 54.186314269334865 V
+FC Efficiency : 0.393689530495382
+FC Power : 2804.971764938474 W
+FC Voltage : 54.045698746406046 V
+PH2 : 2.0406909140401104 atm
+PO2 : 2.0245155990028656 atm
+Power-Thermal : 2812.6842350615257 W
+###########
+I :52.0 A
+
+E : 54.18611181666393 V
+FC Efficiency : 0.39368517875804915
+FC Power : 2810.345269675059 W
+FC Voltage : 54.04510133990499 V
+PH2 : 2.040443627323697 atm
+PO2 : 2.0243759810505755 atm
+Power-Thermal : 2818.1347303249404 W
+###########
+I :52.1 A
+
+E : 54.18590934179803 V
+FC Efficiency : 0.3936808281459316
+FC Power : 2815.718662978209 W
+FC Voltage : 54.04450408787349 V
+PH2 : 2.0401963406072836 atm
+PO2 : 2.0242363630982854 atm
+Power-Thermal : 2823.585337021791 W
+###########
+I :52.2 A
+
+E : 54.18570684473211 V
+FC Efficiency : 0.3936764786540572
+FC Power : 2821.0919448586324 W
+FC Voltage : 54.04390698962897 V
+PH2 : 2.039949053890871 atm
+PO2 : 2.024096745145995 atm
+Power-Thermal : 2829.0360551413673 W
+###########
+I :52.3 A
+
+E : 54.18550432546111 V
+FC Efficiency : 0.39367213027748216
+FC Power : 2826.4651153269706 W
+FC Voltage : 54.04331004449275 V
+PH2 : 2.0397017671744573 atm
+PO2 : 2.023957127193705 atm
+Power-Thermal : 2834.4868846730287 W
+###########
+I :52.4 A
+
+E : 54.18530178397997 V
+FC Efficiency : 0.39366778301129063
+FC Power : 2831.838174393795 W
+FC Voltage : 54.042713251789976 V
+PH2 : 2.039454480458044 atm
+PO2 : 2.023817509241415 atm
+Power-Thermal : 2839.937825606205 W
+###########
+I :52.5 A
+
+E : 54.18509922028363 V
+FC Efficiency : 0.39366343685059474
+FC Power : 2837.2111220696065 W
+FC Voltage : 54.04211661084965 V
+PH2 : 2.039207193741631 atm
+PO2 : 2.0236778912891245 atm
+Power-Thermal : 2845.3888779303934 W
+###########
+I :52.6 A
+
+E : 54.18489663436703 V
+FC Efficiency : 0.3936590917905344
+FC Power : 2842.5839583648403 W
+FC Voltage : 54.04152012100457 V
+PH2 : 2.038959907025218 atm
+PO2 : 2.0235382733368343 atm
+Power-Thermal : 2850.8400416351597 W
+###########
+I :52.7 A
+
+E : 54.184694026225095 V
+FC Efficiency : 0.39365474782627685
+FC Power : 2847.9566832898613 W
+FC Voltage : 54.04092378159129 V
+PH2 : 2.0387126203088046 atm
+PO2 : 2.0233986553845447 atm
+Power-Thermal : 2856.2913167101387 W
+###########
+I :52.8 A
+
+E : 54.18449139585276 V
+FC Efficiency : 0.3936504049530166
+FC Power : 2853.3292968549663 W
+FC Voltage : 54.040327591950124 V
+PH2 : 2.0384653335923915 atm
+PO2 : 2.023259037432254 atm
+Power-Thermal : 2861.742703145033 W
+###########
+I :52.9 A
+
+E : 54.18428874324494 V
+FC Efficiency : 0.39364606316597534
+FC Power : 2858.701799070387 W
+FC Voltage : 54.03973155142509 V
+PH2 : 2.038218046875978 atm
+PO2 : 2.023119419479964 atm
+Power-Thermal : 2867.194200929612 W
+###########
+I :53.0 A
+
+E : 54.184086068396596 V
+FC Efficiency : 0.39364172246040136
+FC Power : 2864.074189946287 W
+FC Voltage : 54.0391356593639 V
+PH2 : 2.037970760159565 atm
+PO2 : 2.022979801527674 atm
+Power-Thermal : 2872.645810053713 W
+###########
+I :53.1 A
+
+E : 54.18388337130262 V
+FC Efficiency : 0.39363738283156985
+FC Power : 2869.446469492761 W
+FC Voltage : 54.03853991511791 V
+PH2 : 2.0377234734431515 atm
+PO2 : 2.0228401835753838 atm
+Power-Thermal : 2878.097530507239 W
+###########
+I :53.2 A
+
+E : 54.18368065195796 V
+FC Efficiency : 0.3936330442747824
+FC Power : 2874.8186377198413 W
+FC Voltage : 54.03794431804213 V
+PH2 : 2.0374761867267384 atm
+PO2 : 2.0227005656230936 atm
+Power-Thermal : 2883.5493622801587 W
+###########
+I :53.3 A
+
+E : 54.18347791035754 V
+FC Efficiency : 0.3936287067853668
+FC Power : 2880.1906946374916 W
+FC Voltage : 54.037348867495155 V
+PH2 : 2.037228900010325 atm
+PO2 : 2.0225609476708035 atm
+Power-Thermal : 2889.001305362508 W
+###########
+I :53.4 A
+
+E : 54.18327514649626 V
+FC Efficiency : 0.39362437035867676
+FC Power : 2885.5626402556104 W
+FC Voltage : 54.036753562839145 V
+PH2 : 2.036981613293912 atm
+PO2 : 2.022421329718513 atm
+Power-Thermal : 2894.453359744389 W
+###########
+I :53.5 A
+
+E : 54.18307236036905 V
+FC Efficiency : 0.3936200349900921
+FC Power : 2890.9344745840317 W
+FC Voltage : 54.03615840343985 V
+PH2 : 2.0367343265774984 atm
+PO2 : 2.0222817117662233 atm
+Power-Thermal : 2899.905525415968 W
+###########
+I :53.6 A
+
+E : 54.18286955197084 V
+FC Efficiency : 0.3936157006750182
+FC Power : 2896.306197632525 W
+FC Voltage : 54.0355633886665 V
+PH2 : 2.0364870398610853 atm
+PO2 : 2.022142093813933 atm
+Power-Thermal : 2905.3578023674754 W
+###########
+I :53.7 A
+
+E : 54.18266672129653 V
+FC Efficiency : 0.3936113674088859
+FC Power : 2901.6778094107926 W
+FC Voltage : 54.034968517891855 V
+PH2 : 2.036239753144672 atm
+PO2 : 2.0220024758616426 atm
+Power-Thermal : 2910.810190589207 W
+###########
+I :53.8 A
+
+E : 54.182463868341046 V
+FC Efficiency : 0.39360703518715134
+FC Power : 2907.0493099284768 W
+FC Voltage : 54.03437379049214 V
+PH2 : 2.035992466428259 atm
+PO2 : 2.0218628579093525 atm
+Power-Thermal : 2916.2626900715222 W
+###########
+I :53.9 A
+
+E : 54.18226099309928 V
+FC Efficiency : 0.3936027040052955
+FC Power : 2912.4206991951514 W
+FC Voltage : 54.03377920584697 V
+PH2 : 2.0357451797118458 atm
+PO2 : 2.0217232399570624 atm
+Power-Thermal : 2921.715300804848 W
+###########
+I :54.0 A
+
+E : 54.18205809556617 V
+FC Efficiency : 0.3935983738588249
+FC Power : 2917.7919772203322 W
+FC Voltage : 54.033184763339484 V
+PH2 : 2.035497892995432 atm
+PO2 : 2.0215836220047723 atm
+Power-Thermal : 2927.1680227796674 W
+###########
+I :54.1 A
+
+E : 54.181855175736594 V
+FC Efficiency : 0.3935940447432701
+FC Power : 2923.163144013466 W
+FC Voltage : 54.03259046235612 V
+PH2 : 2.0352506062790194 atm
+PO2 : 2.021444004052482 atm
+Power-Thermal : 2932.6208559865336 W
+###########
+I :54.2 A
+
+E : 54.18165223360549 V
+FC Efficiency : 0.39358971665418657
+FC Power : 2928.5341995839412 W
+FC Voltage : 54.031996302286736 V
+PH2 : 2.035003319562606 atm
+PO2 : 2.021304386100192 atm
+Power-Thermal : 2938.073800416059 W
+###########
+I :54.3 A
+
+E : 54.18144926916774 V
+FC Efficiency : 0.39358538958715406
+FC Power : 2933.905143941081 W
+FC Voltage : 54.03140228252451 V
+PH2 : 2.0347560328461927 atm
+PO2 : 2.0211647681479015 atm
+Power-Thermal : 2943.526856058919 W
+###########
+I :54.4 A
+
+E : 54.18124628241826 V
+FC Efficiency : 0.3935810635377766
+FC Power : 2939.275977094149 W
+FC Voltage : 54.03080840246597 V
+PH2 : 2.0345087461297795 atm
+PO2 : 2.021025150195612 atm
+Power-Thermal : 2948.9800229058505 W
+###########
+I :54.5 A
+
+E : 54.181043273351946 V
+FC Efficiency : 0.393576738501682
+FC Power : 2944.646699052344 W
+FC Voltage : 54.030214661510904 V
+PH2 : 2.0342614594133663 atm
+PO2 : 2.0208855322433217 atm
+Power-Thermal : 2954.4333009476554 W
+###########
+I :54.6 A
+
+E : 54.1808402419637 V
+FC Efficiency : 0.393572414474522
+FC Power : 2950.017309824806 W
+FC Voltage : 54.02962105906238 V
+PH2 : 2.034014172696953 atm
+PO2 : 2.020745914291031 atm
+Power-Thermal : 2959.886690175194 W
+###########
+I :54.7 A
+
+E : 54.18063718824842 V
+FC Efficiency : 0.3935680914519722
+FC Power : 2955.387809420613 W
+FC Voltage : 54.02902759452674 V
+PH2 : 2.03376688598054 atm
+PO2 : 2.020606296338741 atm
+Power-Thermal : 2965.340190579387 W
+###########
+I :54.8 A
+
+E : 54.18043411220099 V
+FC Efficiency : 0.3935637694297312
+FC Power : 2960.7581978487797 W
+FC Voltage : 54.0284342673135 V
+PH2 : 2.0335195992641264 atm
+PO2 : 2.0204666783864513 atm
+Power-Thermal : 2970.7938021512196 W
+###########
+I :54.9 A
+
+E : 54.180231013816325 V
+FC Efficiency : 0.3935594484035215
+FC Power : 2966.1284751182648 W
+FC Voltage : 54.02784107683543 V
+PH2 : 2.0332723125477137 atm
+PO2 : 2.0203270604341608 atm
+Power-Thermal : 2976.2475248817345 W
+###########
+I :55.0 A
+
+E : 54.18002789308931 V
+FC Efficiency : 0.3935551283690884
+FC Power : 2971.498641237965 W
+FC Voltage : 54.02724802250845 V
+PH2 : 2.0330250258313 atm
+PO2 : 2.0201874424818707 atm
+Power-Thermal : 2981.701358762035 W
+###########
+I :55.1 A
+
+E : 54.17982475001483 V
+FC Efficiency : 0.3935508093222
+FC Power : 2976.868696216714 W
+FC Voltage : 54.026655103751615 V
+PH2 : 2.032777739114887 atm
+PO2 : 2.0200478245295805 atm
+Power-Thermal : 2987.155303783286 W
+###########
+I :55.2 A
+
+E : 54.17962158458777 V
+FC Efficiency : 0.3935464912586475
+FC Power : 2982.2386400632895 W
+FC Voltage : 54.026062319987126 V
+PH2 : 2.0325304523984737 atm
+PO2 : 2.0199082065772904 atm
+Power-Thermal : 2992.6093599367105 W
+###########
+I :55.3 A
+
+E : 54.17941839680304 V
+FC Efficiency : 0.39354217417424486
+FC Power : 2987.6084727864104 W
+FC Voltage : 54.025469670640334 V
+PH2 : 2.03228316568206 atm
+PO2 : 2.0197685886250003 atm
+Power-Thermal : 2998.063527213589 W
+###########
+I :55.4 A
+
+E : 54.1792151866555 V
+FC Efficiency : 0.39353785806482805
+FC Power : 2992.9781943947337 W
+FC Voltage : 54.0248771551396 V
+PH2 : 2.032035878965647 atm
+PO2 : 2.01962897067271 atm
+Power-Thermal : 3003.517805605266 W
+###########
+I :55.5 A
+
+E : 54.179011954140044 V
+FC Efficiency : 0.3935335429262557
+FC Power : 2998.3478048968595 W
+FC Voltage : 54.02428477291639 V
+PH2 : 2.031788592249234 atm
+PO2 : 2.0194893527204196 atm
+Power-Thermal : 3008.97219510314 W
+###########
+I :55.6 A
+
+E : 54.17880869925155 V
+FC Efficiency : 0.39352922875440866
+FC Power : 3003.71730430133 W
+FC Voltage : 54.02369252340522 V
+PH2 : 2.0315413055328206 atm
+PO2 : 2.0193497347681295 atm
+Power-Thermal : 3014.42669569867 W
+###########
+I :55.7 A
+
+E : 54.178605421984905 V
+FC Efficiency : 0.39352491554518937
+FC Power : 3009.0866926166286 W
+FC Voltage : 54.023100406043596 V
+PH2 : 2.0312940188164075 atm
+PO2 : 2.01921011681584 atm
+Power-Thermal : 3019.8813073833717 W
+###########
+I :55.8 A
+
+E : 54.17840212233497 V
+FC Efficiency : 0.3935206032945223
+FC Power : 3014.4559698511794 W
+FC Voltage : 54.02250842027203 V
+PH2 : 2.0310467320999943 atm
+PO2 : 2.0190704988635493 atm
+Power-Thermal : 3025.33603014882 W
+###########
+I :55.9 A
+
+E : 54.17819880029664 V
+FC Efficiency : 0.39351629199835403
+FC Power : 3019.8251360133527 W
+FC Voltage : 54.02191656553404 V
+PH2 : 2.0307994453835807 atm
+PO2 : 2.018930880911259 atm
+Power-Thermal : 3030.790863986647 W
+###########
+I :56.0 A
+
+E : 54.1779954558648 V
+FC Efficiency : 0.3935119816526521
+FC Power : 3025.1941911114604 W
+FC Voltage : 54.021324841276076 V
+PH2 : 2.030552158667168 atm
+PO2 : 2.018791262958969 atm
+Power-Thermal : 3036.2458088885396 W
+###########
+I :56.1 A
+
+E : 54.17779208903429 V
+FC Efficiency : 0.3935076722534053
+FC Power : 3030.563135153754 W
+FC Voltage : 54.020733246947486 V
+PH2 : 2.0303048719507544 atm
+PO2 : 2.018651645006679 atm
+Power-Thermal : 3041.7008648462456 W
+###########
+I :56.2 A
+
+E : 54.17758869980001 V
+FC Efficiency : 0.3935033637966245
+FC Power : 3035.9319681484344 W
+FC Voltage : 54.02014178200061 V
+PH2 : 2.030057585234341 atm
+PO2 : 2.018512027054389 atm
+Power-Thermal : 3047.156031851566 W
+###########
+I :56.3 A
+
+E : 54.1773852881568 V
+FC Efficiency : 0.3934990562783405
+FC Power : 3041.3006901036397 W
+FC Voltage : 54.01955044589058 V
+PH2 : 2.029810298517928 atm
+PO2 : 2.0183724091020987 atm
+Power-Thermal : 3052.6113098963597 W
+###########
+I :56.4 A
+
+E : 54.17718185409955 V
+FC Efficiency : 0.3934947496946059
+FC Power : 3046.6693010274585 W
+FC Voltage : 54.0189592380755 V
+PH2 : 2.029563011801515 atm
+PO2 : 2.018232791149808 atm
+Power-Thermal : 3058.0666989725414 W
+###########
+I :56.5 A
+
+E : 54.17697839762313 V
+FC Efficiency : 0.3934904440414939
+FC Power : 3052.03780092792 W
+FC Voltage : 54.01836815801629 V
+PH2 : 2.0293157250851017 atm
+PO2 : 2.0180931731975185 atm
+Power-Thermal : 3063.5221990720793 W
+###########
+I :56.6 A
+
+E : 54.17677491872237 V
+FC Efficiency : 0.39348613931509774
+FC Power : 3057.4061898129967 W
+FC Voltage : 54.01777720517662 V
+PH2 : 2.0290684383686886 atm
+PO2 : 2.0179535552452283 atm
+Power-Thermal : 3068.977810187003 W
+###########
+I :56.7 A
+
+E : 54.17657141739218 V
+FC Efficiency : 0.39348183551153204
+FC Power : 3062.7744676906113 W
+FC Voltage : 54.01718637902312 V
+PH2 : 2.028821151652275 atm
+PO2 : 2.017813937292938 atm
+Power-Thermal : 3074.4335323093887 W
+###########
+I :56.8 A
+
+E : 54.17636789362738 V
+FC Efficiency : 0.39347753262693097
+FC Power : 3068.142634568625 W
+FC Voltage : 54.01659567902509 V
+PH2 : 2.0285738649358622 atm
+PO2 : 2.0176743193406477 atm
+Power-Thermal : 3079.8893654313747 W
+###########
+I :56.9 A
+
+E : 54.17616434742285 V
+FC Efficiency : 0.3934732306574494
+FC Power : 3073.5106904548497 W
+FC Voltage : 54.01600510465465 V
+PH2 : 2.0283265782194486 atm
+PO2 : 2.017534701388358 atm
+Power-Thermal : 3085.34530954515 W
+###########
+I :57.0 A
+
+E : 54.17596077877343 V
+FC Efficiency : 0.39346892959926183
+FC Power : 3078.87863535704 W
+FC Voltage : 54.015414655386664 V
+PH2 : 2.0280792915030355 atm
+PO2 : 2.0173950834360674 atm
+Power-Thermal : 3090.80136464296 W
+###########
+I :57.1 A
+
+E : 54.175757187673995 V
+FC Efficiency : 0.39346462944856314
+FC Power : 3084.2464692828985 W
+FC Voltage : 54.014824330698744 V
+PH2 : 2.0278320047866223 atm
+PO2 : 2.0172554654837773 atm
+Power-Thermal : 3096.2575307171014 W
+###########
+I :57.2 A
+
+E : 54.17555357411938 V
+FC Efficiency : 0.39346033020156745
+FC Power : 3089.6141922400716 W
+FC Voltage : 54.01423413007118 V
+PH2 : 2.0275847180702087 atm
+PO2 : 2.017115847531487 atm
+Power-Thermal : 3101.7138077599284 W
+###########
+I :57.3 A
+
+E : 54.17534993810443 V
+FC Efficiency : 0.3934560318545089
+FC Power : 3094.981804236154 W
+FC Voltage : 54.01364405298698 V
+PH2 : 2.0273374313537955 atm
+PO2 : 2.0169762295791966 atm
+Power-Thermal : 3107.1701957638456 W
+###########
+I :57.4 A
+
+E : 54.17514627962403 V
+FC Efficiency : 0.3934517344036411
+FC Power : 3100.349305278689 W
+FC Voltage : 54.01305409893186 V
+PH2 : 2.0270901446373824 atm
+PO2 : 2.016836611626907 atm
+Power-Thermal : 3112.6266947213107 W
+###########
+I :57.5 A
+
+E : 54.17494259867299 V
+FC Efficiency : 0.3934474378452369
+FC Power : 3105.716695375162 W
+FC Voltage : 54.01246426739412 V
+PH2 : 2.026842857920969 atm
+PO2 : 2.016696993674617 atm
+Power-Thermal : 3118.0833046248376 W
+###########
+I :57.6 A
+
+E : 54.17473889524618 V
+FC Efficiency : 0.3934431421755882
+FC Power : 3111.0839745330095 W
+FC Voltage : 54.01187455786475 V
+PH2 : 2.026595571204556 atm
+PO2 : 2.0165573757223263 atm
+Power-Thermal : 3123.5400254669903 W
+###########
+I :57.7 A
+
+E : 54.17453516933841 V
+FC Efficiency : 0.39343884739100626
+FC Power : 3116.451142759615 W
+FC Voltage : 54.01128496983734 V
+PH2 : 2.026348284488143 atm
+PO2 : 2.016417757770036 atm
+Power-Thermal : 3128.9968572403855 W
+###########
+I :57.8 A
+
+E : 54.174331420944576 V
+FC Efficiency : 0.39343455348782136
+FC Power : 3121.8182000623087 W
+FC Voltage : 54.01069550280811 V
+PH2 : 2.0261009977717293 atm
+PO2 : 2.0162781398177465 atm
+Power-Thermal : 3134.4537999376907 W
+###########
+I :57.9 A
+
+E : 54.174127650059475 V
+FC Efficiency : 0.39343026046238216
+FC Power : 3127.1851464483702 W
+FC Voltage : 54.010106156275825 V
+PH2 : 2.0258537110553165 atm
+PO2 : 2.016138521865456 atm
+Power-Thermal : 3139.9108535516293 W
+###########
+I :58.0 A
+
+E : 54.17392385667795 V
+FC Efficiency : 0.39342596831105653
+FC Power : 3132.5519819250267 W
+FC Voltage : 54.00951692974184 V
+PH2 : 2.025606424338903 atm
+PO2 : 2.015998903913166 atm
+Power-Thermal : 3145.368018074973 W
+###########
+I :58.1 A
+
+E : 54.173720040794855 V
+FC Efficiency : 0.39342167703023057
+FC Power : 3137.9187064994544 W
+FC Voltage : 54.008927822710056 V
+PH2 : 2.0253591376224898 atm
+PO2 : 2.0158592859608757 atm
+Power-Thermal : 3150.8252935005453 W
+###########
+I :58.2 A
+
+E : 54.173516202405004 V
+FC Efficiency : 0.39341738661630893
+FC Power : 3143.285320178777 W
+FC Voltage : 54.00833883468689 V
+PH2 : 2.0251118509060766 atm
+PO2 : 2.0157196680085856 atm
+Power-Thermal : 3156.282679821223 W
+###########
+I :58.3 A
+
+E : 54.17331234150325 V
+FC Efficiency : 0.3934130970657146
+FC Power : 3148.65182297007 W
+FC Voltage : 54.007749965181304 V
+PH2 : 2.0248645641896634 atm
+PO2 : 2.0155800500562955 atm
+Power-Thermal : 3161.7401770299293 W
+###########
+I :58.4 A
+
+E : 54.173108458084414 V
+FC Efficiency : 0.39340880837488873
+FC Power : 3154.018214880356 W
+FC Voltage : 54.00716121370473 V
+PH2 : 2.0246172774732503 atm
+PO2 : 2.0154404321040054 atm
+Power-Thermal : 3167.1977851196434 W
+###########
+I :58.5 A
+
+E : 54.17290455214332 V
+FC Efficiency : 0.39340452054029046
+FC Power : 3159.3844959166076 W
+FC Voltage : 54.006572579771074 V
+PH2 : 2.024369990756837 atm
+PO2 : 2.015300814151715 atm
+Power-Thermal : 3172.655504083392 W
+###########
+I :58.6 A
+
+E : 54.17270062367481 V
+FC Efficiency : 0.39340023355839693
+FC Power : 3164.7506660857484 W
+FC Voltage : 54.00598406289673 V
+PH2 : 2.0241227040404235 atm
+PO2 : 2.015161196199425 atm
+Power-Thermal : 3178.1133339142516 W
+###########
+I :58.7 A
+
+E : 54.17249667267369 V
+FC Efficiency : 0.39339594742570305
+FC Power : 3170.11672539465 W
+FC Voltage : 54.00539566260051 V
+PH2 : 2.0238754173240108 atm
+PO2 : 2.015021578247135 atm
+Power-Thermal : 3183.5712746053496 W
+###########
+I :58.8 A
+
+E : 54.17229269913479 V
+FC Efficiency : 0.3933916621387215
+FC Power : 3175.482673850137 W
+FC Voltage : 54.00480737840369 V
+PH2 : 2.023628130607597 atm
+PO2 : 2.0148819602948445 atm
+Power-Thermal : 3189.0293261498628 W
+###########
+I :58.9 A
+
+E : 54.17208870305294 V
+FC Efficiency : 0.3933873776939826
+FC Power : 3180.8485114589826 W
+FC Voltage : 54.00421920982993 V
+PH2 : 2.023380843891184 atm
+PO2 : 2.0147423423425543 atm
+Power-Thermal : 3194.487488541017 W
+###########
+I :59.0 A
+
+E : 54.17188468442296 V
+FC Efficiency : 0.3933830940880338
+FC Power : 3186.214238227911 W
+FC Voltage : 54.00363115640528 V
+PH2 : 2.023133557174771 atm
+PO2 : 2.014602724390264 atm
+Power-Thermal : 3199.945761772088 W
+###########
+I :59.1 A
+
+E : 54.17168064323967 V
+FC Efficiency : 0.3933788113174402
+FC Power : 3191.5798541635995 W
+FC Voltage : 54.003043217658195 V
+PH2 : 2.0228862704583572 atm
+PO2 : 2.014463106437974 atm
+Power-Thermal : 3205.4041458364004 W
+###########
+I :59.2 A
+
+E : 54.17147657949786 V
+FC Efficiency : 0.39337452937878403
+FC Power : 3196.945359272673 W
+FC Voltage : 54.002455393119476 V
+PH2 : 2.022638983741944 atm
+PO2 : 2.014323488485684 atm
+Power-Thermal : 3210.862640727327 W
+###########
+I :59.3 A
+
+E : 54.17127249319239 V
+FC Efficiency : 0.3933702482686647
+FC Power : 3202.3107535617114 W
+FC Voltage : 54.001867682322285 V
+PH2 : 2.022391697025531 atm
+PO2 : 2.014183870533394 atm
+Power-Thermal : 3216.321246438288 W
+###########
+I :59.4 A
+
+E : 54.171068384318026 V
+FC Efficiency : 0.3933659679836982
+FC Power : 3207.676037037244 W
+FC Voltage : 54.00128008480209 V
+PH2 : 2.0221444103091177 atm
+PO2 : 2.0140442525811033 atm
+Power-Thermal : 3221.7799629627552 W
+###########
+I :59.5 A
+
+E : 54.170864252869606 V
+FC Efficiency : 0.393361688520518
+FC Power : 3213.041209705754 W
+FC Voltage : 54.00069260009671 V
+PH2 : 2.0218971235927046 atm
+PO2 : 2.0139046346288136 atm
+Power-Thermal : 3227.2387902942455 W
+###########
+I :59.6 A
+
+E : 54.170660098841935 V
+FC Efficiency : 0.3933574098757739
+FC Power : 3218.406271573676 W
+FC Voltage : 54.00010522774624 V
+PH2 : 2.0216498368762914 atm
+PO2 : 2.0137650166765235 atm
+Power-Thermal : 3232.697728426324 W
+###########
+I :59.7 A
+
+E : 54.17045592222981 V
+FC Efficiency : 0.3933531320461324
+FC Power : 3223.771222647396 W
+FC Voltage : 53.99951796729306 V
+PH2 : 2.021402550159878 atm
+PO2 : 2.013625398724233 atm
+Power-Thermal : 3238.1567773526044 W
+###########
+I :59.8 A
+
+E : 54.170251723028066 V
+FC Efficiency : 0.39334885502827693
+FC Power : 3229.1360629332553 W
+FC Voltage : 53.99893081828186 V
+PH2 : 2.021155263443465 atm
+PO2 : 2.013485780771943 atm
+Power-Thermal : 3243.615937066744 W
+###########
+I :59.9 A
+
+E : 54.170047501231466 V
+FC Efficiency : 0.3933445788189066
+FC Power : 3234.500792437544 W
+FC Voltage : 53.9983437802595 V
+PH2 : 2.0209079767270515 atm
+PO2 : 2.013346162819653 atm
+Power-Thermal : 3249.0752075624555 W
+###########
+I :60.0 A
+
+E : 54.16984325683484 V
+FC Efficiency : 0.3933403034147376
+FC Power : 3239.8654111665105 W
+FC Voltage : 53.997756852775176 V
+PH2 : 2.0206606900106383 atm
+PO2 : 2.0132065448673626 atm
+Power-Thermal : 3254.534588833489 W
+###########
+I :60.1 A
+
+E : 54.16963898983297 V
+FC Efficiency : 0.39333602881250174
+FC Power : 3245.229919126353 W
+FC Voltage : 53.99717003538024 V
+PH2 : 2.020413403294225 atm
+PO2 : 2.0130669269150725 atm
+Power-Thermal : 3259.9940808736474 W
+###########
+I :60.2 A
+
+E : 54.16943470022067 V
+FC Efficiency : 0.3933317550089473
+FC Power : 3250.594316323223 W
+FC Voltage : 53.99658332762829 V
+PH2 : 2.020166116577812 atm
+PO2 : 2.0129273089627824 atm
+Power-Thermal : 3265.453683676777 W
+###########
+I :60.3 A
+
+E : 54.16923038799272 V
+FC Efficiency : 0.3933274820008382
+FC Power : 3255.9586027632267 W
+FC Voltage : 53.995996729075074 V
+PH2 : 2.019918829861399 atm
+PO2 : 2.0127876910104923 atm
+Power-Thermal : 3270.9133972367727 W
+###########
+I :60.4 A
+
+E : 54.16902605314393 V
+FC Efficiency : 0.3933232097849549
+FC Power : 3261.322778452428 W
+FC Voltage : 53.995410239278606 V
+PH2 : 2.0196715431449856 atm
+PO2 : 2.012648073058202 atm
+Power-Thermal : 3276.373221547572 W
+###########
+I :60.5 A
+
+E : 54.16882169566908 V
+FC Efficiency : 0.3933189383580927
+FC Power : 3266.686843396837 W
+FC Voltage : 53.99482385779896 V
+PH2 : 2.019424256428572 atm
+PO2 : 2.012508455105912 atm
+Power-Thermal : 3281.8331566031625 W
+###########
+I :60.6 A
+
+E : 54.16861731556297 V
+FC Efficiency : 0.3933146677170633
+FC Power : 3272.0507976024264 W
+FC Voltage : 53.99423758419845 V
+PH2 : 2.0191769697121593 atm
+PO2 : 2.0123688371536215 atm
+Power-Thermal : 3287.2932023975736 W
+###########
+I :60.7 A
+
+E : 54.16841291282038 V
+FC Efficiency : 0.3933103978586938
+FC Power : 3277.4146410751187 W
+FC Voltage : 53.99365141804149 V
+PH2 : 2.0189296829957457 atm
+PO2 : 2.0122292192013314 atm
+Power-Thermal : 3292.7533589248815 W
+###########
+I :60.8 A
+
+E : 54.16820848743611 V
+FC Efficiency : 0.3933061287798267
+FC Power : 3282.778373820792 W
+FC Voltage : 53.993065358894604 V
+PH2 : 2.0186823962793325 atm
+PO2 : 2.0120896012490417 atm
+Power-Thermal : 3298.2136261792075 W
+###########
+I :60.9 A
+
+E : 54.168004039404934 V
+FC Efficiency : 0.3933018604773197
+FC Power : 3288.1419958452807 W
+FC Voltage : 53.992479406326446 V
+PH2 : 2.0184351095629194 atm
+PO2 : 2.011949983296751 atm
+Power-Thermal : 3303.674004154719 W
+###########
+I :61.0 A
+
+E : 54.16779956872163 V
+FC Efficiency : 0.393297592948046
+FC Power : 3293.5055071543734 W
+FC Voltage : 53.99189355990776 V
+PH2 : 2.0181878228465058 atm
+PO2 : 2.011810365344461 atm
+Power-Thermal : 3309.1344928456265 W
+###########
+I :61.1 A
+
+E : 54.16759507538099 V
+FC Efficiency : 0.39329332618889407
+FC Power : 3298.868907753815 W
+FC Voltage : 53.99130781921138 V
+PH2 : 2.0179405361300926 atm
+PO2 : 2.011670747392171 atm
+Power-Thermal : 3314.5950922461843 W
+###########
+I :61.2 A
+
+E : 54.16739055937779 V
+FC Efficiency : 0.3932890601967672
+FC Power : 3304.2321976493067 W
+FC Voltage : 53.990722183812196 V
+PH2 : 2.0176932494136794 atm
+PO2 : 2.0115311294398808 atm
+Power-Thermal : 3320.0558023506933 W
+###########
+I :61.3 A
+
+E : 54.16718602070681 V
+FC Efficiency : 0.39328479496858354
+FC Power : 3309.5953768465024 W
+FC Voltage : 53.99013665328715 V
+PH2 : 2.0174459626972663 atm
+PO2 : 2.0113915114875907 atm
+Power-Thermal : 3325.516623153497 W
+###########
+I :61.4 A
+
+E : 54.16698145936282 V
+FC Efficiency : 0.3932805305012766
+FC Power : 3314.9584453510165 W
+FC Voltage : 53.98955122721525 V
+PH2 : 2.017198675980853 atm
+PO2 : 2.0112518935353005 atm
+Power-Thermal : 3330.977554648983 W
+###########
+I :61.5 A
+
+E : 54.1667768753406 V
+FC Efficiency : 0.39327626679179417
+FC Power : 3320.3214031684165 W
+FC Voltage : 53.9889659051775 V
+PH2 : 2.01695138926444 atm
+PO2 : 2.01111227558301 atm
+Power-Thermal : 3336.4385968315833 W
+###########
+I :61.6 A
+
+E : 54.16657226863492 V
+FC Efficiency : 0.393272003837099
+FC Power : 3325.684250304228 W
+FC Voltage : 53.98838068675695 V
+PH2 : 2.0167041025480263 atm
+PO2 : 2.0109726576307203 atm
+Power-Thermal : 3341.899749695772 W
+###########
+I :61.7 A
+
+E : 54.166367639240555 V
+FC Efficiency : 0.39326774163416817
+FC Power : 3331.0469867639326 W
+FC Voltage : 53.98779557153861 V
+PH2 : 2.0164568158316136 atm
+PO2 : 2.01083303967843 atm
+Power-Thermal : 3347.3610132360673 W
+###########
+I :61.8 A
+
+E : 54.16616298715227 V
+FC Efficiency : 0.39326348017999363
+FC Power : 3336.4096125529686 W
+FC Voltage : 53.98721055910953 V
+PH2 : 2.0162095291152 atm
+PO2 : 2.0106934217261396 atm
+Power-Thermal : 3352.822387447031 W
+###########
+I :61.9 A
+
+E : 54.16595831236482 V
+FC Efficiency : 0.3932592194715814
+FC Power : 3341.7721276767334 W
+FC Voltage : 53.986625649058695 V
+PH2 : 2.015962242398787 atm
+PO2 : 2.0105538037738495 atm
+Power-Thermal : 3358.283872323266 W
+###########
+I :62.0 A
+
+E : 54.16575361487298 V
+FC Efficiency : 0.39325495950595185
+FC Power : 3347.1345321405784 W
+FC Voltage : 53.98604084097707 V
+PH2 : 2.0157149556823737 atm
+PO2 : 2.01041418582156 atm
+Power-Thermal : 3363.7454678594213 W
+###########
+I :62.1 A
+
+E : 54.165548894671524 V
+FC Efficiency : 0.3932507002801397
+FC Power : 3352.4968259498155 W
+FC Voltage : 53.98545613445758 V
+PH2 : 2.0154676689659605 atm
+PO2 : 2.0102745678692693 atm
+Power-Thermal : 3369.207174050184 W
+###########
+I :62.2 A
+
+E : 54.16534415175519 V
+FC Efficiency : 0.3932464417911936
+FC Power : 3357.859009109713 W
+FC Voltage : 53.98487152909506 V
+PH2 : 2.0152203822495474 atm
+PO2 : 2.010134949916979 atm
+Power-Thermal : 3374.668990890287 W
+###########
+I :62.3 A
+
+E : 54.16513938611876 V
+FC Efficiency : 0.3932421840361764
+FC Power : 3363.2210816254965 W
+FC Voltage : 53.9842870244863 V
+PH2 : 2.014973095533134 atm
+PO2 : 2.009995331964689 atm
+Power-Thermal : 3380.130918374503 W
+###########
+I :62.4 A
+
+E : 54.16493459775697 V
+FC Efficiency : 0.3932379270121647
+FC Power : 3368.5830435023504 W
+FC Voltage : 53.98370262022998 V
+PH2 : 2.0147258088167206 atm
+PO2 : 2.009855714012399 atm
+Power-Thermal : 3385.592956497649 W
+###########
+I :62.5 A
+
+E : 54.16472978666459 V
+FC Efficiency : 0.3932336707162492
+FC Power : 3373.9448947454184 W
+FC Voltage : 53.983118315926696 V
+PH2 : 2.014478522100308 atm
+PO2 : 2.009716096060109 atm
+Power-Thermal : 3391.055105254581 W
+###########
+I :62.6 A
+
+E : 54.164524952836366 V
+FC Efficiency : 0.39322941514553417
+FC Power : 3379.306635359801 W
+FC Voltage : 53.98253411117893 V
+PH2 : 2.0142312353838943 atm
+PO2 : 2.0095764781078187 atm
+Power-Thermal : 3396.517364640199 W
+###########
+I :62.7 A
+
+E : 54.164320096267055 V
+FC Efficiency : 0.39322516029713744
+FC Power : 3384.6682653505577 W
+FC Voltage : 53.98195000559103 V
+PH2 : 2.013983948667481 atm
+PO2 : 2.009436860155528 atm
+Power-Thermal : 3401.979734649442 W
+###########
+I :62.8 A
+
+E : 54.1641152169514 V
+FC Efficiency : 0.3932209061681908
+FC Power : 3390.029784722708 W
+FC Voltage : 53.981365998769235 V
+PH2 : 2.013736661951068 atm
+PO2 : 2.0092972422032385 atm
+Power-Thermal : 3407.442215277292 W
+###########
+I :62.9 A
+
+E : 54.163910314884156 V
+FC Efficiency : 0.39321665275583906
+FC Power : 3395.391193481228 W
+FC Voltage : 53.98078209032159 V
+PH2 : 2.0134893752346543 atm
+PO2 : 2.0091576242509483 atm
+Power-Thermal : 3412.9048065187717 W
+###########
+I :63.0 A
+
+E : 54.163705390060066 V
+FC Efficiency : 0.3932124000572409
+FC Power : 3400.752491631056 W
+FC Voltage : 53.98019827985803 V
+PH2 : 2.013242088518241 atm
+PO2 : 2.009018006298658 atm
+Power-Thermal : 3418.3675083689436 W
+###########
+I :63.1 A
+
+E : 54.163500442473875 V
+FC Efficiency : 0.393208148069568
+FC Power : 3406.113679177088 W
+FC Voltage : 53.9796145669903 V
+PH2 : 2.012994801801828 atm
+PO2 : 2.0088783883463677 atm
+Power-Thermal : 3423.8303208229117 W
+###########
+I :63.2 A
+
+E : 54.163295472120325 V
+FC Efficiency : 0.3932038967900054
+FC Power : 3411.474756124179 W
+FC Voltage : 53.97903095133194 V
+PH2 : 2.012747515085415 atm
+PO2 : 2.0087387703940776 atm
+Power-Thermal : 3429.293243875821 W
+###########
+I :63.3 A
+
+E : 54.16309047899415 V
+FC Efficiency : 0.39319964621575126
+FC Power : 3416.8357224771444 W
+FC Voltage : 53.978447432498335 V
+PH2 : 2.0125002283690017 atm
+PO2 : 2.0085991524417874 atm
+Power-Thermal : 3434.756277522855 W
+###########
+I :63.4 A
+
+E : 54.1628854630901 V
+FC Efficiency : 0.393195396344017
+FC Power : 3422.1965782407615 W
+FC Voltage : 53.97786401010665 V
+PH2 : 2.0122529416525885 atm
+PO2 : 2.0084595344894973 atm
+Power-Thermal : 3440.219421759238 W
+###########
+I :63.5 A
+
+E : 54.162680424402915 V
+FC Efficiency : 0.3931911471720267
+FC Power : 3427.557323419765 W
+FC Voltage : 53.977280683775824 V
+PH2 : 2.012005654936175 atm
+PO2 : 2.008319916537207 atm
+Power-Thermal : 3445.682676580235 W
+###########
+I :63.6 A
+
+E : 54.16247536292731 V
+FC Efficiency : 0.39318689869701756
+FC Power : 3432.9179580188497 W
+FC Voltage : 53.97669745312657 V
+PH2 : 2.011758368219762 atm
+PO2 : 2.0081802985849166 atm
+Power-Thermal : 3451.14604198115 W
+###########
+I :63.7 A
+
+E : 54.16227027865803 V
+FC Efficiency : 0.39318265091623955
+FC Power : 3438.278482042673 W
+FC Voltage : 53.97611431778137 V
+PH2 : 2.0115110815033486 atm
+PO2 : 2.008040680632627 atm
+Power-Thermal : 3456.6095179573267 W
+###########
+I :63.8 A
+
+E : 54.1620651715898 V
+FC Efficiency : 0.3931784038269554
+FC Power : 3443.638895495851 W
+FC Voltage : 53.97553127736444 V
+PH2 : 2.0112637947869354 atm
+PO2 : 2.007901062680337 atm
+Power-Thermal : 3462.0731045041484 W
+###########
+I :63.9 A
+
+E : 54.16186004171737 V
+FC Efficiency : 0.3931741574264406
+FC Power : 3448.9991983829627 W
+FC Voltage : 53.974948331501764 V
+PH2 : 2.0110165080705222 atm
+PO2 : 2.0077614447280463 atm
+Power-Thermal : 3467.536801617037 W
+###########
+I :64.0 A
+
+E : 54.16165488903544 V
+FC Efficiency : 0.39316991171198307
+FC Power : 3454.3593907085465 W
+FC Voltage : 53.97436547982104 V
+PH2 : 2.010769221354109 atm
+PO2 : 2.007621826775756 atm
+Power-Thermal : 3473.000609291453 W
+###########
+I :64.1 A
+
+E : 54.161449713538744 V
+FC Efficiency : 0.39316566668088326
+FC Power : 3459.719472477101 W
+FC Voltage : 53.97378272195166 V
+PH2 : 2.010521934637696 atm
+PO2 : 2.0074822088234665 atm
+Power-Thermal : 3478.464527522898 W
+###########
+I :64.2 A
+
+E : 54.161244515222016 V
+FC Efficiency : 0.39316142233045426
+FC Power : 3465.0794436930896 W
+FC Voltage : 53.97320005752476 V
+PH2 : 2.0102746479212827 atm
+PO2 : 2.007342590871176 atm
+Power-Thermal : 3483.9285563069107 W
+###########
+I :64.3 A
+
+E : 54.16103929407998 V
+FC Efficiency : 0.3931571786580213
+FC Power : 3470.4393043609343 W
+FC Voltage : 53.972617486173164 V
+PH2 : 2.010027361204869 atm
+PO2 : 2.007202972918886 atm
+Power-Thermal : 3489.392695639065 W
+###########
+I :64.4 A
+
+E : 54.16083405010733 V
+FC Efficiency : 0.3931529356609218
+FC Power : 3475.799054485019 W
+FC Voltage : 53.972035007531346 V
+PH2 : 2.009780074488456 atm
+PO2 : 2.0070633549665957 atm
+Power-Thermal : 3494.8569455149814 W
+###########
+I :64.5 A
+
+E : 54.16062878329881 V
+FC Efficiency : 0.3931486933365056
+FC Power : 3481.1586940696893 W
+FC Voltage : 53.97145262123549 V
+PH2 : 2.009532787772043 atm
+PO2 : 2.0069237370143056 atm
+Power-Thermal : 3500.3213059303102 W
+###########
+I :64.6 A
+
+E : 54.16042349364912 V
+FC Efficiency : 0.3931444516821346
+FC Power : 3486.518223119254 W
+FC Voltage : 53.97087032692344 V
+PH2 : 2.0092855010556296 atm
+PO2 : 2.0067841190620155 atm
+Power-Thermal : 3505.7857768807453 W
+###########
+I :64.7 A
+
+E : 54.16021818115299 V
+FC Efficiency : 0.39314021069518285
+FC Power : 3491.877641637985 W
+FC Voltage : 53.9702881242347 V
+PH2 : 2.0090382143392165 atm
+PO2 : 2.0066445011097254 atm
+Power-Thermal : 3511.2503583620146 W
+###########
+I :64.8 A
+
+E : 54.16001284580512 V
+FC Efficiency : 0.393135970373036
+FC Power : 3497.2369496301126 W
+FC Voltage : 53.969706012810384 V
+PH2 : 2.008790927622803 atm
+PO2 : 2.006504883157435 atm
+Power-Thermal : 3516.7150503698867 W
+###########
+I :64.9 A
+
+E : 54.15980748760022 V
+FC Efficiency : 0.3931317307130921
+FC Power : 3502.5961470998345 W
+FC Voltage : 53.969123992293284 V
+PH2 : 2.0085436409063897 atm
+PO2 : 2.0063652652051447 atm
+Power-Thermal : 3522.1798529001658 W
+###########
+I :65.0 A
+
+E : 54.15960210653301 V
+FC Efficiency : 0.3931274917127606
+FC Power : 3507.955234051306 W
+FC Voltage : 53.968542062327785 V
+PH2 : 2.0082963541899765 atm
+PO2 : 2.006225647252855 atm
+Power-Thermal : 3527.6447659486935 W
+###########
+I :65.1 A
+
+E : 54.15939670259818 V
+FC Efficiency : 0.393123253369463
+FC Power : 3513.3142104886483 W
+FC Voltage : 53.96796022255989 V
+PH2 : 2.0080490674735634 atm
+PO2 : 2.0060860293005645 atm
+Power-Thermal : 3533.1097895113508 W
+###########
+I :65.2 A
+
+E : 54.15919127579045 V
+FC Efficiency : 0.3931190156806325
+FC Power : 3518.6730764159474 W
+FC Voltage : 53.96737847263723 V
+PH2 : 2.00780178075715 atm
+PO2 : 2.0059464113482743 atm
+Power-Thermal : 3538.5749235840526 W
+###########
+I :65.3 A
+
+E : 54.15898582610451 V
+FC Efficiency : 0.3931147786437135
+FC Power : 3524.031831837247 W
+FC Voltage : 53.96679681220899 V
+PH2 : 2.007554494040737 atm
+PO2 : 2.0058067933959842 atm
+Power-Thermal : 3544.0401681627523 W
+###########
+I :65.4 A
+
+E : 54.15878035353507 V
+FC Efficiency : 0.3931105422561624
+FC Power : 3529.390476756559 W
+FC Voltage : 53.966215240925976 V
+PH2 : 2.0073072073243234 atm
+PO2 : 2.005667175443694 atm
+Power-Thermal : 3549.505523243441 W
+###########
+I :65.5 A
+
+E : 54.15857485807683 V
+FC Efficiency : 0.3931063065154469
+FC Power : 3534.749011177856 W
+FC Voltage : 53.96563375844055 V
+PH2 : 2.0070599206079107 atm
+PO2 : 2.005527557491404 atm
+Power-Thermal : 3554.970988822143 W
+###########
+I :65.6 A
+
+E : 54.15836933972448 V
+FC Efficiency : 0.393102071419046
+FC Power : 3540.107435105075 W
+FC Voltage : 53.96505236440664 V
+PH2 : 2.006812633891497 atm
+PO2 : 2.005387939539114 atm
+Power-Thermal : 3560.436564894924 W
+###########
+I :65.7 A
+
+E : 54.15816379847272 V
+FC Efficiency : 0.39309783696445016
+FC Power : 3545.465748542118 W
+FC Voltage : 53.964471058479724 V
+PH2 : 2.006565347175084 atm
+PO2 : 2.0052483215868233 atm
+Power-Thermal : 3565.902251457882 W
+###########
+I :65.8 A
+
+E : 54.15795823431625 V
+FC Efficiency : 0.3930936031491612
+FC Power : 3550.8239514928487 W
+FC Voltage : 53.96388984031685 V
+PH2 : 2.006318060458671 atm
+PO2 : 2.0051087036345336 atm
+Power-Thermal : 3571.3680485071504 W
+###########
+I :65.9 A
+
+E : 54.157752647249744 V
+FC Efficiency : 0.3930893699706918
+FC Power : 3556.1820439610965 W
+FC Voltage : 53.96330870957657 V
+PH2 : 2.0060707737422576 atm
+PO2 : 2.0049690856822435 atm
+Power-Thermal : 3576.8339560389036 W
+###########
+I :66.0 A
+
+E : 54.1575470372679 V
+FC Efficiency : 0.3930851374265661
+FC Power : 3561.5400259506537 W
+FC Voltage : 53.962727665919 V
+PH2 : 2.0058234870258445 atm
+PO2 : 2.004829467729953 atm
+Power-Thermal : 3582.299974049346 W
+###########
+I :66.1 A
+
+E : 54.15734140436542 V
+FC Efficiency : 0.39308090551431907
+FC Power : 3566.8978974652778 W
+FC Voltage : 53.96214670900572 V
+PH2 : 2.0055762003094313 atm
+PO2 : 2.004689849777663 atm
+Power-Thermal : 3587.766102534721 W
+###########
+I :66.2 A
+
+E : 54.15713574853697 V
+FC Efficiency : 0.3930766742314968
+FC Power : 3572.2556585086922 W
+FC Voltage : 53.96156583849988 V
+PH2 : 2.0053289135930177 atm
+PO2 : 2.004550231825373 atm
+Power-Thermal : 3593.2323414913076 W
+###########
+I :66.3 A
+
+E : 54.15693006977724 V
+FC Efficiency : 0.3930724435756562
+FC Power : 3577.613309084581 W
+FC Voltage : 53.96098505406608 V
+PH2 : 2.0050816268766045 atm
+PO2 : 2.0044106138730826 atm
+Power-Thermal : 3598.6986909154184 W
+###########
+I :66.4 A
+
+E : 54.15672436808092 V
+FC Efficiency : 0.39306821354436516
+FC Power : 3582.970849196598 W
+FC Voltage : 53.96040435537045 V
+PH2 : 2.0048343401601914 atm
+PO2 : 2.0042709959207925 atm
+Power-Thermal : 3604.165150803402 W
+###########
+I :66.5 A
+
+E : 54.15651864344268 V
+FC Efficiency : 0.39306398413520227
+FC Power : 3588.3282788483575 W
+FC Voltage : 53.959823742080566 V
+PH2 : 2.004587053443778 atm
+PO2 : 2.0041313779685024 atm
+Power-Thermal : 3609.631721151642 W
+###########
+I :66.6 A
+
+E : 54.156312895857205 V
+FC Efficiency : 0.39305975534575693
+FC Power : 3593.685598043443 W
+FC Voltage : 53.95924321386551 V
+PH2 : 2.004339766727365 atm
+PO2 : 2.003991760016212 atm
+Power-Thermal : 3615.0984019565562 W
+###########
+I :66.7 A
+
+E : 54.15610712531917 V
+FC Efficiency : 0.393055527173629
+FC Power : 3599.0428067854 W
+FC Voltage : 53.9586627703958 V
+PH2 : 2.0040924800109514 atm
+PO2 : 2.003852142063922 atm
+Power-Thermal : 3620.5651932146 W
+###########
+I :66.8 A
+
+E : 54.155901331823245 V
+FC Efficiency : 0.39305129961642926
+FC Power : 3604.3999050777397 W
+FC Voltage : 53.95808241134341 V
+PH2 : 2.0038451932945383 atm
+PO2 : 2.003712524111632 atm
+Power-Thermal : 3626.0320949222596 W
+###########
+I :66.9 A
+
+E : 54.15569551536411 V
+FC Efficiency : 0.3930470726717789
+FC Power : 3609.7568929239433 W
+FC Voltage : 53.957502136381805 V
+PH2 : 2.003597906578125 atm
+PO2 : 2.0035729061593415 atm
+Power-Thermal : 3631.499107076057 W
+###########
+I :67.0 A
+
+E : 54.15548967593642 V
+FC Efficiency : 0.3930428463373092
+FC Power : 3615.113770327449 W
+FC Voltage : 53.956921945185805 V
+PH2 : 2.003350619861712 atm
+PO2 : 2.0034332882070514 atm
+Power-Thermal : 3636.9662296725505 W
+###########
+I :67.1 A
+
+E : 54.155283813534865 V
+FC Efficiency : 0.3930386206106624
+FC Power : 3620.4705372916696 W
+FC Voltage : 53.956341837431744 V
+PH2 : 2.0031033331452988 atm
+PO2 : 2.0032936702547617 atm
+Power-Thermal : 3642.4334627083294 W
+###########
+I :67.2 A
+
+E : 54.1550779281541 V
+FC Efficiency : 0.39303439548949104
+FC Power : 3625.8271938199805 W
+FC Voltage : 53.95576181279733 V
+PH2 : 2.0028560464288856 atm
+PO2 : 2.003154052302471 atm
+Power-Thermal : 3647.9008061800196 W
+###########
+I :67.3 A
+
+E : 54.1548720197888 V
+FC Efficiency : 0.39303017097145754
+FC Power : 3631.1837399157216 W
+FC Voltage : 53.95518187096169 V
+PH2 : 2.002608759712472 atm
+PO2 : 2.003014434350181 atm
+Power-Thermal : 3653.368260084278 W
+###########
+I :67.4 A
+
+E : 54.15466608843361 V
+FC Efficiency : 0.3930259470542347
+FC Power : 3636.5401755822004 W
+FC Voltage : 53.954602011605346 V
+PH2 : 2.0023614729960593 atm
+PO2 : 2.002874816397891 atm
+Power-Thermal : 3658.8358244178 W
+###########
+I :67.5 A
+
+E : 54.1544601340832 V
+FC Efficiency : 0.3930217237355058
+FC Power : 3641.896500822691 W
+FC Voltage : 53.95402223441024 V
+PH2 : 2.0021141862796457 atm
+PO2 : 2.0027351984456008 atm
+Power-Thermal : 3664.3034991773084 W
+###########
+I :67.6 A
+
+E : 54.15425415673223 V
+FC Efficiency : 0.3930175010129638
+FC Power : 3647.2527156404335 W
+FC Voltage : 53.95344253905967 V
+PH2 : 2.0018668995632325 atm
+PO2 : 2.0025955804933107 atm
+Power-Thermal : 3669.7712843595655 W
+###########
+I :67.7 A
+
+E : 54.15404815637537 V
+FC Efficiency : 0.3930132788843121
+FC Power : 3652.6088200386375 W
+FC Voltage : 53.952862925238364 V
+PH2 : 2.0016196128468193 atm
+PO2 : 2.0024559625410205 atm
+Power-Thermal : 3675.2391799613624 W
+###########
+I :67.8 A
+
+E : 54.15384213300726 V
+FC Efficiency : 0.3930090573472637
+FC Power : 3657.9648140204745 W
+FC Voltage : 53.95228339263237 V
+PH2 : 2.001372326130406 atm
+PO2 : 2.00231634458873 atm
+Power-Thermal : 3680.707185979525 W
+###########
+I :67.9 A
+
+E : 54.15363608662254 V
+FC Efficiency : 0.39300483639954165
+FC Power : 3663.320697589085 W
+FC Voltage : 53.95170394092908 V
+PH2 : 2.001125039413993 atm
+PO2 : 2.0021767266364403 atm
+Power-Thermal : 3686.1753024109157 W
+###########
+I :68.0 A
+
+E : 54.153430017215896 V
+FC Efficiency : 0.3930006160388791
+FC Power : 3668.676470747578 W
+FC Voltage : 53.951124569817324 V
+PH2 : 2.0008777526975794 atm
+PO2 : 2.00203710868415 atm
+Power-Thermal : 3691.6435292524216 W
+###########
+I :68.1 A
+
+E : 54.15322392478196 V
+FC Efficiency : 0.3929963962630188
+FC Power : 3674.0321334990294 W
+FC Voltage : 53.95054527898722 V
+PH2 : 2.0006304659811662 atm
+PO2 : 2.0018974907318596 atm
+Power-Thermal : 3697.1118665009694 W
+###########
+I :68.2 A
+
+E : 54.15301780931537 V
+FC Efficiency : 0.39299217706971307
+FC Power : 3679.3876858464805 W
+FC Voltage : 53.94996606813021 V
+PH2 : 2.0003831792647535 atm
+PO2 : 2.0017578727795695 atm
+Power-Thermal : 3702.5803141535193 W
+###########
+I :68.3 A
+
+E : 54.15281167081079 V
+FC Efficiency : 0.3929879584567243
+FC Power : 3684.7431277929413 W
+FC Voltage : 53.94938693693911 V
+PH2 : 2.00013589254834 atm
+PO2 : 2.0016182548272794 atm
+Power-Thermal : 3708.048872207058 W
+###########
+I :68.4 A
+
+E : 54.15260550926286 V
+FC Efficiency : 0.39298374042182443
+FC Power : 3690.098459341391 W
+FC Voltage : 53.94880788510805 V
+PH2 : 1.9998886058319265 atm
+PO2 : 2.0014786368749893 atm
+Power-Thermal : 3713.517540658609 W
+###########
+I :68.5 A
+
+E : 54.152399324666206 V
+FC Efficiency : 0.3929795229627946
+FC Power : 3695.453680494772 W
+FC Voltage : 53.94822891233244 V
+PH2 : 1.9996413191155136 atm
+PO2 : 2.001339018922699 atm
+Power-Thermal : 3718.9863195052276 W
+###########
+I :68.6 A
+
+E : 54.15219311701549 V
+FC Efficiency : 0.392975306077426
+FC Power : 3700.808791256 W
+FC Voltage : 53.94765001830904 V
+PH2 : 1.9993940323991002 atm
+PO2 : 2.001199400970409 atm
+Power-Thermal : 3724.4552087439993 W
+###########
+I :68.7 A
+
+E : 54.15198688630534 V
+FC Efficiency : 0.3929710897635191
+FC Power : 3706.1637916279565 W
+FC Voltage : 53.9470712027359 V
+PH2 : 1.999146745682687 atm
+PO2 : 2.0010597830181185 atm
+Power-Thermal : 3729.9242083720437 W
+###########
+I :68.8 A
+
+E : 54.1517806325304 V
+FC Efficiency : 0.3929668740188836
+FC Power : 3711.5186816134888 W
+FC Voltage : 53.94649246531234 V
+PH2 : 1.9988994589662736 atm
+PO2 : 2.000920165065829 atm
+Power-Thermal : 3735.3933183865106 W
+###########
+I :68.9 A
+
+E : 54.15157435568528 V
+FC Efficiency : 0.39296265884133863
+FC Power : 3716.8734612154153 W
+FC Voltage : 53.94591380573897 V
+PH2 : 1.9986521722498605 atm
+PO2 : 2.0007805471135387 atm
+Power-Thermal : 3740.862538784585 W
+###########
+I :69.0 A
+
+E : 54.151368055764635 V
+FC Efficiency : 0.392958444228713
+FC Power : 3722.228130436523 W
+FC Voltage : 53.94533522371772 V
+PH2 : 1.998404885533447 atm
+PO2 : 2.000640929161248 atm
+Power-Thermal : 3746.331869563477 W
+###########
+I :69.1 A
+
+E : 54.151161732763086 V
+FC Efficiency : 0.3929542301788441
+FC Power : 3727.582689279564 W
+FC Voltage : 53.94475671895172 V
+PH2 : 1.9981575988170341 atm
+PO2 : 2.000501311208958 atm
+Power-Thermal : 3751.801310720435 W
+###########
+I :69.2 A
+
+E : 54.150955386675285 V
+FC Efficiency : 0.3929500166895793
+FC Power : 3732.937137747265 W
+FC Voltage : 53.94417829114544 V
+PH2 : 1.9979103121006208 atm
+PO2 : 2.0003616932566683 atm
+Power-Thermal : 3757.2708622527352 W
+###########
+I :69.3 A
+
+E : 54.150749017495826 V
+FC Efficiency : 0.3929458037587744
+FC Power : 3738.291475842315 W
+FC Voltage : 53.943599940004546 V
+PH2 : 1.9976630253842076 atm
+PO2 : 2.000222075304378 atm
+Power-Thermal : 3762.7405241576844 W
+###########
+I :69.4 A
+
+E : 54.150542625219344 V
+FC Efficiency : 0.3929415913842945
+FC Power : 3743.6457035673757 W
+FC Voltage : 53.94302166523595 V
+PH2 : 1.9974157386677942 atm
+PO2 : 2.0000824573520877 atm
+Power-Thermal : 3768.210296432625 W
+###########
+I :69.5 A
+
+E : 54.15033620984047 V
+FC Efficiency : 0.39293737956401403
+FC Power : 3748.9998209250757 W
+FC Voltage : 53.94244346654785 V
+PH2 : 1.9971684519513813 atm
+PO2 : 1.9999428393997973 atm
+Power-Thermal : 3773.680179074924 W
+###########
+I :69.6 A
+
+E : 54.15012977135382 V
+FC Efficiency : 0.39293316829581626
+FC Power : 3754.353827918016 W
+FC Voltage : 53.94186534364966 V
+PH2 : 1.9969211652349679 atm
+PO2 : 1.9998032214475074 atm
+Power-Thermal : 3779.150172081983 W
+###########
+I :69.7 A
+
+E : 54.149923309754016 V
+FC Efficiency : 0.3929289575775932
+FC Power : 3759.7077245487644 W
+FC Voltage : 53.941287296252 V
+PH2 : 1.9966738785185545 atm
+PO2 : 1.9996636034952173 atm
+Power-Thermal : 3784.6202754512356 W
+###########
+I :69.8 A
+
+E : 54.14971682503567 V
+FC Efficiency : 0.3929247474072459
+FC Power : 3765.061510819857 W
+FC Voltage : 53.940709324066724 V
+PH2 : 1.9964265918021413 atm
+PO2 : 1.999523985542927 atm
+Power-Thermal : 3790.090489180142 W
+###########
+I :69.9 A
+
+E : 54.149510317193396 V
+FC Efficiency : 0.3929205377826844
+FC Power : 3770.4151867338032 W
+FC Voltage : 53.94013142680691 V
+PH2 : 1.9961793050857284 atm
+PO2 : 1.9993843675906369 atm
+Power-Thermal : 3795.5608132661973 W
+###########
+I :70.0 A
+
+E : 54.14930378622182 V
+FC Efficiency : 0.392916328701827
+FC Power : 3775.768752293077 W
+FC Voltage : 53.93955360418681 V
+PH2 : 1.995932018369315 atm
+PO2 : 1.9992447496383465 atm
+Power-Thermal : 3801.031247706923 W
+###########
+I :70.1 A
+
+E : 54.14909723211554 V
+FC Efficiency : 0.3929121201626013
+FC Power : 3781.1222075001256 W
+FC Voltage : 53.93897585592191 V
+PH2 : 1.9956847316529016 atm
+PO2 : 1.9991051316860566 atm
+Power-Thermal : 3806.5017924998733 W
+###########
+I :70.2 A
+
+E : 54.148890654869156 V
+FC Efficiency : 0.39290791216294335
+FC Power : 3786.4755523573663 W
+FC Voltage : 53.938398181728864 V
+PH2 : 1.9954374449364884 atm
+PO2 : 1.9989655137337665 atm
+Power-Thermal : 3811.9724476426336 W
+###########
+I :70.3 A
+
+E : 54.14868405447731 V
+FC Efficiency : 0.3929037047007979
+FC Power : 3791.8287868671846 W
+FC Voltage : 53.93782058132553 V
+PH2 : 1.9951901582200753 atm
+PO2 : 1.9988258957814762 atm
+Power-Thermal : 3817.4432131328144 W
+###########
+I :70.4 A
+
+E : 54.14847743093457 V
+FC Efficiency : 0.3928994977741179
+FC Power : 3797.1819110319366 W
+FC Voltage : 53.937243054430915 V
+PH2 : 1.9949428715036621 atm
+PO2 : 1.998686277829186 atm
+Power-Thermal : 3822.9140889680634 W
+###########
+I :70.5 A
+
+E : 54.14827078423556 V
+FC Efficiency : 0.3928952913808656
+FC Power : 3802.5349248539487 W
+FC Voltage : 53.93666560076523 V
+PH2 : 1.9946955847872487 atm
+PO2 : 1.998546659876896 atm
+Power-Thermal : 3828.385075146051 W
+###########
+I :70.6 A
+
+E : 54.148064114374876 V
+FC Efficiency : 0.39289108551901103
+FC Power : 3807.8878283355184 W
+FC Voltage : 53.93608822004984 V
+PH2 : 1.9944482980708356 atm
+PO2 : 1.9984070419246058 atm
+Power-Thermal : 3833.856171664481 W
+###########
+I :70.7 A
+
+E : 54.14785742134712 V
+FC Efficiency : 0.392886880186533
+FC Power : 3813.240621478913 W
+FC Voltage : 53.93551091200725 V
+PH2 : 1.9942010113544222 atm
+PO2 : 1.9982674239723155 atm
+Power-Thermal : 3839.327378521087 W
+###########
+I :70.8 A
+
+E : 54.1476507051469 V
+FC Efficiency : 0.39288267538141874
+FC Power : 3818.5933042863708 W
+FC Voltage : 53.93493367636117 V
+PH2 : 1.993953724638009 atm
+PO2 : 1.9981278060200254 atm
+Power-Thermal : 3844.7986957136286 W
+###########
+I :70.9 A
+
+E : 54.14744396576878 V
+FC Efficiency : 0.39287847110166346
+FC Power : 3823.945876760098 W
+FC Voltage : 53.93435651283636 V
+PH2 : 1.9937064379215956 atm
+PO2 : 1.9979881880677355 atm
+Power-Thermal : 3850.270123239902 W
+###########
+I :71.0 A
+
+E : 54.147237203207396 V
+FC Efficiency : 0.39287426734527114
+FC Power : 3829.2983389022766 W
+FC Voltage : 53.933779421158825 V
+PH2 : 1.9934591512051827 atm
+PO2 : 1.9978485701154451 atm
+Power-Thermal : 3855.741661097723 W
+###########
+I :71.1 A
+
+E : 54.1470304174573 V
+FC Efficiency : 0.3928700641102536
+FC Power : 3834.650690715054 W
+FC Voltage : 53.93320240105562 V
+PH2 : 1.9932118644887693 atm
+PO2 : 1.997708952163155 atm
+Power-Thermal : 3861.213309284945 W
+###########
+I :71.2 A
+
+E : 54.14682360851311 V
+FC Efficiency : 0.39286586139463125
+FC Power : 3840.0029322005544 W
+FC Voltage : 53.932625452254975 V
+PH2 : 1.9929645777723561 atm
+PO2 : 1.9975693342108647 atm
+Power-Thermal : 3866.6850677994457 W
+###########
+I :71.3 A
+
+E : 54.1466167763694 V
+FC Efficiency : 0.3928616591964323
+FC Power : 3845.3550633608675 W
+FC Voltage : 53.932048574486224 V
+PH2 : 1.9927172910559428 atm
+PO2 : 1.9974297162585748 atm
+Power-Thermal : 3872.156936639132 W
+###########
+I :71.4 A
+
+E : 54.146409921020776 V
+FC Efficiency : 0.39285745751369344
+FC Power : 3850.7070841980603 W
+FC Voltage : 53.931471767479835 V
+PH2 : 1.9924700043395298 atm
+PO2 : 1.9972900983062847 atm
+Power-Thermal : 3877.62891580194 W
+###########
+I :71.5 A
+
+E : 54.14620304246179 V
+FC Efficiency : 0.3928532563444589
+FC Power : 3856.058994714163 W
+FC Voltage : 53.930895030967314 V
+PH2 : 1.9922227176231164 atm
+PO2 : 1.9971504803539943 atm
+Power-Thermal : 3883.101005285837 W
+###########
+I :71.6 A
+
+E : 54.14599614068704 V
+FC Efficiency : 0.3928490556867813
+FC Power : 3861.4107949111835 W
+FC Voltage : 53.93031836468134 V
+PH2 : 1.9919754309067033 atm
+PO2 : 1.997010862401704 atm
+Power-Thermal : 3888.5732050888155 W
+###########
+I :71.7 A
+
+E : 54.14578921569111 V
+FC Efficiency : 0.39284485553872145
+FC Power : 3866.7624847911025 W
+FC Voltage : 53.92974176835568 V
+PH2 : 1.9917281441902899 atm
+PO2 : 1.9968712444494139 atm
+Power-Thermal : 3894.0455152088975 W
+###########
+I :71.8 A
+
+E : 54.14558226746858 V
+FC Efficiency : 0.39284065589834766
+FC Power : 3872.1140643558665 W
+FC Voltage : 53.929165241725165 V
+PH2 : 1.9914808574738765 atm
+PO2 : 1.996731626497124 atm
+Power-Thermal : 3899.5179356441326 W
+###########
+I :71.9 A
+
+E : 54.14537529601402 V
+FC Efficiency : 0.3928364567637362
+FC Power : 3877.4655336073984 W
+FC Voltage : 53.9285887845257 V
+PH2 : 1.9912335707574635 atm
+PO2 : 1.9965920085448337 atm
+Power-Thermal : 3904.9904663926022 W
+###########
+I :72.0 A
+
+E : 54.14516830132201 V
+FC Efficiency : 0.39283225813297135
+FC Power : 3882.8168925475898 W
+FC Voltage : 53.9280123964943 V
+PH2 : 1.9909862840410504 atm
+PO2 : 1.9964523905925435 atm
+Power-Thermal : 3910.46310745241 W
+###########
+I :72.1 A
+
+E : 54.14496128338712 V
+FC Efficiency : 0.39282806000414505
+FC Power : 3888.168141178307 W
+FC Voltage : 53.92743607736903 V
+PH2 : 1.990738997324637 atm
+PO2 : 1.9963127726402536 atm
+Power-Thermal : 3915.9358588216924 W
+###########
+I :72.2 A
+
+E : 54.14475424220391 V
+FC Efficiency : 0.39282386237535705
+FC Power : 3893.519279501387 W
+FC Voltage : 53.926859826889014 V
+PH2 : 1.9904917106082236 atm
+PO2 : 1.9961731546879633 atm
+Power-Thermal : 3921.408720498613 W
+###########
+I :72.3 A
+
+E : 54.14454717776696 V
+FC Efficiency : 0.39281966524471484
+FC Power : 3898.8703075186386 W
+FC Voltage : 53.92628364479445 V
+PH2 : 1.9902444238918107 atm
+PO2 : 1.9960335367356732 atm
+Power-Thermal : 3926.8816924813605 W
+###########
+I :72.4 A
+
+E : 54.14434009007084 V
+FC Efficiency : 0.39281546861033356
+FC Power : 3904.2212252318454 W
+FC Voltage : 53.92570753082659 V
+PH2 : 1.9899971371753973 atm
+PO2 : 1.9958939187833828 atm
+Power-Thermal : 3932.3547747681546 W
+###########
+I :72.5 A
+
+E : 54.144132979110104 V
+FC Efficiency : 0.39281127247033587
+FC Power : 3909.5720326427586 W
+FC Voltage : 53.92513148472771 V
+PH2 : 1.9897498504589841 atm
+PO2 : 1.9957543008310927 atm
+Power-Thermal : 3937.827967357241 W
+###########
+I :72.6 A
+
+E : 54.14392584487932 V
+FC Efficiency : 0.3928070768228522
+FC Power : 3914.9227297531074 W
+FC Voltage : 53.924555506241155 V
+PH2 : 1.9895025637425707 atm
+PO2 : 1.9956146828788026 atm
+Power-Thermal : 3943.3012702468914 W
+###########
+I :72.7 A
+
+E : 54.14371868737305 V
+FC Efficiency : 0.3928028816660205
+FC Power : 3920.273316564591 W
+FC Voltage : 53.92397959511129 V
+PH2 : 1.9892552770261576 atm
+PO2 : 1.9954750649265125 atm
+Power-Thermal : 3948.774683435409 W
+###########
+I :72.8 A
+
+E : 54.14351150658585 V
+FC Efficiency : 0.3927986869979859
+FC Power : 3925.6237930788793 W
+FC Voltage : 53.92340375108351 V
+PH2 : 1.9890079903097442 atm
+PO2 : 1.9953354469742222 atm
+Power-Thermal : 3954.2482069211196 W
+###########
+I :72.9 A
+
+E : 54.14330430251228 V
+FC Efficiency : 0.39279449281690154
+FC Power : 3930.9741592976193 W
+FC Voltage : 53.92282797390424 V
+PH2 : 1.9887607035933312 atm
+PO2 : 1.995195829021932 atm
+Power-Thermal : 3959.7218407023806 W
+###########
+I :73.0 A
+
+E : 54.14309707514689 V
+FC Efficiency : 0.39279029912092744
+FC Power : 3936.3244152224274 W
+FC Voltage : 53.92225226332092 V
+PH2 : 1.9885134168769178 atm
+PO2 : 1.9950562110696421 atm
+Power-Thermal : 3965.1955847775725 W
+###########
+I :73.1 A
+
+E : 54.14288982448425 V
+FC Efficiency : 0.39278610590823143
+FC Power : 3941.674560854895 W
+FC Voltage : 53.921676619082014 V
+PH2 : 1.9882661301605047 atm
+PO2 : 1.9949165931173518 atm
+Power-Thermal : 3970.669439145104 W
+###########
+I :73.2 A
+
+E : 54.142682550518884 V
+FC Efficiency : 0.39278191317698846
+FC Power : 3947.0245961965866 W
+FC Voltage : 53.921101040936975 V
+PH2 : 1.9880188434440913 atm
+PO2 : 1.9947769751650617 atm
+Power-Thermal : 3976.143403803413 W
+###########
+I :73.3 A
+
+E : 54.14247525324536 V
+FC Efficiency : 0.39277772092538055
+FC Power : 3952.3745212490367 W
+FC Voltage : 53.92052552863625 V
+PH2 : 1.9877715567276784 atm
+PO2 : 1.9946373572127714 atm
+Power-Thermal : 3981.6174787509626 W
+###########
+I :73.4 A
+
+E : 54.142267932658214 V
+FC Efficiency : 0.3927735291515975
+FC Power : 3957.7243360137586 W
+FC Voltage : 53.91995008193131 V
+PH2 : 1.987524270011265 atm
+PO2 : 1.9944977392604812 atm
+Power-Thermal : 3987.0916639862417 W
+###########
+I :73.5 A
+
+E : 54.14206058875199 V
+FC Efficiency : 0.392769337853836
+FC Power : 3963.0740404922335 W
+FC Voltage : 53.91937470057461 V
+PH2 : 1.9872769832948516 atm
+PO2 : 1.9943581213081913 atm
+Power-Thermal : 3992.565959507766 W
+###########
+I :73.6 A
+
+E : 54.14185322152126 V
+FC Efficiency : 0.3927651470303001
+FC Power : 3968.423634685922 W
+FC Voltage : 53.9187993843196 V
+PH2 : 1.9870296965784384 atm
+PO2 : 1.994218503355901 atm
+Power-Thermal : 3998.040365314077 W
+###########
+I :73.7 A
+
+E : 54.14164583096052 V
+FC Efficiency : 0.3927609566792005
+FC Power : 3973.773118596252 W
+FC Voltage : 53.91822413292065 V
+PH2 : 1.9867824098620255 atm
+PO2 : 1.9940788854036107 atm
+Power-Thermal : 4003.514881403748 W
+###########
+I :73.8 A
+
+E : 54.14143841706434 V
+FC Efficiency : 0.39275676679875576
+FC Power : 3979.1224922246297 W
+FC Voltage : 53.9176489461332 V
+PH2 : 1.986535123145612 atm
+PO2 : 1.9939392674513208 atm
+Power-Thermal : 4008.9895077753695 W
+###########
+I :73.9 A
+
+E : 54.14123097982725 V
+FC Efficiency : 0.39275257738719094
+FC Power : 3984.4717555724333 W
+FC Voltage : 53.91707382371357 V
+PH2 : 1.9862878364291987 atm
+PO2 : 1.9937996494990307 atm
+Power-Thermal : 4014.464244427567 W
+###########
+I :74.0 A
+
+E : 54.14102351924378 V
+FC Efficiency : 0.39274838844273824
+FC Power : 3989.820908641014 W
+FC Voltage : 53.91649876541911 V
+PH2 : 1.9860405497127855 atm
+PO2 : 1.9936600315467403 atm
+Power-Thermal : 4019.939091358986 W
+###########
+I :74.1 A
+
+E : 54.140816035308475 V
+FC Efficiency : 0.3927441999636371
+FC Power : 3995.1699514317 W
+FC Voltage : 53.9159237710081 V
+PH2 : 1.9857932629963722 atm
+PO2 : 1.9935204135944502 atm
+Power-Thermal : 4025.4140485682988 W
+###########
+I :74.2 A
+
+E : 54.14060852801586 V
+FC Efficiency : 0.3927400119481335
+FC Power : 4000.5188839457915 W
+FC Voltage : 53.91534884023977 V
+PH2 : 1.9855459762799592 atm
+PO2 : 1.9933807956421599 atm
+Power-Thermal : 4030.8891160542084 W
+###########
+I :74.3 A
+
+E : 54.14040099736046 V
+FC Efficiency : 0.3927358243944807
+FC Power : 4005.867706184561 W
+FC Voltage : 53.91477397287431 V
+PH2 : 1.9852986895635458 atm
+PO2 : 1.99324117768987 atm
+Power-Thermal : 4036.3642938154385 W
+###########
+I :74.4 A
+
+E : 54.1401934433368 V
+FC Efficiency : 0.39273163730093846
+FC Power : 4011.2164181492594 W
+FC Voltage : 53.91419916867284 V
+PH2 : 1.9850514028471327 atm
+PO2 : 1.9931015597375799 atm
+Power-Thermal : 4041.8395818507406 W
+###########
+I :74.5 A
+
+E : 54.139985865939416 V
+FC Efficiency : 0.39272745066577386
+FC Power : 4016.565019841109 W
+FC Voltage : 53.91362442739744 V
+PH2 : 1.9848041161307193 atm
+PO2 : 1.9929619417852895 atm
+Power-Thermal : 4047.3149801588906 W
+###########
+I :74.6 A
+
+E : 54.139778265162825 V
+FC Efficiency : 0.3927232644872604
+FC Power : 4021.913511261308 W
+FC Voltage : 53.913049748811105 V
+PH2 : 1.9845568294143061 atm
+PO2 : 1.9928223238329992 atm
+Power-Thermal : 4052.790488738691 W
+###########
+I :74.7 A
+
+E : 54.13957064100155 V
+FC Efficiency : 0.3927190787636784
+FC Power : 4027.2618924110297 W
+FC Voltage : 53.91247513267777 V
+PH2 : 1.984309542697893 atm
+PO2 : 1.9926827058807093 atm
+Power-Thermal : 4058.2661075889705 W
+###########
+I :74.8 A
+
+E : 54.139362993450106 V
+FC Efficiency : 0.392714893493315
+FC Power : 4032.6101632914188 W
+FC Voltage : 53.911900578762285 V
+PH2 : 1.9840622559814798 atm
+PO2 : 1.9925430879284192 atm
+Power-Thermal : 4063.7418367085806 W
+###########
+I :74.9 A
+
+E : 54.13915532250303 V
+FC Efficiency : 0.39271070867446406
+FC Power : 4037.958323903599 W
+FC Voltage : 53.91132608683043 V
+PH2 : 1.9838149692650664 atm
+PO2 : 1.9924034699761288 atm
+Power-Thermal : 4069.2176760964007 W
+###########
+I :75.0 A
+
+E : 54.13894762815481 V
+FC Efficiency : 0.39270652430542596
+FC Power : 4043.3063742486656 W
+FC Voltage : 53.91075165664888 V
+PH2 : 1.9835676825486532 atm
+PO2 : 1.9922638520238387 atm
+Power-Thermal : 4074.693625751334 W
+###########
+I :75.1 A
+
+E : 54.13873991039998 V
+FC Efficiency : 0.3927023403845077
+FC Power : 4048.65431432769 W
+FC Voltage : 53.91017728798522 V
+PH2 : 1.9833203958322398 atm
+PO2 : 1.9921242340715488 atm
+Power-Thermal : 4080.1696856723092 W
+###########
+I :75.2 A
+
+E : 54.13853216923304 V
+FC Efficiency : 0.3926981569100231
+FC Power : 4054.00214414172 W
+FC Voltage : 53.90960298060797 V
+PH2 : 1.9830731091158265 atm
+PO2 : 1.9919846161192585 atm
+Power-Thermal : 4085.6458558582804 W
+###########
+I :75.3 A
+
+E : 54.13832440464849 V
+FC Efficiency : 0.39269397388029215
+FC Power : 4059.349863691774 W
+FC Voltage : 53.90902873428651 V
+PH2 : 1.9828258223994135 atm
+PO2 : 1.9918449981669684 atm
+Power-Thermal : 4091.1221363082254 W
+###########
+I :75.4 A
+
+E : 54.138116616640865 V
+FC Efficiency : 0.3926897912936418
+FC Power : 4064.697472978852 W
+FC Voltage : 53.90845454879114 V
+PH2 : 1.9825785356830004 atm
+PO2 : 1.991705380214678 atm
+Power-Thermal : 4096.598527021148 W
+###########
+I :75.5 A
+
+E : 54.13790880520465 V
+FC Efficiency : 0.392685609148405
+FC Power : 4070.0449720039246 W
+FC Voltage : 53.90788042389304 V
+PH2 : 1.982331248966587 atm
+PO2 : 1.9915657622623881 atm
+Power-Thermal : 4102.075027996075 W
+###########
+I :75.6 A
+
+E : 54.13770097033436 V
+FC Efficiency : 0.39268142744292156
+FC Power : 4075.392360767939 W
+FC Voltage : 53.90730635936428 V
+PH2 : 1.9820839622501736 atm
+PO2 : 1.9914261443100978 atm
+Power-Thermal : 4107.55163923206 W
+###########
+I :75.7 A
+
+E : 54.137493112024494 V
+FC Efficiency : 0.3926772461755376
+FC Power : 4080.73963927182 W
+FC Voltage : 53.906732354977805 V
+PH2 : 1.9818366755337606 atm
+PO2 : 1.9912865263578077 atm
+Power-Thermal : 4113.02836072818 W
+###########
+I :75.8 A
+
+E : 54.13728523026955 V
+FC Efficiency : 0.39267306534460533
+FC Power : 4086.0868075164626 W
+FC Voltage : 53.90615841050742 V
+PH2 : 1.9815893888173475 atm
+PO2 : 1.9911469084055173 atm
+Power-Thermal : 4118.505192483537 W
+###########
+I :75.9 A
+
+E : 54.13707732506402 V
+FC Efficiency : 0.39266888494848373
+FC Power : 4091.4338655027436 W
+FC Voltage : 53.905584525727846 V
+PH2 : 1.981342102100934 atm
+PO2 : 1.9910072904532272 atm
+Power-Thermal : 4123.982134497256 W
+###########
+I :76.0 A
+
+E : 54.1368693964024 V
+FC Efficiency : 0.3926647049855377
+FC Power : 4096.78081323151 W
+FC Voltage : 53.905010700414614 V
+PH2 : 1.9810948153845207 atm
+PO2 : 1.9908676725009373 atm
+Power-Thermal : 4129.4591867684885 W
+###########
+I :76.1 A
+
+E : 54.1366614442792 V
+FC Efficiency : 0.3926605254541387
+FC Power : 4102.12765070359 W
+FC Voltage : 53.90443693434416 V
+PH2 : 1.9808475286681078 atm
+PO2 : 1.990728054548647 atm
+Power-Thermal : 4134.9363492964085 W
+###########
+I :76.2 A
+
+E : 54.1364534686889 V
+FC Efficiency : 0.3926563463526644
+FC Power : 4107.474377919785 W
+FC Voltage : 53.90386322729377 V
+PH2 : 1.9806002419516944 atm
+PO2 : 1.9905884365963569 atm
+Power-Thermal : 4140.413622080215 W
+###########
+I :76.3 A
+
+E : 54.136245469625976 V
+FC Efficiency : 0.39265216767949834
+FC Power : 4112.820994880869 W
+FC Voltage : 53.903289579041534 V
+PH2 : 1.9803529552352812 atm
+PO2 : 1.9904488186440665 atm
+Power-Thermal : 4145.891005119131 W
+###########
+I :76.4 A
+
+E : 54.136037447084945 V
+FC Efficiency : 0.39264798943303086
+FC Power : 4118.167501587599 W
+FC Voltage : 53.90271598936648 V
+PH2 : 1.9801056685188678 atm
+PO2 : 1.9903092006917766 atm
+Power-Thermal : 4151.368498412401 W
+###########
+I :76.5 A
+
+E : 54.13582940106027 V
+FC Efficiency : 0.3926438116116579
+FC Power : 4123.513898040702 W
+FC Voltage : 53.902142458048395 V
+PH2 : 1.9798583818024547 atm
+PO2 : 1.9901695827394865 atm
+Power-Thermal : 4156.846101959298 W
+###########
+I :76.6 A
+
+E : 54.13562133154644 V
+FC Efficiency : 0.39263963421378173
+FC Power : 4128.860184240884 W
+FC Voltage : 53.90156898486795 V
+PH2 : 1.9796110950860415 atm
+PO2 : 1.9900299647871962 atm
+Power-Thermal : 4162.323815759114 W
+###########
+I :76.7 A
+
+E : 54.13541323853795 V
+FC Efficiency : 0.3926354572378107
+FC Power : 4134.20636018883 W
+FC Voltage : 53.90099556960665 V
+PH2 : 1.9793638083696283 atm
+PO2 : 1.9898903468349058 atm
+Power-Thermal : 4167.8016398111695 W
+###########
+I :76.8 A
+
+E : 54.13520512202926 V
+FC Efficiency : 0.3926312806821592
+FC Power : 4139.552425885195 W
+FC Voltage : 53.90042221204681 V
+PH2 : 1.979116521653215 atm
+PO2 : 1.989750728882616 atm
+Power-Thermal : 4173.279574114804 W
+###########
+I :76.9 A
+
+E : 54.13499698201486 V
+FC Efficiency : 0.39262710454524763
+FC Power : 4144.898381330616 W
+FC Voltage : 53.899848911971596 V
+PH2 : 1.9788692349368018 atm
+PO2 : 1.9896111109303258 atm
+Power-Thermal : 4178.757618669384 W
+###########
+I :77.0 A
+
+E : 54.13478881848923 V
+FC Efficiency : 0.39262292882550237
+FC Power : 4150.244226525702 W
+FC Voltage : 53.899275669164965 V
+PH2 : 1.9786219482203884 atm
+PO2 : 1.9894714929780355 atm
+Power-Thermal : 4184.235773474297 W
+###########
+I :77.1 A
+
+E : 54.134580631446816 V
+FC Efficiency : 0.3926187535213557
+FC Power : 4155.589961471043 W
+FC Voltage : 53.89870248341172 V
+PH2 : 1.9783746615039755 atm
+PO2 : 1.9893318750257454 atm
+Power-Thermal : 4189.714038528956 W
+###########
+I :77.2 A
+
+E : 54.13437242088213 V
+FC Efficiency : 0.39261457863124605
+FC Power : 4160.935586167205 W
+FC Voltage : 53.89812935449746 V
+PH2 : 1.978127374787562 atm
+PO2 : 1.9891922570734555 atm
+Power-Thermal : 4195.192413832796 W
+###########
+I :77.3 A
+
+E : 54.134164186789604 V
+FC Efficiency : 0.39261040415361736
+FC Power : 4166.281100614725 W
+FC Voltage : 53.8975562822086 V
+PH2 : 1.9778800880711487 atm
+PO2 : 1.9890526391211651 atm
+Power-Thermal : 4200.670899385274 W
+###########
+I :77.4 A
+
+E : 54.13395592916374 V
+FC Efficiency : 0.39260623008692
+FC Power : 4171.626504814127 W
+FC Voltage : 53.89698326633238 V
+PH2 : 1.9776328013547355 atm
+PO2 : 1.988913021168875 atm
+Power-Thermal : 4206.149495185874 W
+###########
+I :77.5 A
+
+E : 54.13374764799898 V
+FC Efficiency : 0.3926020564296095
+FC Power : 4176.971798765901 W
+FC Voltage : 53.89641030665679 V
+PH2 : 1.9773855146383226 atm
+PO2 : 1.9887734032165847 atm
+Power-Thermal : 4211.628201234098 W
+###########
+I :77.6 A
+
+E : 54.1335393432898 V
+FC Efficiency : 0.39259788318014754
+FC Power : 4182.316982470523 W
+FC Voltage : 53.895837402970656 V
+PH2 : 1.9771382279219092 atm
+PO2 : 1.9886337852642946 atm
+Power-Thermal : 4217.107017529476 W
+###########
+I :77.7 A
+
+E : 54.133331015030656 V
+FC Efficiency : 0.3925937103370018
+FC Power : 4187.662055928443 W
+FC Voltage : 53.89526455506361 V
+PH2 : 1.9768909412054958 atm
+PO2 : 1.9884941673120045 atm
+Power-Thermal : 4222.585944071557 W
+###########
+I :77.8 A
+
+E : 54.133122663216 V
+FC Efficiency : 0.39258953789864515
+FC Power : 4193.007019140084 W
+FC Voltage : 53.89469176272601 V
+PH2 : 1.9766436544890826 atm
+PO2 : 1.9883545493597143 atm
+Power-Thermal : 4228.0649808599155 W
+###########
+I :77.9 A
+
+E : 54.1329142878403 V
+FC Efficiency : 0.39258536586355675
+FC Power : 4198.351872105853 W
+FC Voltage : 53.89411902574907 V
+PH2 : 1.9763963677726692 atm
+PO2 : 1.988214931407424 atm
+Power-Thermal : 4233.544127894147 W
+###########
+I :78.0 A
+
+E : 54.13270588889802 V
+FC Efficiency : 0.39258119423022114
+FC Power : 4203.696614826131 W
+FC Voltage : 53.893546343924754 V
+PH2 : 1.9761490810562563 atm
+PO2 : 1.9880753134551339 atm
+Power-Thermal : 4239.0233851738685 W
+###########
+I :78.1 A
+
+E : 54.132497466383604 V
+FC Efficiency : 0.3925770229971283
+FC Power : 4209.041247301275 W
+FC Voltage : 53.89297371704578 V
+PH2 : 1.975901794339843 atm
+PO2 : 1.987935695502844 atm
+Power-Thermal : 4244.502752698724 W
+###########
+I :78.2 A
+
+E : 54.132289020291495 V
+FC Efficiency : 0.3925728521627743
+FC Power : 4214.385769531623 W
+FC Voltage : 53.89240114490566 V
+PH2 : 1.9756545076234298 atm
+PO2 : 1.9877960775505537 atm
+Power-Thermal : 4249.982230468377 W
+###########
+I :78.3 A
+
+E : 54.13208055061616 V
+FC Efficiency : 0.3925686817256607
+FC Power : 4219.730181517488 W
+FC Voltage : 53.89182862729869 V
+PH2 : 1.9754072209070164 atm
+PO2 : 1.9876564595982635 atm
+Power-Thermal : 4255.461818482512 W
+###########
+I :78.4 A
+
+E : 54.131872057352034 V
+FC Efficiency : 0.3925645116842942
+FC Power : 4225.074483259161 W
+FC Voltage : 53.89125616401991 V
+PH2 : 1.9751599341906032 atm
+PO2 : 1.9875168416459732 atm
+Power-Thermal : 4260.941516740839 W
+###########
+I :78.5 A
+
+E : 54.13166354049357 V
+FC Efficiency : 0.3925603420371876
+FC Power : 4230.418674756912 W
+FC Voltage : 53.890683754865115 V
+PH2 : 1.97491264747419 atm
+PO2 : 1.9873772236936833 atm
+Power-Thermal : 4266.421325243088 W
+###########
+I :78.6 A
+
+E : 54.1314550000352 V
+FC Efficiency : 0.3925561727828589
+FC Power : 4235.762756010987 W
+FC Voltage : 53.890111399630875 V
+PH2 : 1.9746653607577769 atm
+PO2 : 1.9872376057413932 atm
+Power-Thermal : 4271.901243989012 W
+###########
+I :78.7 A
+
+E : 54.13124643597138 V
+FC Efficiency : 0.39255200391983175
+FC Power : 4241.106727021611 W
+FC Voltage : 53.8895390981145 V
+PH2 : 1.9744180740413635 atm
+PO2 : 1.9870979877891028 atm
+Power-Thermal : 4277.381272978389 W
+###########
+I :78.8 A
+
+E : 54.13103784829654 V
+FC Efficiency : 0.39254783544663496
+FC Power : 4246.450587788987 W
+FC Voltage : 53.888966850114045 V
+PH2 : 1.9741707873249503 atm
+PO2 : 1.9869583698368125 atm
+Power-Thermal : 4282.861412211013 W
+###########
+I :78.9 A
+
+E : 54.13082923700514 V
+FC Efficiency : 0.39254366736180324
+FC Power : 4251.794338313297 W
+FC Voltage : 53.88839465542835 V
+PH2 : 1.973923500608537 atm
+PO2 : 1.9868187518845226 atm
+Power-Thermal : 4288.341661686703 W
+###########
+I :79.0 A
+
+E : 54.13062060209158 V
+FC Efficiency : 0.3925394996638762
+FC Power : 4257.137978594697 W
+FC Voltage : 53.887822513856925 V
+PH2 : 1.9736762138921236 atm
+PO2 : 1.9866791339322325 atm
+Power-Thermal : 4293.822021405303 W
+###########
+I :79.1 A
+
+E : 54.13041194355031 V
+FC Efficiency : 0.39253533235139904
+FC Power : 4262.481508633325 W
+FC Voltage : 53.88725042520006 V
+PH2 : 1.9734289271757106 atm
+PO2 : 1.9865395159799422 atm
+Power-Thermal : 4299.302491366675 W
+###########
+I :79.2 A
+
+E : 54.13020326137577 V
+FC Efficiency : 0.3925311654229226
+FC Power : 4267.824928429298 W
+FC Voltage : 53.88667838925881 V
+PH2 : 1.9731816404592974 atm
+PO2 : 1.986399898027652 atm
+Power-Thermal : 4304.783071570702 W
+###########
+I :79.3 A
+
+E : 54.12999455556238 V
+FC Efficiency : 0.39252699887700243
+FC Power : 4273.168237982707 W
+FC Voltage : 53.886106405834894 V
+PH2 : 1.972934353742884 atm
+PO2 : 1.9862602800753617 atm
+Power-Thermal : 4310.263762017293 W
+###########
+I :79.4 A
+
+E : 54.12978582610457 V
+FC Efficiency : 0.39252283271219995
+FC Power : 4278.511437293627 W
+FC Voltage : 53.88553447473081 V
+PH2 : 1.9726870670264707 atm
+PO2 : 1.9861206621230718 atm
+Power-Thermal : 4315.7445627063735 W
+###########
+I :79.5 A
+
+E : 54.12957707299677 V
+FC Efficiency : 0.3925186669270815
+FC Power : 4283.854526362105 W
+FC Voltage : 53.88496259574975 V
+PH2 : 1.9724397803100577 atm
+PO2 : 1.9859810441707817 atm
+Power-Thermal : 4321.2254736378945 W
+###########
+I :79.6 A
+
+E : 54.129368296233395 V
+FC Efficiency : 0.39251450152021866
+FC Power : 4289.197505188172 W
+FC Voltage : 53.884390768695624 V
+PH2 : 1.9721924935936446 atm
+PO2 : 1.9858414262184914 atm
+Power-Thermal : 4326.706494811828 W
+###########
+I :79.7 A
+
+E : 54.129159495808864 V
+FC Efficiency : 0.3925103364901884
+FC Power : 4294.540373771833 W
+FC Voltage : 53.88381899337307 V
+PH2 : 1.9719452068772312 atm
+PO2 : 1.985701808266201 atm
+Power-Thermal : 4332.187626228166 W
+###########
+I :79.8 A
+
+E : 54.12895067171761 V
+FC Efficiency : 0.39250617183557296
+FC Power : 4299.883132113078 W
+FC Voltage : 53.88324726958745 V
+PH2 : 1.9716979201608178 atm
+PO2 : 1.9855621903139111 atm
+Power-Thermal : 4337.668867886921 W
+###########
+I :79.9 A
+
+E : 54.128741823954044 V
+FC Efficiency : 0.39250200755495923
+FC Power : 4305.22578021187 W
+FC Voltage : 53.882675597144804 V
+PH2 : 1.9714506334444049 atm
+PO2 : 1.985422572361621 atm
+Power-Thermal : 4343.15021978813 W
+###########
+I :80.0 A
+
+E : 54.12853295251258 V
+FC Efficiency : 0.3924978436469398
+FC Power : 4310.568318068152 W
+FC Voltage : 53.8821039758519 V
+PH2 : 1.9712033467279915 atm
+PO2 : 1.9852829544093307 atm
+Power-Thermal : 4348.631681931848 W
+###########
+I :80.1 A
+
+E : 54.12832405738764 V
+FC Efficiency : 0.3924936801101121
+FC Power : 4315.910745681847 W
+FC Voltage : 53.8815324055162 V
+PH2 : 1.9709560600115783 atm
+PO2 : 1.9851433364570406 atm
+Power-Thermal : 4354.113254318152 W
+###########
+I :80.2 A
+
+E : 54.12811513857361 V
+FC Efficiency : 0.3924895169430787
+FC Power : 4321.253063052857 W
+FC Voltage : 53.880960885945846 V
+PH2 : 1.970708773295165 atm
+PO2 : 1.9850037185047507 atm
+Power-Thermal : 4359.594936947143 W
+###########
+I :80.3 A
+
+E : 54.12790619606493 V
+FC Efficiency : 0.3924853541444472
+FC Power : 4326.595270181062 W
+FC Voltage : 53.88038941694971 V
+PH2 : 1.9704614865787518 atm
+PO2 : 1.9848641005524603 atm
+Power-Thermal : 4365.076729818938 W
+###########
+I :80.4 A
+
+E : 54.127697229856 V
+FC Efficiency : 0.39248119171283025
+FC Power : 4331.937367066323 W
+FC Voltage : 53.87981799833734 V
+PH2 : 1.9702141998623386 atm
+PO2 : 1.9847244826001702 atm
+Power-Thermal : 4370.558632933678 W
+###########
+I :80.5 A
+
+E : 54.12748823994121 V
+FC Efficiency : 0.39247702964684544
+FC Power : 4337.279353708474 W
+FC Voltage : 53.87924662991894 V
+PH2 : 1.9699669131459254 atm
+PO2 : 1.9845848646478799 atm
+Power-Thermal : 4376.040646291525 W
+###########
+I :80.6 A
+
+E : 54.12727922631497 V
+FC Efficiency : 0.39247286794511543
+FC Power : 4342.621230107338 W
+FC Voltage : 53.87867531150545 V
+PH2 : 1.969719626429512 atm
+PO2 : 1.98444524669559 atm
+Power-Thermal : 4381.52276989266 W
+###########
+I :80.7 A
+
+E : 54.12707018897169 V
+FC Efficiency : 0.39246870660626787
+FC Power : 4347.962996262712 W
+FC Voltage : 53.878104042908454 V
+PH2 : 1.9694723397130989 atm
+PO2 : 1.9843056287432999 atm
+Power-Thermal : 4387.005003737288 W
+###########
+I :80.8 A
+
+E : 54.12686112790576 V
+FC Efficiency : 0.39246454562893524
+FC Power : 4353.30465217437 W
+FC Voltage : 53.87753282394023 V
+PH2 : 1.9692250529966855 atm
+PO2 : 1.9841660107910095 atm
+Power-Thermal : 4392.487347825629 W
+###########
+I :80.9 A
+
+E : 54.126652043111584 V
+FC Efficiency : 0.3924603850117549
+FC Power : 4358.64619784207 W
+FC Voltage : 53.87696165441372 V
+PH2 : 1.9689777662802725 atm
+PO2 : 1.9840263928387192 atm
+Power-Thermal : 4397.96980215793 W
+###########
+I :81.0 A
+
+E : 54.12644293458356 V
+FC Efficiency : 0.3924562247533694
+FC Power : 4363.987633265547 W
+FC Voltage : 53.87639053414255 V
+PH2 : 1.9687304795638592 atm
+PO2 : 1.983886774886429 atm
+Power-Thermal : 4403.452366734453 W
+###########
+I :81.1 A
+
+E : 54.126233802316065 V
+FC Efficiency : 0.3924520648524256
+FC Power : 4369.328958444514 W
+FC Voltage : 53.87581946294099 V
+PH2 : 1.9684831928474458 atm
+PO2 : 1.9837471569341392 atm
+Power-Thermal : 4408.935041555485 W
+###########
+I :81.2 A
+
+E : 54.1260246463035 V
+FC Efficiency : 0.3924479053075758
+FC Power : 4374.670173378669 W
+FC Voltage : 53.875248440624 V
+PH2 : 1.9682359061310326 atm
+PO2 : 1.9836075389818488 atm
+Power-Thermal : 4414.417826621331 W
+###########
+I :81.3 A
+
+E : 54.125815466540246 V
+FC Efficiency : 0.39244374611747646
+FC Power : 4380.011278067683 W
+FC Voltage : 53.87467746700717 V
+PH2 : 1.9679886194146197 atm
+PO2 : 1.9834679210295587 atm
+Power-Thermal : 4419.900721932317 W
+###########
+I :81.4 A
+
+E : 54.125606263020714 V
+FC Efficiency : 0.39243958728078954
+FC Power : 4385.352272511213 W
+FC Voltage : 53.87410654190679 V
+PH2 : 1.9677413326982063 atm
+PO2 : 1.9833283030772684 atm
+Power-Thermal : 4425.383727488787 W
+###########
+I :81.5 A
+
+E : 54.12539703573927 V
+FC Efficiency : 0.3924354287961813
+FC Power : 4390.693156708891 W
+FC Voltage : 53.87353566513977 V
+PH2 : 1.967494045981793 atm
+PO2 : 1.9831886851249785 atm
+Power-Thermal : 4430.866843291108 W
+###########
+I :81.6 A
+
+E : 54.12518778469029 V
+FC Efficiency : 0.39243127066232275
+FC Power : 4396.033930660331 W
+FC Voltage : 53.87296483652367 V
+PH2 : 1.9672467592653797 atm
+PO2 : 1.9830490671726884 atm
+Power-Thermal : 4436.350069339667 W
+###########
+I :81.7 A
+
+E : 54.124978509868164 V
+FC Efficiency : 0.39242711287788984
+FC Power : 4401.374594365128 W
+FC Voltage : 53.87239405587672 V
+PH2 : 1.9669994725489663 atm
+PO2 : 1.982909449220398 atm
+Power-Thermal : 4441.833405634872 W
+###########
+I :81.8 A
+
+E : 54.124769211267285 V
+FC Efficiency : 0.39242295544156314
+FC Power : 4406.715147822855 W
+FC Voltage : 53.87182332301779 V
+PH2 : 1.9667521858325534 atm
+PO2 : 1.9827698312681077 atm
+Power-Thermal : 4447.316852177144 W
+###########
+I :81.9 A
+
+E : 54.124559888882004 V
+FC Efficiency : 0.3924187983520277
+FC Power : 4412.055591033065 W
+FC Voltage : 53.87125263776636 V
+PH2 : 1.96650489911614 atm
+PO2 : 1.9826302133158178 atm
+Power-Thermal : 4452.800408966935 W
+###########
+I :82.0 A
+
+E : 54.12435054270671 V
+FC Efficiency : 0.39241464160797335
+FC Power : 4417.395923995292 W
+FC Voltage : 53.87068199994258 V
+PH2 : 1.9662576123997269 atm
+PO2 : 1.9824905953635277 atm
+Power-Thermal : 4458.2840760047075 W
+###########
+I :82.1 A
+
+E : 54.12414117273578 V
+FC Efficiency : 0.39241048520809485
+FC Power : 4422.736146709052 W
+FC Voltage : 53.87011140936726 V
+PH2 : 1.9660103256833135 atm
+PO2 : 1.9823509774112373 atm
+Power-Thermal : 4463.767853290947 W
+###########
+I :82.2 A
+
+E : 54.12393177896357 V
+FC Efficiency : 0.39240632915109086
+FC Power : 4428.076259173837 W
+FC Voltage : 53.86954086586176 V
+PH2 : 1.9657630389669003 atm
+PO2 : 1.9822113594589472 atm
+Power-Thermal : 4469.251740826163 W
+###########
+I :82.3 A
+
+E : 54.12372236138446 V
+FC Efficiency : 0.39240217343566525
+FC Power : 4433.416261389121 W
+FC Voltage : 53.86897036924813 V
+PH2 : 1.9655157522504871 atm
+PO2 : 1.9820717415066573 atm
+Power-Thermal : 4474.735738610878 W
+###########
+I :82.4 A
+
+E : 54.12351291999281 V
+FC Efficiency : 0.3923980180605264
+FC Power : 4438.756153354363 W
+FC Voltage : 53.86839991934906 V
+PH2 : 1.965268465534074 atm
+PO2 : 1.981932123554367 atm
+Power-Thermal : 4480.2198466456375 W
+###########
+I :82.5 A
+
+E : 54.123303454783 V
+FC Efficiency : 0.39239386302438667
+FC Power : 4444.095935068995 W
+FC Voltage : 53.86782951598781 V
+PH2 : 1.9650211788176606 atm
+PO2 : 1.9817925056020769 atm
+Power-Thermal : 4485.704064931006 W
+###########
+I :82.6 A
+
+E : 54.12309396574936 V
+FC Efficiency : 0.3923897083259636
+FC Power : 4449.435606532432 W
+FC Voltage : 53.86725915898828 V
+PH2 : 1.9647738921012474 atm
+PO2 : 1.9816528876497865 atm
+Power-Thermal : 4491.188393467567 W
+###########
+I :82.7 A
+
+E : 54.12288445288629 V
+FC Efficiency : 0.39238555396397895
+FC Power : 4454.775167744076 W
+FC Voltage : 53.86668884817503 V
+PH2 : 1.964526605384834 atm
+PO2 : 1.9815132696974964 atm
+Power-Thermal : 4496.672832255925 W
+###########
+I :82.8 A
+
+E : 54.12267491618812 V
+FC Efficiency : 0.39238139993715876
+FC Power : 4460.114618703296 W
+FC Voltage : 53.86611858337315 V
+PH2 : 1.9642793186684206 atm
+PO2 : 1.9813736517452063 atm
+Power-Thermal : 4502.157381296703 W
+###########
+I :82.9 A
+
+E : 54.12246535564921 V
+FC Efficiency : 0.39237724624423376
+FC Power : 4465.453959409458 W
+FC Voltage : 53.86554836440841 V
+PH2 : 1.9640320319520077 atm
+PO2 : 1.9812340337929162 atm
+Power-Thermal : 4507.642040590543 W
+###########
+I :83.0 A
+
+E : 54.122255771263916 V
+FC Efficiency : 0.3923730928839392
+FC Power : 4470.793189861895 W
+FC Voltage : 53.86497819110717 V
+PH2 : 1.9637847452355945 atm
+PO2 : 1.9810944158406258 atm
+Power-Thermal : 4513.126810138105 W
+###########
+I :83.1 A
+
+E : 54.1220461630266 V
+FC Efficiency : 0.39236893985501436
+FC Power : 4476.132310059928 W
+FC Voltage : 53.86440806329637 V
+PH2 : 1.9635374585191812 atm
+PO2 : 1.980954797888336 atm
+Power-Thermal : 4518.61168994007 W
+###########
+I :83.2 A
+
+E : 54.12183653093161 V
+FC Efficiency : 0.3923647871562034
+FC Power : 4481.471320002859 W
+FC Voltage : 53.863837980803595 V
+PH2 : 1.9632901718027678 atm
+PO2 : 1.9808151799360458 atm
+Power-Thermal : 4524.09667999714 W
+###########
+I :83.3 A
+
+E : 54.12162687497328 V
+FC Efficiency : 0.39236063478625427
+FC Power : 4486.810219689967 W
+FC Voltage : 53.86326794345699 V
+PH2 : 1.9630428850863548 atm
+PO2 : 1.9806755619837555 atm
+Power-Thermal : 4529.581780310033 W
+###########
+I :83.4 A
+
+E : 54.121417195145966 V
+FC Efficiency : 0.3923564827439198
+FC Power : 4492.149009120515 W
+FC Voltage : 53.86269795108531 V
+PH2 : 1.9627955983699414 atm
+PO2 : 1.9805359440314654 atm
+Power-Thermal : 4535.066990879485 W
+###########
+I :83.5 A
+
+E : 54.12120749144402 V
+FC Efficiency : 0.3923523310279568
+FC Power : 4497.487688293745 W
+FC Voltage : 53.86212800351791 V
+PH2 : 1.9625483116535283 atm
+PO2 : 1.980396326079175 atm
+Power-Thermal : 4540.552311706254 W
+###########
+I :83.6 A
+
+E : 54.12099776386177 V
+FC Efficiency : 0.39234817963712654
+FC Power : 4502.826257208883 W
+FC Voltage : 53.86155810058474 V
+PH2 : 1.962301024937115 atm
+PO2 : 1.9802567081268851 atm
+Power-Thermal : 4546.037742791115 W
+###########
+I :83.7 A
+
+E : 54.12078801239356 V
+FC Efficiency : 0.3923440285701945
+FC Power : 4508.164715865134 W
+FC Voltage : 53.8609882421163 V
+PH2 : 1.962053738220702 atm
+PO2 : 1.980117090174595 atm
+Power-Thermal : 4551.523284134865 W
+###########
+I :83.8 A
+
+E : 54.120578237033726 V
+FC Efficiency : 0.3923398778259303
+FC Power : 4513.503064261683 W
+FC Voltage : 53.86041842794371 V
+PH2 : 1.9618064515042886 atm
+PO2 : 1.9799774722223047 atm
+Power-Thermal : 4557.008935738316 W
+###########
+I :83.9 A
+
+E : 54.12036843777661 V
+FC Efficiency : 0.3923357274031082
+FC Power : 4518.841302397701 W
+FC Voltage : 53.859848657898695 V
+PH2 : 1.9615591647878754 atm
+PO2 : 1.9798378542700144 atm
+Power-Thermal : 4562.494697602299 W
+###########
+I :84.0 A
+
+E : 54.120158614616535 V
+FC Efficiency : 0.39233157730050616
+FC Power : 4524.179430272333 W
+FC Voltage : 53.859278931813485 V
+PH2 : 1.961311878071462 atm
+PO2 : 1.9796982363177245 atm
+Power-Thermal : 4567.980569727667 W
+###########
+I :84.1 A
+
+E : 54.11994876754785 V
+FC Efficiency : 0.39232742751690675
+FC Power : 4529.517447884712 W
+FC Voltage : 53.858709249520956 V
+PH2 : 1.9610645913550488 atm
+PO2 : 1.9795586183654343 atm
+Power-Thermal : 4573.4665521152865 W
+###########
+I :84.2 A
+
+E : 54.11973889656486 V
+FC Efficiency : 0.39232327805109646
+FC Power : 4534.855355233951 W
+FC Voltage : 53.85813961085452 V
+PH2 : 1.9608173046386357 atm
+PO2 : 1.979419000413144 atm
+Power-Thermal : 4578.952644766049 W
+###########
+I :84.3 A
+
+E : 54.119529001661924 V
+FC Efficiency : 0.3923191289018662
+FC Power : 4540.193152319142 W
+FC Voltage : 53.85757001564819 V
+PH2 : 1.9605700179222225 atm
+PO2 : 1.9792793824608539 atm
+Power-Thermal : 4584.438847680857 W
+###########
+I :84.4 A
+
+E : 54.11931908283333 V
+FC Efficiency : 0.3923149800680106
+FC Power : 4545.530839139361 W
+FC Voltage : 53.8570004637365 V
+PH2 : 1.9603227312058091 atm
+PO2 : 1.9791397645085635 atm
+Power-Thermal : 4589.925160860639 W
+###########
+I :84.5 A
+
+E : 54.119109140073434 V
+FC Efficiency : 0.39231083154832896
+FC Power : 4550.868415693664 W
+FC Voltage : 53.856430954954604 V
+PH2 : 1.9600754444893957 atm
+PO2 : 1.9790001465562737 atm
+Power-Thermal : 4595.4115843063355 W
+###########
+I :84.6 A
+
+E : 54.11889917337653 V
+FC Efficiency : 0.39230668334162416
+FC Power : 4556.205881981088 W
+FC Voltage : 53.855861489138164 V
+PH2 : 1.9598281577729826 atm
+PO2 : 1.9788605286039835 atm
+Power-Thermal : 4600.89811801891 W
+###########
+I :84.7 A
+
+E : 54.118689182736965 V
+FC Efficiency : 0.39230253544670346
+FC Power : 4561.543238000657 W
+FC Voltage : 53.855292066123454 V
+PH2 : 1.9595808710565696 atm
+PO2 : 1.9787209106516932 atm
+Power-Thermal : 4606.384761999343 W
+###########
+I :84.8 A
+
+E : 54.11847916814903 V
+FC Efficiency : 0.39229838786237814
+FC Power : 4566.880483751368 W
+FC Voltage : 53.85472268574727 V
+PH2 : 1.9593335843401563 atm
+PO2 : 1.9785812926994033 atm
+Power-Thermal : 4611.8715162486305 W
+###########
+I :84.9 A
+
+E : 54.11826912960706 V
+FC Efficiency : 0.3922942405874635
+FC Power : 4572.2176192322095 W
+FC Voltage : 53.85415334784698 V
+PH2 : 1.9590862976237429 atm
+PO2 : 1.978441674747113 atm
+Power-Thermal : 4617.3583807677915 W
+###########
+I :85.0 A
+
+E : 54.11805906710535 V
+FC Efficiency : 0.39229009362077866
+FC Power : 4577.554644442142 W
+FC Voltage : 53.853584052260494 V
+PH2 : 1.9588390109073297 atm
+PO2 : 1.9783020567948228 atm
+Power-Thermal : 4622.845355557857 W
+###########
+I :85.1 A
+
+E : 54.11784898063823 V
+FC Efficiency : 0.3922859469611473
+FC Power : 4582.8915593801175 W
+FC Voltage : 53.8530147988263 V
+PH2 : 1.9585917241909168 atm
+PO2 : 1.9781624388425325 atm
+Power-Thermal : 4628.332440619881 W
+###########
+I :85.2 A
+
+E : 54.1176388702 V
+FC Efficiency : 0.3922818006073964
+FC Power : 4588.228364045064 W
+FC Voltage : 53.85244558738338 V
+PH2 : 1.9583444374745034 atm
+PO2 : 1.9780228208902424 atm
+Power-Thermal : 4633.819635954936 W
+###########
+I :85.3 A
+
+E : 54.117428735784955 V
+FC Efficiency : 0.39227765455835734
+FC Power : 4593.565058435891 W
+FC Voltage : 53.851876417771294 V
+PH2 : 1.95809715075809 atm
+PO2 : 1.9778832029379525 atm
+Power-Thermal : 4639.3069415641085 W
+###########
+I :85.4 A
+
+E : 54.11721857738742 V
+FC Efficiency : 0.3922735088128654
+FC Power : 4598.901642551496 W
+FC Voltage : 53.85130728983016 V
+PH2 : 1.9578498640416768 atm
+PO2 : 1.9777435849856622 atm
+Power-Thermal : 4644.794357448504 W
+###########
+I :85.5 A
+
+E : 54.11700839500168 V
+FC Efficiency : 0.3922693633697595
+FC Power : 4604.23811639075 W
+FC Voltage : 53.85073820340059 V
+PH2 : 1.9576025773252634 atm
+PO2 : 1.977603967033372 atm
+Power-Thermal : 4650.281883609249 W
+###########
+I :85.6 A
+
+E : 54.11679818862204 V
+FC Efficiency : 0.3922652182278829
+FC Power : 4609.574479952514 W
+FC Voltage : 53.850169158323766 V
+PH2 : 1.9573552906088505 atm
+PO2 : 1.9774643490810817 atm
+Power-Thermal : 4655.769520047485 W
+###########
+I :85.7 A
+
+E : 54.11658795824281 V
+FC Efficiency : 0.3922610733860825
+FC Power : 4614.910733235629 W
+FC Voltage : 53.84960015444141 V
+PH2 : 1.957108003892437 atm
+PO2 : 1.9773247311287918 atm
+Power-Thermal : 4661.257266764371 W
+###########
+I :85.8 A
+
+E : 54.11637770385828 V
+FC Efficiency : 0.3922569288432092
+FC Power : 4620.246876238915 W
+FC Voltage : 53.849031191595756 V
+PH2 : 1.956860717176024 atm
+PO2 : 1.9771851131765017 atm
+Power-Thermal : 4666.745123761084 W
+###########
+I :85.9 A
+
+E : 54.116167425462734 V
+FC Efficiency : 0.3922527845981174
+FC Power : 4625.582908961179 W
+FC Voltage : 53.84846226962956 V
+PH2 : 1.9566134304596106 atm
+PO2 : 1.9770454952242114 atm
+Power-Thermal : 4672.233091038821 W
+###########
+I :86.0 A
+
+E : 54.11595712305047 V
+FC Efficiency : 0.3922486406496659
+FC Power : 4630.918831401207 W
+FC Voltage : 53.84789338838613 V
+PH2 : 1.9563661437431974 atm
+PO2 : 1.976905877271921 atm
+Power-Thermal : 4677.721168598792 W
+###########
+I :86.1 A
+
+E : 54.11574679661578 V
+FC Efficiency : 0.3922444969967168
+FC Power : 4636.254643557769 W
+FC Voltage : 53.847324547709285 V
+PH2 : 1.9561188570267842 atm
+PO2 : 1.9767662593196311 atm
+Power-Thermal : 4683.20935644223 W
+###########
+I :86.2 A
+
+E : 54.11553644615295 V
+FC Efficiency : 0.39224035363813636
+FC Power : 4641.590345429618 W
+FC Voltage : 53.84675574744336 V
+PH2 : 1.955871570310371 atm
+PO2 : 1.976626641367341 atm
+Power-Thermal : 4688.697654570382 W
+###########
+I :86.3 A
+
+E : 54.11532607165628 V
+FC Efficiency : 0.3922362105727946
+FC Power : 4646.925937015489 W
+FC Voltage : 53.84618698743324 V
+PH2 : 1.9556242835939577 atm
+PO2 : 1.9764870234150507 atm
+Power-Thermal : 4694.1860629845105 W
+###########
+I :86.4 A
+
+E : 54.11511567312003 V
+FC Efficiency : 0.392232067799565
+FC Power : 4652.261418314098 W
+FC Voltage : 53.84561826752428 V
+PH2 : 1.9553769968775445 atm
+PO2 : 1.9763474054627606 atm
+Power-Thermal : 4699.674581685902 W
+###########
+I :86.5 A
+
+E : 54.11490525053849 V
+FC Efficiency : 0.392227925317325
+FC Power : 4657.596789324145 W
+FC Voltage : 53.84504958756237 V
+PH2 : 1.9551297101611311 atm
+PO2 : 1.9762077875104707 atm
+Power-Thermal : 4705.163210675854 W
+###########
+I :86.6 A
+
+E : 54.11469480390595 V
+FC Efficiency : 0.39222378312495587
+FC Power : 4662.932050044315 W
+FC Voltage : 53.84448094739394 V
+PH2 : 1.9548824234447177 atm
+PO2 : 1.9760681695581803 atm
+Power-Thermal : 4710.651949955684 W
+###########
+I :86.7 A
+
+E : 54.11448433321667 V
+FC Efficiency : 0.3922196412213424
+FC Power : 4668.267200473272 W
+FC Voltage : 53.843912346865885 V
+PH2 : 1.9546351367283048 atm
+PO2 : 1.9759285516058902 atm
+Power-Thermal : 4716.140799526727 W
+###########
+I :86.8 A
+
+E : 54.11427383846493 V
+FC Efficiency : 0.3922154996053731
+FC Power : 4673.602240609664 W
+FC Voltage : 53.843343785825624 V
+PH2 : 1.9543878500118916 atm
+PO2 : 1.9757889336535999 atm
+Power-Thermal : 4721.6297593903355 W
+###########
+I :86.9 A
+
+E : 54.11406331964502 V
+FC Efficiency : 0.39221135827594045
+FC Power : 4678.9371704521245 W
+FC Voltage : 53.84277526412111 V
+PH2 : 1.9541405632954783 atm
+PO2 : 1.9756493157013095 atm
+Power-Thermal : 4727.118829547876 W
+###########
+I :87.0 A
+
+E : 54.113852776751195 V
+FC Efficiency : 0.39220721723194024
+FC Power : 4684.271989999266 W
+FC Voltage : 53.84220678160076 V
+PH2 : 1.9538932765790649 atm
+PO2 : 1.9755096977490196 atm
+Power-Thermal : 4732.608010000734 W
+###########
+I :87.1 A
+
+E : 54.11364220977772 V
+FC Efficiency : 0.3922030764722719
+FC Power : 4689.606699249684 W
+FC Voltage : 53.84163833811349 V
+PH2 : 1.953645989862652 atm
+PO2 : 1.9753700797967295 atm
+Power-Thermal : 4738.097300750314 W
+###########
+I :87.2 A
+
+E : 54.113431618718884 V
+FC Efficiency : 0.39219893599583894
+FC Power : 4694.941298201965 W
+FC Voltage : 53.84106993350877 V
+PH2 : 1.9533987031462385 atm
+PO2 : 1.9752304618444392 atm
+Power-Thermal : 4743.586701798035 W
+###########
+I :87.3 A
+
+E : 54.113221003568924 V
+FC Efficiency : 0.3921947958015478
+FC Power : 4700.275786854664 W
+FC Voltage : 53.84050156763648 V
+PH2 : 1.9531514164298254 atm
+PO2 : 1.975090843892149 atm
+Power-Thermal : 4749.076213145335 W
+###########
+I :87.4 A
+
+E : 54.11301036432213 V
+FC Efficiency : 0.3921906558883091
+FC Power : 4705.610165206335 W
+FC Voltage : 53.83993324034708 V
+PH2 : 1.952904129713412 atm
+PO2 : 1.9749512259398592 atm
+Power-Thermal : 4754.565834793665 W
+###########
+I :87.5 A
+
+E : 54.112799700972744 V
+FC Efficiency : 0.3921865162550368
+FC Power : 4710.944433255503 W
+FC Voltage : 53.83936495149146 V
+PH2 : 1.952656842996999 atm
+PO2 : 1.9748116079875688 atm
+Power-Thermal : 4760.055566744497 W
+###########
+I :87.6 A
+
+E : 54.11258901351502 V
+FC Efficiency : 0.3921823769006484
+FC Power : 4716.27859100068 W
+FC Voltage : 53.83879670092101 V
+PH2 : 1.9524095562805857 atm
+PO2 : 1.9746719900352787 atm
+Power-Thermal : 4765.545408999319 W
+###########
+I :87.7 A
+
+E : 54.11237830194323 V
+FC Efficiency : 0.39217823782406486
+FC Power : 4721.612638440365 W
+FC Voltage : 53.83822848848762 V
+PH2 : 1.9521622695641725 atm
+PO2 : 1.9745323720829884 atm
+Power-Thermal : 4771.035361559635 W
+###########
+I :87.8 A
+
+E : 54.11216756625163 V
+FC Efficiency : 0.3921740990242111
+FC Power : 4726.946575573036 W
+FC Voltage : 53.837660314043696 V
+PH2 : 1.951914982847759 atm
+PO2 : 1.9743927541306985 atm
+Power-Thermal : 4776.525424426963 W
+###########
+I :87.9 A
+
+E : 54.11195680643445 V
+FC Efficiency : 0.3921699605000149
+FC Power : 4732.280402397156 W
+FC Voltage : 53.837092177442045 V
+PH2 : 1.951667696131346 atm
+PO2 : 1.9742531361784081 atm
+Power-Thermal : 4782.0155976028445 W
+###########
+I :88.0 A
+
+E : 54.11174602248596 V
+FC Efficiency : 0.3921658222504081
+FC Power : 4737.61411891117 W
+FC Voltage : 53.83652407853602 V
+PH2 : 1.9514204094149328 atm
+PO2 : 1.974113518226118 atm
+Power-Thermal : 4787.5058810888295 W
+###########
+I :88.1 A
+
+E : 54.111535214400405 V
+FC Efficiency : 0.39216168427432585
+FC Power : 4742.9477251135095 W
+FC Voltage : 53.835956017179456 V
+PH2 : 1.9511731226985196 atm
+PO2 : 1.9739739002738277 atm
+Power-Thermal : 4792.996274886489 W
+###########
+I :88.2 A
+
+E : 54.11132438217203 V
+FC Efficiency : 0.3921575465707066
+FC Power : 4748.281221002587 W
+FC Voltage : 53.835387993226604 V
+PH2 : 1.9509258359821062 atm
+PO2 : 1.9738342823215378 atm
+Power-Thermal : 4798.486778997413 W
+###########
+I :88.3 A
+
+E : 54.11111352579507 V
+FC Efficiency : 0.39215340913849234
+FC Power : 4753.614606576796 W
+FC Voltage : 53.83482000653223 V
+PH2 : 1.9506785492656928 atm
+PO2 : 1.9736946643692477 atm
+Power-Thermal : 4803.9773934232035 W
+###########
+I :88.4 A
+
+E : 54.11090264526377 V
+FC Efficiency : 0.39214927197662874
+FC Power : 4758.947881834521 W
+FC Voltage : 53.83425205695159 V
+PH2 : 1.9504312625492797 atm
+PO2 : 1.9735550464169573 atm
+Power-Thermal : 4809.46811816548 W
+###########
+I :88.5 A
+
+E : 54.11069174057238 V
+FC Efficiency : 0.3921451350840644
+FC Power : 4764.281046774123 W
+FC Voltage : 53.83368414434037 V
+PH2 : 1.9501839758328667 atm
+PO2 : 1.9734154284646672 atm
+Power-Thermal : 4814.958953225877 W
+###########
+I :88.6 A
+
+E : 54.11048081171512 V
+FC Efficiency : 0.39214099845975187
+FC Power : 4769.614101393949 W
+FC Voltage : 53.83311626855473 V
+PH2 : 1.9499366891164533 atm
+PO2 : 1.9732758105123769 atm
+Power-Thermal : 4820.44989860605 W
+###########
+I :88.7 A
+
+E : 54.11026985868625 V
+FC Efficiency : 0.39213686210264675
+FC Power : 4774.9470456923345 W
+FC Voltage : 53.83254842945134 V
+PH2 : 1.94968940240004 atm
+PO2 : 1.973136192560087 atm
+Power-Thermal : 4825.940954307665 W
+###########
+I :88.8 A
+
+E : 54.110058881479986 V
+FC Efficiency : 0.3921327260117079
+FC Power : 4780.279879667589 W
+FC Voltage : 53.831980626887265 V
+PH2 : 1.9494421156836268 atm
+PO2 : 1.9729965746077969 atm
+Power-Thermal : 4831.43212033241 W
+###########
+I :88.9 A
+
+E : 54.10984788009055 V
+FC Efficiency : 0.39212859018589785
+FC Power : 4785.612603318014 W
+FC Voltage : 53.831412860720064 V
+PH2 : 1.9491948289672134 atm
+PO2 : 1.9728569566555065 atm
+Power-Thermal : 4836.923396681987 W
+###########
+I :89.0 A
+
+E : 54.10963685451219 V
+FC Efficiency : 0.3921244546241825
+FC Power : 4790.945216641892 W
+FC Voltage : 53.83084513080778 V
+PH2 : 1.9489475422508005 atm
+PO2 : 1.9727173387032162 atm
+Power-Thermal : 4842.414783358107 W
+###########
+I :89.1 A
+
+E : 54.109425804739125 V
+FC Efficiency : 0.3921203193255307
+FC Power : 4796.277719637489 W
+FC Voltage : 53.83027743700886 V
+PH2 : 1.948700255534387 atm
+PO2 : 1.9725777207509263 atm
+Power-Thermal : 4847.90628036251 W
+###########
+I :89.2 A
+
+E : 54.10921473076558 V
+FC Efficiency : 0.3921161842889149
+FC Power : 4801.610112303057 W
+FC Voltage : 53.829709779182245 V
+PH2 : 1.948452968817974 atm
+PO2 : 1.9724381027986362 atm
+Power-Thermal : 4853.397887696943 W
+###########
+I :89.3 A
+
+E : 54.10900363258578 V
+FC Efficiency : 0.3921120495133109
+FC Power : 4806.942394636828 W
+FC Voltage : 53.82914215718733 V
+PH2 : 1.9482056821015605 atm
+PO2 : 1.9722984848463458 atm
+Power-Thermal : 4858.889605363171 W
+###########
+I :89.4 A
+
+E : 54.10879251019394 V
+FC Efficiency : 0.3921079149976976
+FC Power : 4812.274566637023 W
+FC Voltage : 53.82857457088392 V
+PH2 : 1.9479583953851476 atm
+PO2 : 1.9721588668940557 atm
+Power-Thermal : 4864.381433362977 W
+###########
+I :89.5 A
+
+E : 54.10858136358429 V
+FC Efficiency : 0.39210378074105706
+FC Power : 4817.606628301843 W
+FC Voltage : 53.82800702013232 V
+PH2 : 1.9477111086687342 atm
+PO2 : 1.9720192489417658 atm
+Power-Thermal : 4869.873371698157 W
+###########
+I :89.6 A
+
+E : 54.10837019275103 V
+FC Efficiency : 0.392099646742375
+FC Power : 4822.938579629474 W
+FC Voltage : 53.82743950479324 V
+PH2 : 1.947463821952321 atm
+PO2 : 1.9718796309894755 atm
+Power-Thermal : 4875.365420370525 W
+###########
+I :89.7 A
+
+E : 54.108158997688385 V
+FC Efficiency : 0.39209551300063994
+FC Power : 4828.270420618089 W
+FC Voltage : 53.826872024727855 V
+PH2 : 1.9472165352359077 atm
+PO2 : 1.9717400130371854 atm
+Power-Thermal : 4880.857579381911 W
+###########
+I :89.8 A
+
+E : 54.10794777839056 V
+FC Efficiency : 0.3920913795148439
+FC Power : 4833.60215126584 W
+FC Voltage : 53.82630457979778 V
+PH2 : 1.9469692485194945 atm
+PO2 : 1.971600395084895 atm
+Power-Thermal : 4886.3498487341585 W
+###########
+I :89.9 A
+
+E : 54.107736534851774 V
+FC Efficiency : 0.3920872462839823
+FC Power : 4838.933771570872 W
+FC Voltage : 53.825737169865086 V
+PH2 : 1.9467219618030813 atm
+PO2 : 1.9714607771326051 atm
+Power-Thermal : 4891.842228429128 W
+###########
+I :90.0 A
+
+E : 54.10752526706622 V
+FC Efficiency : 0.392083113307053
+FC Power : 4844.265281531301 W
+FC Voltage : 53.82516979479224 V
+PH2 : 1.9464746750866682 atm
+PO2 : 1.9713211591803148 atm
+Power-Thermal : 4897.334718468698 W
+###########
+I :90.1 A
+
+E : 54.10731397502812 V
+FC Efficiency : 0.3920789805830579
+FC Power : 4849.596681145241 W
+FC Voltage : 53.824602454442186 V
+PH2 : 1.9462273883702548 atm
+PO2 : 1.9711815412280247 atm
+Power-Thermal : 4902.827318854758 W
+###########
+I :90.2 A
+
+E : 54.10710265873166 V
+FC Efficiency : 0.3920748481110015
+FC Power : 4854.927970410782 W
+FC Voltage : 53.82403514867829 V
+PH2 : 1.9459801016538416 atm
+PO2 : 1.9710419232757344 atm
+Power-Thermal : 4908.3200295892175 W
+###########
+I :90.3 A
+
+E : 54.106891318171066 V
+FC Efficiency : 0.39207071588989184
+FC Power : 4860.259149326001 W
+FC Voltage : 53.82346787736435 V
+PH2 : 1.9457328149374282 atm
+PO2 : 1.9709023053234442 atm
+Power-Thermal : 4913.812850673999 W
+###########
+I :90.4 A
+
+E : 54.10667995334052 V
+FC Efficiency : 0.3920665839187397
+FC Power : 4865.590217888959 W
+FC Voltage : 53.822900640364594 V
+PH2 : 1.9454855282210148 atm
+PO2 : 1.9707626873711543 atm
+Power-Thermal : 4919.305782111041 W
+###########
+I :90.5 A
+
+E : 54.10646856423422 V
+FC Efficiency : 0.3920624521965595
+FC Power : 4870.921176097704 W
+FC Voltage : 53.82233343754369 V
+PH2 : 1.945238241504602 atm
+PO2 : 1.970623069418864 atm
+Power-Thermal : 4924.798823902295 W
+###########
+I :90.6 A
+
+E : 54.10625715084636 V
+FC Efficiency : 0.3920583207223682
+FC Power : 4876.252023950263 W
+FC Voltage : 53.8217662687667 V
+PH2 : 1.9449909547881887 atm
+PO2 : 1.9704834514665739 atm
+Power-Thermal : 4930.291976049736 W
+###########
+I :90.7 A
+
+E : 54.106045713171135 V
+FC Efficiency : 0.3920541894951861
+FC Power : 4881.582761444653 W
+FC Voltage : 53.82119913389915 V
+PH2 : 1.9447436680717753 atm
+PO2 : 1.9703438335142835 atm
+Power-Thermal : 4935.785238555347 W
+###########
+I :90.8 A
+
+E : 54.105834251202744 V
+FC Efficiency : 0.3920500585140368
+FC Power : 4886.913388578873 W
+FC Voltage : 53.82063203280698 V
+PH2 : 1.944496381355362 atm
+PO2 : 1.9702042155619937 atm
+Power-Thermal : 4941.278611421126 W
+###########
+I :90.9 A
+
+E : 54.105622764935354 V
+FC Efficiency : 0.39204592777794667
+FC Power : 4892.243905350908 W
+FC Voltage : 53.820064965356515 V
+PH2 : 1.944249094638949 atm
+PO2 : 1.9700645976097035 atm
+Power-Thermal : 4946.772094649093 W
+###########
+I :91.0 A
+
+E : 54.105411254363176 V
+FC Efficiency : 0.3920417972859452
+FC Power : 4897.574311758724 W
+FC Voltage : 53.81949793141455 V
+PH2 : 1.9440018079225356 atm
+PO2 : 1.9699249796574132 atm
+Power-Thermal : 4952.265688241275 W
+###########
+I :91.1 A
+
+E : 54.10519971948038 V
+FC Efficiency : 0.39203766703706505
+FC Power : 4902.904607800278 W
+FC Voltage : 53.81893093084829 V
+PH2 : 1.9437545212061225 atm
+PO2 : 1.9697853617051229 atm
+Power-Thermal : 4957.75939219972 W
+###########
+I :91.2 A
+
+E : 54.10498816028115 V
+FC Efficiency : 0.3920335370303417
+FC Power : 4908.234793473509 W
+FC Voltage : 53.818363963525314 V
+PH2 : 1.943507234489709 atm
+PO2 : 1.969645743752833 atm
+Power-Thermal : 4963.253206526491 W
+###########
+I :91.3 A
+
+E : 54.10477657675966 V
+FC Efficiency : 0.3920294072648139
+FC Power : 4913.564868776336 W
+FC Voltage : 53.81779702931365 V
+PH2 : 1.9432599477732961 atm
+PO2 : 1.9695061258005429 atm
+Power-Thermal : 4968.747131223663 W
+###########
+I :91.4 A
+
+E : 54.104564968910104 V
+FC Efficiency : 0.3920252777395233
+FC Power : 4918.894833706673 W
+FC Voltage : 53.81723012808176 V
+PH2 : 1.9430126610568828 atm
+PO2 : 1.9693665078482525 atm
+Power-Thermal : 4974.241166293327 W
+###########
+I :91.5 A
+
+E : 54.10435333672666 V
+FC Efficiency : 0.3920211484535145
+FC Power : 4924.2246882624095 W
+FC Voltage : 53.816663259698466 V
+PH2 : 1.9427653743404696 atm
+PO2 : 1.9692268898959624 atm
+Power-Thermal : 4979.73531173759 W
+###########
+I :91.6 A
+
+E : 54.10414168020347 V
+FC Efficiency : 0.3920170194058348
+FC Power : 4929.554432441422 W
+FC Voltage : 53.816096424033 V
+PH2 : 1.9425180876240562 atm
+PO2 : 1.9690872719436725 atm
+Power-Thermal : 4985.2295675585765 W
+###########
+I :91.7 A
+
+E : 54.10392999933473 V
+FC Efficiency : 0.3920128905955351
+FC Power : 4934.88406624158 W
+FC Voltage : 53.81552962095506 V
+PH2 : 1.942270800907643 atm
+PO2 : 1.9689476539913822 atm
+Power-Thermal : 4990.723933758421 W
+###########
+I :91.8 A
+
+E : 54.103718294114614 V
+FC Efficiency : 0.39200876202166873
+FC Power : 4940.213589660724 W
+FC Voltage : 53.81496285033469 V
+PH2 : 1.9420235141912299 atm
+PO2 : 1.968808036039092 atm
+Power-Thermal : 4996.218410339275 W
+###########
+I :91.9 A
+
+E : 54.10350656453727 V
+FC Efficiency : 0.3920046336832922
+FC Power : 4945.543002696692 W
+FC Voltage : 53.81439611204235 V
+PH2 : 1.9417762274748167 atm
+PO2 : 1.9686684180868017 atm
+Power-Thermal : 5001.712997303308 W
+###########
+I :92.0 A
+
+E : 54.10329481059688 V
+FC Efficiency : 0.39200050557946486
+FC Power : 4950.872305347302 W
+FC Voltage : 53.81382940594894 V
+PH2 : 1.9415289407584033 atm
+PO2 : 1.9685288001345114 atm
+Power-Thermal : 5007.207694652698 W
+###########
+I :92.1 A
+
+E : 54.103083032287586 V
+FC Efficiency : 0.39199637770924883
+FC Power : 4956.201497610355 W
+FC Voltage : 53.81326273192568 V
+PH2 : 1.94128165404199 atm
+PO2 : 1.9683891821822215 atm
+Power-Thermal : 5012.702502389644 W
+###########
+I :92.2 A
+
+E : 54.102871229603565 V
+FC Efficiency : 0.39199225007170946
+FC Power : 4961.530579483643 W
+FC Voltage : 53.81269608984428 V
+PH2 : 1.9410343673255768 atm
+PO2 : 1.9682495642299314 atm
+Power-Thermal : 5018.197420516357 W
+###########
+I :92.3 A
+
+E : 54.10265940253899 V
+FC Efficiency : 0.391988122665915
+FC Power : 4966.8595509649385 W
+FC Voltage : 53.812129479576804 V
+PH2 : 1.9407870806091638 atm
+PO2 : 1.968109946277641 atm
+Power-Thermal : 5023.69244903506 W
+###########
+I :92.4 A
+
+E : 54.10244755108798 V
+FC Efficiency : 0.3919839954909358
+FC Power : 4972.188412052 W
+FC Voltage : 53.81156290099567 V
+PH2 : 1.9405397938927504 atm
+PO2 : 1.967970328325351 atm
+Power-Thermal : 5029.187587948 W
+###########
+I :92.5 A
+
+E : 54.10223567524472 V
+FC Efficiency : 0.3919798685458462
+FC Power : 4977.517162742573 W
+FC Voltage : 53.81099635397376 V
+PH2 : 1.940292507176337 atm
+PO2 : 1.967830710373061 atm
+Power-Thermal : 5034.682837257426 W
+###########
+I :92.6 A
+
+E : 54.102023775003346 V
+FC Efficiency : 0.39197574182972256
+FC Power : 4982.845803034387 W
+FC Voltage : 53.810429838384316 V
+PH2 : 1.940045220459924 atm
+PO2 : 1.9676910924207707 atm
+Power-Thermal : 5040.178196965611 W
+###########
+I :92.7 A
+
+E : 54.10181185035801 V
+FC Efficiency : 0.39197161534164443
+FC Power : 4988.174332925158 W
+FC Voltage : 53.80986335410095 V
+PH2 : 1.9397979337435105 atm
+PO2 : 1.9675514744684806 atm
+Power-Thermal : 5045.673667074841 W
+###########
+I :92.8 A
+
+E : 54.10159990130287 V
+FC Efficiency : 0.39196748908069406
+FC Power : 4993.502752412585 W
+FC Voltage : 53.80929690099769 V
+PH2 : 1.9395506470270976 atm
+PO2 : 1.9674118565161902 atm
+Power-Thermal : 5051.169247587414 W
+###########
+I :92.9 A
+
+E : 54.10138792783206 V
+FC Efficiency : 0.39196336304595675
+FC Power : 4998.831061494357 W
+FC Voltage : 53.80873047894894 V
+PH2 : 1.9393033603106842 atm
+PO2 : 1.9672722385639003 atm
+Power-Thermal : 5056.6649385056435 W
+###########
+I :93.0 A
+
+E : 54.10117592993972 V
+FC Efficiency : 0.39195923723652015
+FC Power : 5004.159260168142 W
+FC Voltage : 53.80816408782948 V
+PH2 : 1.939056073594271 atm
+PO2 : 1.9671326206116102 atm
+Power-Thermal : 5062.160739831857 W
+###########
+I :93.1 A
+
+E : 54.100963907620006 V
+FC Efficiency : 0.391955111651475
+FC Power : 5009.487348431599 W
+FC Voltage : 53.80759772751449 V
+PH2 : 1.9388087868778576 atm
+PO2 : 1.9669930026593199 atm
+Power-Thermal : 5067.6566515684 W
+###########
+I :93.2 A
+
+E : 54.10075186086704 V
+FC Efficiency : 0.391950986289915
+FC Power : 5014.815326282372 W
+FC Voltage : 53.80703139787953 V
+PH2 : 1.9385615001614447 atm
+PO2 : 1.9668533847070295 atm
+Power-Thermal : 5073.152673717628 W
+###########
+I :93.3 A
+
+E : 54.100539789674976 V
+FC Efficiency : 0.3919468611509362
+FC Power : 5020.143193718088 W
+FC Voltage : 53.806465098800516 V
+PH2 : 1.9383142134450313 atm
+PO2 : 1.9667137667547396 atm
+Power-Thermal : 5078.648806281912 W
+###########
+I :93.4 A
+
+E : 54.100327694037944 V
+FC Efficiency : 0.39194273623363757
+FC Power : 5025.470950736362 W
+FC Voltage : 53.805898830153765 V
+PH2 : 1.9380669267286181 atm
+PO2 : 1.9665741488024495 atm
+Power-Thermal : 5084.145049263638 W
+###########
+I :93.5 A
+
+E : 54.10011557395007 V
+FC Efficiency : 0.39193861153712095
+FC Power : 5030.798597334793 W
+FC Voltage : 53.80533259181597 V
+PH2 : 1.9378196400122047 atm
+PO2 : 1.9664345308501592 atm
+Power-Thermal : 5089.641402665206 W
+###########
+I :93.6 A
+
+E : 54.09990342940549 V
+FC Efficiency : 0.3919344870604907
+FC Power : 5036.126133510966 W
+FC Voltage : 53.804766383664166 V
+PH2 : 1.9375723532957916 atm
+PO2 : 1.966294912897869 atm
+Power-Thermal : 5095.1378664890335 W
+###########
+I :93.7 A
+
+E : 54.099691260398316 V
+FC Efficiency : 0.39193036280285404
+FC Power : 5041.4535592624525 W
+FC Voltage : 53.8042002055758 V
+PH2 : 1.9373250665793784 atm
+PO2 : 1.9661552949455787 atm
+Power-Thermal : 5100.634440737547 W
+###########
+I :93.8 A
+
+E : 54.099479066922704 V
+FC Efficiency : 0.39192623876332094
+FC Power : 5046.7808745868115 W
+FC Voltage : 53.803634057428695 V
+PH2 : 1.937077779862965 atm
+PO2 : 1.9660156769932888 atm
+Power-Thermal : 5106.131125413188 W
+###########
+I :93.9 A
+
+E : 54.09926684897275 V
+FC Efficiency : 0.3919221149410037
+FC Power : 5052.108079481583 W
+FC Voltage : 53.80306793910099 V
+PH2 : 1.9368304931465519 atm
+PO2 : 1.9658760590409987 atm
+Power-Thermal : 5111.627920518416 W
+###########
+I :94.0 A
+
+E : 54.099054606542595 V
+FC Efficiency : 0.3919179913350178
+FC Power : 5057.435173944297 W
+FC Voltage : 53.802501850471245 V
+PH2 : 1.9365832064301387 atm
+PO2 : 1.9657364410887084 atm
+Power-Thermal : 5117.124826055702 W
+###########
+I :94.1 A
+
+E : 54.098842339626344 V
+FC Efficiency : 0.3919138679444811
+FC Power : 5062.762157972468 W
+FC Voltage : 53.801935791418366 V
+PH2 : 1.9363359197137253 atm
+PO2 : 1.9655968231364185 atm
+Power-Thermal : 5122.621842027531 W
+###########
+I :94.2 A
+
+E : 54.098630048218126 V
+FC Efficiency : 0.39190974476851415
+FC Power : 5068.089031563597 W
+FC Voltage : 53.801369761821626 V
+PH2 : 1.936088632997312 atm
+PO2 : 1.9654572051841281 atm
+Power-Thermal : 5128.118968436403 W
+###########
+I :94.3 A
+
+E : 54.09841773231205 V
+FC Efficiency : 0.3919056218062403
+FC Power : 5073.415794715171 W
+FC Voltage : 53.800803761560665 V
+PH2 : 1.935841346280899 atm
+PO2 : 1.965317587231838 atm
+Power-Thermal : 5133.6162052848285 W
+###########
+I :94.4 A
+
+E : 54.098205391902226 V
+FC Efficiency : 0.3919014990567852
+FC Power : 5078.742447424661 W
+FC Voltage : 53.800237790515475 V
+PH2 : 1.9355940595644856 atm
+PO2 : 1.9651779692795477 atm
+Power-Thermal : 5139.113552575339 W
+###########
+I :94.5 A
+
+E : 54.09799302698278 V
+FC Efficiency : 0.3918973765192775
+FC Power : 5084.0689896895265 W
+FC Voltage : 53.79967184856642 V
+PH2 : 1.9353467728480724 atm
+PO2 : 1.9650383513272576 atm
+Power-Thermal : 5144.611010310473 W
+###########
+I :94.6 A
+
+E : 54.0977806375478 V
+FC Efficiency : 0.3918932541928482
+FC Power : 5089.395421507212 W
+FC Voltage : 53.799105935594206 V
+PH2 : 1.935099486131659 atm
+PO2 : 1.9648987333749677 atm
+Power-Thermal : 5150.108578492787 W
+###########
+I :94.7 A
+
+E : 54.09756822359141 V
+FC Efficiency : 0.3918891320766312
+FC Power : 5094.721742875149 W
+FC Voltage : 53.798540051479925 V
+PH2 : 1.934852199415246 atm
+PO2 : 1.9647591154226773 atm
+Power-Thermal : 5155.60625712485 W
+###########
+I :94.8 A
+
+E : 54.097355785107695 V
+FC Efficiency : 0.39188501016976246
+FC Power : 5100.047953790753 W
+FC Voltage : 53.79797419610499 V
+PH2 : 1.9346049126988327 atm
+PO2 : 1.9646194974703872 atm
+Power-Thermal : 5161.104046209247 W
+###########
+I :94.9 A
+
+E : 54.09714332209077 V
+FC Efficiency : 0.39188088847138103
+FC Power : 5105.374054251428 W
+FC Voltage : 53.79740836935119 V
+PH2 : 1.9343576259824196 atm
+PO2 : 1.9644798795180969 atm
+Power-Thermal : 5166.601945748572 W
+###########
+I :95.0 A
+
+E : 54.096930834534746 V
+FC Efficiency : 0.3918767669806285
+FC Power : 5110.700044254565 W
+FC Voltage : 53.79684257110068 V
+PH2 : 1.9341103392660062 atm
+PO2 : 1.964340261565807 atm
+Power-Thermal : 5172.099955745434 W
+###########
+I :95.1 A
+
+E : 54.096718322433695 V
+FC Efficiency : 0.3918726456966486
+FC Power : 5116.025923797536 W
+FC Voltage : 53.79627680123592 V
+PH2 : 1.9338630525495932 atm
+PO2 : 1.9642006436135167 atm
+Power-Thermal : 5177.598076202464 W
+###########
+I :95.2 A
+
+E : 54.09650578578174 V
+FC Efficiency : 0.39186852461858807
+FC Power : 5121.351692877706 W
+FC Voltage : 53.79571105963977 V
+PH2 : 1.9336157658331798 atm
+PO2 : 1.9640610256612265 atm
+Power-Thermal : 5183.096307122293 W
+###########
+I :95.3 A
+
+E : 54.096293224572946 V
+FC Efficiency : 0.3918644037455959
+FC Power : 5126.677351492422 W
+FC Voltage : 53.795145346195405 V
+PH2 : 1.9333684791167667 atm
+PO2 : 1.9639214077089362 atm
+Power-Thermal : 5188.594648507577 W
+###########
+I :95.4 A
+
+E : 54.096080638801425 V
+FC Efficiency : 0.39186028307682363
+FC Power : 5132.002899639018 W
+FC Voltage : 53.794579660786354 V
+PH2 : 1.9331211924003533 atm
+PO2 : 1.963781789756646 atm
+Power-Thermal : 5194.093100360981 W
+###########
+I :95.5 A
+
+E : 54.09586802846125 V
+FC Efficiency : 0.3918561626114256
+FC Power : 5137.328337314816 W
+FC Voltage : 53.7940140032965 V
+PH2 : 1.9328739056839404 atm
+PO2 : 1.9636421718043562 atm
+Power-Thermal : 5199.591662685183 W
+###########
+I :95.6 A
+
+E : 54.095655393546515 V
+FC Efficiency : 0.39185204234855814
+FC Power : 5142.653664517123 W
+FC Voltage : 53.79344837361007 V
+PH2 : 1.932626618967527 atm
+PO2 : 1.9635025538520658 atm
+Power-Thermal : 5205.090335482877 W
+###########
+I :95.7 A
+
+E : 54.09544273405132 V
+FC Efficiency : 0.3918479222873807
+FC Power : 5147.9788812432325 W
+FC Voltage : 53.79288277161162 V
+PH2 : 1.9323793322511138 atm
+PO2 : 1.9633629358997757 atm
+Power-Thermal : 5210.589118756768 W
+###########
+I :95.8 A
+
+E : 54.09523004996973 V
+FC Efficiency : 0.39184380242705474
+FC Power : 5153.303987490426 W
+FC Voltage : 53.79231719718608 V
+PH2 : 1.9321320455347004 atm
+PO2 : 1.9632233179474858 atm
+Power-Thermal : 5216.088012509573 W
+###########
+I :95.9 A
+
+E : 54.095017341295815 V
+FC Efficiency : 0.39183968276674425
+FC Power : 5158.628983255969 W
+FC Voltage : 53.79175165021865 V
+PH2 : 1.931884758818287 atm
+PO2 : 1.9630836999951955 atm
+Power-Thermal : 5221.587016744032 W
+###########
+I :96.0 A
+
+E : 54.09480460802368 V
+FC Efficiency : 0.39183556330561586
+FC Power : 5163.953868537115 W
+FC Voltage : 53.79118613059495 V
+PH2 : 1.9316374721018739 atm
+PO2 : 1.9629440820429054 atm
+Power-Thermal : 5227.086131462884 W
+###########
+I :96.1 A
+
+E : 54.09459185014739 V
+FC Efficiency : 0.3918314440428387
+FC Power : 5169.278643331106 W
+FC Voltage : 53.7906206382009 V
+PH2 : 1.931390185385461 atm
+PO2 : 1.962804464090615 atm
+Power-Thermal : 5232.585356668893 W
+###########
+I :96.2 A
+
+E : 54.09437906766101 V
+FC Efficiency : 0.391827324977584
+FC Power : 5174.603307635167 W
+FC Voltage : 53.79005517292273 V
+PH2 : 1.9311428986690475 atm
+PO2 : 1.9626648461383247 atm
+Power-Thermal : 5238.084692364833 W
+###########
+I :96.3 A
+
+E : 54.09416626055862 V
+FC Efficiency : 0.39182320610902566
+FC Power : 5179.92786144651 W
+FC Voltage : 53.78948973464704 V
+PH2 : 1.9308956119526341 atm
+PO2 : 1.9625252281860348 atm
+Power-Thermal : 5243.5841385534895 W
+###########
+I :96.4 A
+
+E : 54.09395342883428 V
+FC Efficiency : 0.39181908743634003
+FC Power : 5185.252304762337 W
+FC Voltage : 53.78892432326076 V
+PH2 : 1.930648325236221 atm
+PO2 : 1.9623856102337447 atm
+Power-Thermal : 5249.083695237663 W
+###########
+I :96.5 A
+
+E : 54.093740572482076 V
+FC Efficiency : 0.39181496895870577
+FC Power : 5190.576637579834 W
+FC Voltage : 53.78835893865113 V
+PH2 : 1.9304010385198076 atm
+PO2 : 1.9622459922814544 atm
+Power-Thermal : 5254.583362420166 W
+###########
+I :96.6 A
+
+E : 54.09352769149605 V
+FC Efficiency : 0.39181085067530397
+FC Power : 5195.900859896174 W
+FC Voltage : 53.78779358070573 V
+PH2 : 1.9301537518033947 atm
+PO2 : 1.9621063743291642 atm
+Power-Thermal : 5260.083140103826 W
+###########
+I :96.7 A
+
+E : 54.093314785870284 V
+FC Efficiency : 0.3918067325853183
+FC Power : 5201.224971708519 W
+FC Voltage : 53.7872282493125 V
+PH2 : 1.9299064650869813 atm
+PO2 : 1.9619667563768743 atm
+Power-Thermal : 5265.583028291481 W
+###########
+I :96.8 A
+
+E : 54.09310185559883 V
+FC Efficiency : 0.3918026146879345
+FC Power : 5206.548973014013 W
+FC Voltage : 53.78666294435965 V
+PH2 : 1.929659178370568 atm
+PO2 : 1.961827138424584 atm
+Power-Thermal : 5271.083026985985 W
+###########
+I :96.9 A
+
+E : 54.09288890067574 V
+FC Efficiency : 0.3917984969823407
+FC Power : 5211.872863809793 W
+FC Voltage : 53.78609766573573 V
+PH2 : 1.9294118916541547 atm
+PO2 : 1.9616875204722939 atm
+Power-Thermal : 5276.583136190207 W
+###########
+I :97.0 A
+
+E : 54.09267592109508 V
+FC Efficiency : 0.39179437946772777
+FC Power : 5217.196644092978 W
+FC Voltage : 53.78553241332967 V
+PH2 : 1.9291646049377418 atm
+PO2 : 1.9615479025200036 atm
+Power-Thermal : 5282.0833559070215 W
+###########
+I :97.1 A
+
+E : 54.0924629168509 V
+FC Efficiency : 0.3917902621432885
+FC Power : 5222.520313860675 W
+FC Voltage : 53.78496718703064 V
+PH2 : 1.9289173182213284 atm
+PO2 : 1.9614082845677137 atm
+Power-Thermal : 5287.5836861393245 W
+###########
+I :97.2 A
+
+E : 54.092249887937236 V
+FC Efficiency : 0.39178614500821807
+FC Power : 5227.843873109979 W
+FC Voltage : 53.78440198672818 V
+PH2 : 1.9286700315049152 atm
+PO2 : 1.9612686666154233 atm
+Power-Thermal : 5293.084126890021 W
+###########
+I :97.3 A
+
+E : 54.09203683434817 V
+FC Efficiency : 0.39178202806171447
+FC Power : 5233.167321837974 W
+FC Voltage : 53.78383681231217 V
+PH2 : 1.9284227447885018 atm
+PO2 : 1.9611290486631332 atm
+Power-Thermal : 5298.584678162026 W
+###########
+I :97.4 A
+
+E : 54.09182375607773 V
+FC Efficiency : 0.3917779113029774
+FC Power : 5238.490660041725 W
+FC Voltage : 53.78327166367274 V
+PH2 : 1.928175458072089 atm
+PO2 : 1.9609894307108429 atm
+Power-Thermal : 5304.085339958275 W
+###########
+I :97.5 A
+
+E : 54.09161065311996 V
+FC Efficiency : 0.3917737947312092
+FC Power : 5243.813887718289 W
+FC Voltage : 53.7827065407004 V
+PH2 : 1.9279281713556755 atm
+PO2 : 1.960849812758553 atm
+Power-Thermal : 5309.5861122817105 W
+###########
+I :97.6 A
+
+E : 54.091397525468906 V
+FC Efficiency : 0.3917696783456146
+FC Power : 5249.13700486471 W
+FC Voltage : 53.78214144328597 V
+PH2 : 1.9276808846392621 atm
+PO2 : 1.9607101948062629 atm
+Power-Thermal : 5315.086995135288 W
+###########
+I :97.7 A
+
+E : 54.0911843731186 V
+FC Efficiency : 0.39176556214540015
+FC Power : 5254.460011478016 W
+FC Voltage : 53.78157637132053 V
+PH2 : 1.927433597922849 atm
+PO2 : 1.9605705768539725 atm
+Power-Thermal : 5320.587988521984 W
+###########
+I :97.8 A
+
+E : 54.090971196063094 V
+FC Efficiency : 0.39176144612977526
+FC Power : 5259.7829075552245 W
+FC Voltage : 53.78101132469555 V
+PH2 : 1.9271863112064358 atm
+PO2 : 1.9604309589016824 atm
+Power-Thermal : 5326.089092444775 W
+###########
+I :97.9 A
+
+E : 54.090757994296425 V
+FC Efficiency : 0.39175733029795134
+FC Power : 5265.105693093341 W
+FC Voltage : 53.78044630330276 V
+PH2 : 1.9269390244900224 atm
+PO2 : 1.960291340949392 atm
+Power-Thermal : 5331.59030690666 W
+###########
+I :98.0 A
+
+E : 54.090544767812624 V
+FC Efficiency : 0.39175321464914203
+FC Power : 5270.428368089354 W
+FC Voltage : 53.77988130703422 V
+PH2 : 1.926691737773609 atm
+PO2 : 1.9601517229971022 atm
+Power-Thermal : 5337.091631910645 W
+###########
+I :98.1 A
+
+E : 54.090331516605715 V
+FC Efficiency : 0.39174909918256334
+FC Power : 5275.7509325402425 W
+FC Voltage : 53.77931633578229 V
+PH2 : 1.926444451057196 atm
+PO2 : 1.960012105044812 atm
+Power-Thermal : 5342.593067459757 W
+###########
+I :98.2 A
+
+E : 54.090118240669725 V
+FC Efficiency : 0.39174498389743334
+FC Power : 5281.073386442974 W
+FC Voltage : 53.77875138943965 V
+PH2 : 1.9261971643407827 atm
+PO2 : 1.9598724870925217 atm
+Power-Thermal : 5348.094613557027 W
+###########
+I :98.3 A
+
+E : 54.08990493999869 V
+FC Efficiency : 0.39174086879297254
+FC Power : 5286.395729794499 W
+FC Voltage : 53.778186467899275 V
+PH2 : 1.9259498776243695 atm
+PO2 : 1.9597328691402314 atm
+Power-Thermal : 5353.5962702055 W
+###########
+I :98.4 A
+
+E : 54.089691614586634 V
+FC Efficiency : 0.3917367538684037
+FC Power : 5291.717962591759 W
+FC Voltage : 53.77762157105446 V
+PH2 : 1.9257025909079561 atm
+PO2 : 1.9595932511879415 atm
+Power-Thermal : 5359.098037408241 W
+###########
+I :98.5 A
+
+E : 54.08947826442758 V
+FC Efficiency : 0.39173263912295164
+FC Power : 5297.040084831682 W
+FC Voltage : 53.7770566987988 V
+PH2 : 1.9254553041915432 atm
+PO2 : 1.9594536332356514 atm
+Power-Thermal : 5364.599915168317 W
+###########
+I :98.6 A
+
+E : 54.08926488951555 V
+FC Efficiency : 0.39172852455584345
+FC Power : 5302.362096511182 W
+FC Voltage : 53.776491851026194 V
+PH2 : 1.9252080174751298 atm
+PO2 : 1.959314015283361 atm
+Power-Thermal : 5370.101903488817 W
+###########
+I :98.7 A
+
+E : 54.08905148984455 V
+FC Efficiency : 0.3917244101663085
+FC Power : 5307.683997627163 W
+FC Voltage : 53.77592702763083 V
+PH2 : 1.9249607307587167 atm
+PO2 : 1.959174397331071 atm
+Power-Thermal : 5375.6040023728365 W
+###########
+I :98.8 A
+
+E : 54.08883806540861 V
+FC Efficiency : 0.3917202959535782
+FC Power : 5313.005788176512 W
+FC Voltage : 53.77536222850721 V
+PH2 : 1.9247134440423033 atm
+PO2 : 1.959034779378781 atm
+Power-Thermal : 5381.106211823487 W
+###########
+I :98.9 A
+
+E : 54.08862461620174 V
+FC Efficiency : 0.39171618191688623
+FC Power : 5318.32746815611 W
+FC Voltage : 53.77479745355014 V
+PH2 : 1.9244661573258903 atm
+PO2 : 1.9588951614264907 atm
+Power-Thermal : 5386.608531843891 W
+###########
+I :99.0 A
+
+E : 54.08841114221796 V
+FC Efficiency : 0.3917120680554685
+FC Power : 5323.649037562816 W
+FC Voltage : 53.774232702654714 V
+PH2 : 1.924218870609477 atm
+PO2 : 1.9587555434742006 atm
+Power-Thermal : 5392.110962437183 W
+###########
+I :99.1 A
+
+E : 54.08819764345126 V
+FC Efficiency : 0.39170795436856304
+FC Power : 5328.970496393488 W
+FC Voltage : 53.773667975716336 V
+PH2 : 1.9239715838930638 atm
+PO2 : 1.9586159255219102 atm
+Power-Thermal : 5397.613503606511 W
+###########
+I :99.2 A
+
+E : 54.08798411989566 V
+FC Efficiency : 0.39170384085540993
+FC Power : 5334.291844644963 W
+FC Voltage : 53.77310327263068 V
+PH2 : 1.9237242971766504 atm
+PO2 : 1.9584763075696203 atm
+Power-Thermal : 5403.116155355036 W
+###########
+I :99.3 A
+
+E : 54.08777057154518 V
+FC Efficiency : 0.39169972751525167
+FC Power : 5339.613082314069 W
+FC Voltage : 53.77253859329375 V
+PH2 : 1.9234770104602374 atm
+PO2 : 1.95833668961733 atm
+Power-Thermal : 5408.61891768593 W
+###########
+I :99.4 A
+
+E : 54.08755699839379 V
+FC Efficiency : 0.39169561434733263
+FC Power : 5344.934209397621 W
+FC Voltage : 53.77197393760182 V
+PH2 : 1.923229723743824 atm
+PO2 : 1.9581970716650399 atm
+Power-Thermal : 5414.1217906023785 W
+###########
+I :99.5 A
+
+E : 54.08734340043549 V
+FC Efficiency : 0.3916915013508992
+FC Power : 5350.255225892419 W
+FC Voltage : 53.77140930545144 V
+PH2 : 1.922982437027411 atm
+PO2 : 1.9580574537127495 atm
+Power-Thermal : 5419.624774107581 W
+###########
+I :99.6 A
+
+E : 54.08712977766432 V
+FC Efficiency : 0.39168738852520046
+FC Power : 5355.5761317952565 W
+FC Voltage : 53.77084469673952 V
+PH2 : 1.9227351503109975 atm
+PO2 : 1.9579178357604594 atm
+Power-Thermal : 5425.127868204742 W
+###########
+I :99.7 A
+
+E : 54.08691613007425 V
+FC Efficiency : 0.39168327586948715
+FC Power : 5360.89692710291 W
+FC Voltage : 53.77028011136319 V
+PH2 : 1.9224878635945841 atm
+PO2 : 1.9577782178081695 atm
+Power-Thermal : 5430.631072897089 W
+###########
+I :99.8 A
+
+E : 54.08670245765926 V
+FC Efficiency : 0.3916791633830119
+FC Power : 5366.217611812143 W
+FC Voltage : 53.769715549219875 V
+PH2 : 1.922240576878171 atm
+PO2 : 1.9576385998558792 atm
+Power-Thermal : 5436.134388187856 W
+###########
+I :99.9 A
+
+E : 54.086488760413374 V
+FC Efficiency : 0.3916750510650302
+FC Power : 5371.538185919714 W
+FC Voltage : 53.769151010207345 V
+PH2 : 1.9219932901617578 atm
+PO2 : 1.957498981903589 atm
+Power-Thermal : 5441.637814080286 W
+###########
diff --git a/Documents/Padulles-II/Padulles2_Test.csv b/Documents/Padulles-II/Padulles2_Test.csv
new file mode 100644
index 00000000..0105cc62
--- /dev/null
+++ b/Documents/Padulles-II/Padulles2_Test.csv
@@ -0,0 +1,1000 @@
+I (A),E (V),FC Efficiency (),FC Power (W),FC Voltage (V),PH2 (atm),PH2O (atm),PO2 (atm),Power-Thermal (W)
+0.1,3.0120122442199793,0.4265389961269225,0.33270041697899955,3.3270041697899955,2.169018669476965,2.669687710942903,2.09696938340326,0.2822995830210005
+0.2,3.012012104448671,0.42225504989786394,0.6587178778406679,3.293589389203339,2.1690046190953503,2.6696704173475743,2.0969614505650616,0.5712821221593323
+0.3,3.0120119646768333,0.4197329719509197,0.9821751543651522,3.273917181217174,2.1689905687137356,2.669653123752246,2.0969535177268637,0.8628248456348478
+0.4,3.0120118249044676,0.41793223959535725,1.3039485875375147,3.259871468843787,2.1689765183321215,2.6696358301569174,2.0969455848886653,1.1560514124624854
+0.5,3.0120116851315726,0.41652676431084773,1.6244543808123062,3.2489087616246124,2.1689624679505073,2.669618536561589,2.096937652050467,1.450545619187694
+0.6,3.012011545358149,0.4153712975747617,1.943937672649885,3.2398961210831416,2.1689484175688927,2.6696012429662606,2.0969297192122687,1.7460623273501152
+0.7,3.0120114055841967,0.4143883594017745,2.2625604423336885,3.232229203333841,2.1689343671872785,2.669583949370932,2.0969217863740703,2.0424395576663112
+0.8,3.0120112658097153,0.4135317011453444,2.580437815146949,3.225547268933686,2.168920316805664,2.6695666557756033,2.096913853535872,2.3395621848530515
+0.9,3.0120111260347056,0.41277149148017567,2.897655870190834,3.219617633545371,2.1689062664240497,2.6695493621802746,2.0969059206976737,2.6373441298091667
+1.0,3.0120109862591664,0.4120873617867766,3.2142814219368576,3.2142814219368576,2.168892216042435,2.669532068584946,2.0968979878594753,2.9357185780631427
+1.1,3.0120108464830992,0.4114647839578894,3.5303678463586916,3.2094253148715377,2.168878165660821,2.6695147749896178,2.096890055021277,3.234632153641309
+1.2,3.0120107067065027,0.41089303097642904,3.845958769939376,3.2049656416161465,2.1688641152792063,2.669497481394289,2.0968821221830787,3.5340412300606245
+1.3,3.0120105669293777,0.4103639566273662,4.161090520201494,3.2008388616934567,2.168850064897592,2.669480187798961,2.0968741893448803,3.833909479798507
+1.4,3.012010427151724,0.40987122872897686,4.475793817720427,3.1969955840860194,2.168836014515978,2.6694628942036323,2.096866256506682,4.1342061822795735
+1.5,3.012010287373541,0.409409827543193,4.790094982255358,3.1933966548369055,2.1688219641343633,2.6694456006083036,2.0968583236684837,4.434905017744642
+1.6,3.0120101475948298,0.40897570639787845,5.104016815845523,3.190010509903452,2.1688079137527487,2.669428307012975,2.096850390830286,4.7359831841544775
+1.7,3.012010007815589,0.4085655553769282,5.417579264298068,3.18681133194004,2.1687938633711346,2.6694110134176463,2.0968424579920875,5.037420735701932
+1.8,3.01200986803582,0.40817663265783805,5.730799922516047,3.183777734731137,2.16877981298952,2.6693937198223177,2.096834525153889,5.339200077483954
+1.9,3.012009728255522,0.4078066415116356,6.04369442720244,3.180891803790758,2.1687657626079058,2.669376426226989,2.096826592315691,5.6413055727975605
+2.0,3.012009588474695,0.40745363888936376,6.356276766674075,3.1781383833370374,2.168751712226291,2.669359132631661,2.0968186594774925,5.943723233325926
+2.1,3.0120094486933398,0.40711596633503955,6.668559528567949,3.1755045374133086,2.168737661844677,2.669341839036332,2.096810726639294,6.246440471432053
+2.2,3.0120093089114555,0.4067921969851981,6.980554100266,3.172979136484545,2.168723611463063,2.669324545441004,2.096802793801096,6.5494458997340015
+2.3,3.012009169129042,0.4064810943595029,7.292270832809483,3.170552536004123,2.168709561081448,2.6693072518456753,2.0967948609628975,6.8527291671905175
+2.4,3.0120090293460997,0.40618157992825576,7.603719176256948,3.168216323440395,2.168695510699834,2.6692899582503467,2.096786928124699,7.156280823743052
+2.5,3.0120088895626287,0.40589270730496035,7.914907792446728,3.1659631169786913,2.1686814603182194,2.669272664655018,2.096778995286501,7.460092207553273
+2.6,3.0120087497786283,0.40561364150350754,8.225844649691133,3.163786403727359,2.168667409936605,2.6692553710596894,2.0967710624483025,7.764155350308868
+2.7,3.0120086099941004,0.405343642112191,8.536537102882745,3.1616804084750902,2.1686533595549906,2.6692380774643607,2.096763129610104,8.068462897117257
+2.8,3.0120084702090426,0.4050820495292294,8.84699196171837,3.1596399863279894,2.168639309173376,2.6692207838690325,2.096755196771906,8.37300803828163
+2.9,3.0120083304234564,0.404828273614746,9.157215549165555,3.1576605341950192,2.168625258791762,2.669203490273704,2.0967472639337075,8.677784450834444
+3.0,3.012008190637341,0.40458178426735336,9.467213751856068,3.1557379172853564,2.1686112084101477,2.6691861966783756,2.0967393310955096,8.982786248143931
+3.1,3.0120080508506963,0.4043421035464688,9.776992063753617,3.1538684076624572,2.168597158028533,2.669168903083047,2.0967313982573113,9.288007936246384
+3.2,3.0120079110635234,0.40410879904574315,10.08655562418175,3.152048632556797,2.168583107646919,2.6691516094877183,2.096723465419113,9.593444375818251
+3.3,3.0120077712758215,0.40388147828648513,10.395909251094128,3.1502755306345844,2.1685690572653042,2.6691343158923897,2.0967155325809146,9.899090748905872
+3.4,3.0120076314875908,0.403659783948294,10.705057470308757,3.1485463147966937,2.16855500688369,2.669117022297061,2.0967075997427163,10.204942529691243
+3.5,3.012007491698831,0.4034433897912177,11.014004541300244,3.1468584403714983,2.1685409565020755,2.6690997287017324,2.096699666904518,10.510995458699757
+3.6,3.0120073519095425,0.4032319971525013,11.322754480042237,3.1452095777895104,2.168526906120461,2.669082435106404,2.0966917340663196,10.817245519957764
+3.7,3.012007212119725,0.40302533192342654,11.631311079310091,3.1435975890027272,2.1685128557388467,2.6690651415110755,2.0966838012281213,11.123688920689911
+3.8,3.0120070723293786,0.402823141929393,11.939677926787208,3.1420205070492657,2.168498805357232,2.669047847915747,2.096675868389923,11.43032207321279
+3.9,3.0120069325385037,0.4026251946503726,12.247858421264336,3.140476518272907,2.168484754975618,2.6690305543204187,2.0966679355517246,11.737141578735665
+4.0,3.0120067927470995,0.40243127523001193,12.555855787176373,3.1389639467940933,2.1684707045940037,2.66901326072509,2.0966600027135263,12.044144212823628
+4.1,3.012006652955166,0.4022411847306048,12.863673087684742,3.1374812408987176,2.168456654212389,2.6689959671297614,2.096652069875328,12.351326912315258
+4.2,3.0120065131627043,0.40205473859837493,13.171313236482764,3.1360269610673246,2.168442603830775,2.6689786735344327,2.0966441370371296,12.658686763517238
+4.3,3.0120063733697133,0.40187176530936514,13.478779008476108,3.1345997694130485,2.1684285534491603,2.668961379939104,2.0966362041989317,12.966220991523892
+4.4,3.0120062335761935,0.40169210517101717,13.786073049469312,3.1331984203339345,2.168414503067546,2.6689440863437754,2.0966282713607334,13.273926950530692
+4.5,3.0120060937821447,0.40151560925844015,14.09319788497125,3.131821752215833,2.1684004526859315,2.6689267927484472,2.096620338522535,13.581802115028752
+4.6,3.012005953987567,0.40134213846760247,14.400155928217576,3.1304686800472994,2.1683864023043173,2.6689094991531186,2.0966124056843367,13.889844071782424
+4.7,3.0120058141924604,0.40117156267035736,14.7069494874953,3.1291381888287875,2.168372351922703,2.6688922055577904,2.0966044728461384,14.1980505125047
+4.8,3.012005674396825,0.40100375995843224,15.013580772843703,3.1278293276757716,2.1683583015410886,2.6688749119624617,2.09659654000794,14.506419227156297
+4.9,3.01200553460066,0.4008386159653759,15.320051902196669,3.126541204529932,2.168344251159474,2.668857618367133,2.0965886071697417,14.814948097803336
+5.0,3.0120053948039667,0.4006760232570103,15.626364907023403,3.1252729814046805,2.1683302007778598,2.6688403247718044,2.0965806743315434,15.123635092976599
+5.1,3.0120052550067444,0.4005158807822461,15.932521737517751,3.12402387010152,2.168316150396245,2.668823031176476,2.096572741493345,15.432478262482249
+5.2,3.012005115208993,0.4003580933772275,16.23852426738035,3.1227931283423747,2.168302100014631,2.668805737581147,2.0965648086551467,15.741475732619655
+5.3,3.0120049754107123,0.4002025713167107,16.544374298232825,3.121580056270344,2.1682880496330164,2.668788443985819,2.0965568758169484,16.050625701767178
+5.4,3.0120048356119034,0.40004922990737746,16.850073563698743,3.1203839932775446,2.168273999251402,2.6687711503904903,2.09654894297875,16.35992643630126
+5.5,3.012004695812565,0.39989798911846486,17.155623733182146,3.1192043151240263,2.1682599488697876,2.6687538567951616,2.0965410101405517,16.669376266817856
+5.6,3.012004556012698,0.399748773245679,17.46102641537126,3.1180404313162966,2.1682458984881734,2.6687365631998334,2.0965330773023534,16.97897358462874
+5.7,3.0120044162123016,0.3996015106048541,17.766283161491813,3.116891782717862,2.1682318481065592,2.668719269604505,2.096525144464155,17.28871683850819
+5.8,3.0120042764113766,0.39945613325225515,18.071395468332025,3.1157578393675904,2.1682177977249446,2.668701976009176,2.0965172116259567,17.598604531667977
+5.9,3.012004136609922,0.39931257672879006,18.37636478105892,3.1146380984845625,2.16820374734333,2.6686846824138475,2.0965092787877584,17.908635218941086
+6.0,3.0120039968079393,0.39917077982571875,18.681192495843636,3.113532082640606,2.168189696961716,2.668667388818519,2.0965013459495605,18.218807504156366
+6.1,3.012003857005427,0.39903068436972877,18.985879962311696,3.1124393380838846,2.168175646580101,2.6686500952231906,2.096493413111362,18.529120037688305
+6.2,3.0120037172023864,0.398892235025487,19.290428485832553,3.111359433198799,2.168161596198487,2.668632801627862,2.096485480273164,18.83957151416745
+6.3,3.012003577398816,0.39875537911398834,19.594839329661387,3.110291957089109,2.1681475458168724,2.6686155080325333,2.0964775474349655,19.150160670338614
+6.4,3.012003437594717,0.3986200664452105,19.89911371694491,3.1092365182726422,2.1681334954352582,2.668598214437205,2.096469614596767,19.460886283055093
+6.5,3.0120032977900886,0.39848624916374237,20.20325283260174,3.1081927434771908,2.168119445053644,2.6685809208418765,2.096461681758569,19.771747167398264
+6.6,3.012003157984932,0.39835388160619817,20.50725782508708,3.107160276528346,2.1681053946720295,2.668563627246548,2.0964537489203705,20.08274217491292
+6.7,3.012003018179245,0.39822292016935323,20.811129808050403,3.1061387773209557,2.1680913442904153,2.668546333651219,2.096445816082172,20.3938701919496
+6.8,3.01200287837303,0.3980933231880492,21.11486986189413,3.105127920866784,2.1680772939088007,2.6685290400558905,2.096437883243974,20.70513013810587
+6.9,3.0120027385662858,0.3979650508220117,21.418479035240672,3.1041273964116916,2.1680632435271865,2.668511746460562,2.0964299504057755,21.01652096475933
+7.0,3.012002598759013,0.3978380649508117,21.72195834631432,3.1031369066163315,2.168049193145572,2.6684944528652337,2.096422017567577,21.32804165368568
+7.1,3.01200245895121,0.3977123290762773,22.02530878424424,3.102156166794963,2.1680351427639573,2.668477159269905,2.096414084729379,21.639691215755764
+7.2,3.012002319142879,0.3975878082317306,22.328531310293993,3.101184904207499,2.168021092382343,2.6684598656745764,2.0964061518911805,21.95146868970601
+7.3,3.0120021793340186,0.39746446889748416,22.63162685902275,3.1002228574003765,2.168007042000729,2.668442572079248,2.096398219052982,22.263373140977254
+7.4,3.0120020395246296,0.39734227892208757,22.934596339382896,3.099269775592283,2.1679929916191143,2.6684252784839195,2.096390286214784,22.57540366061711
+7.5,3.012001899714711,0.39722120744885875,23.237440635758237,3.098325418101098,2.1679789412375,2.668407984888591,2.0963823533765855,22.887559364241767
+7.6,3.0120017599042637,0.3971012248472823,23.540160608946895,3.097389553808802,2.1679648908558855,2.6683906912932622,2.096374420538387,23.199839391053107
+7.7,3.012001620093287,0.39698230264889134,23.842757097092417,3.096461960661353,2.1679508404742713,2.6683733976979336,2.0963664877001893,23.512242902907587
+7.8,3.012001480281781,0.3968644134872866,24.14523091656652,3.095542425200836,2.1679367900926567,2.6683561041026054,2.096358554861991,23.824769083433484
+7.9,3.0120013404697463,0.396747531041976,24.447582862806566,3.0946307421274133,2.1679227397110425,2.6683388105072767,2.0963506220237926,24.137417137193438
+8.0,3.012001200657183,0.39663162998574725,24.74981371111063,3.0937267138888287,2.167908689329428,2.668321516911948,2.0963426891855943,24.450186288889373
+8.1,3.01200106084409,0.3965166859353082,25.051924217392774,3.0928301502954043,2.1678946389478138,2.66830422331662,2.096334756347396,24.763075782607228
+8.2,3.0120009210304683,0.3964026754049578,25.353915118901103,3.0919408681586713,2.1678805885661996,2.6682869297212912,2.0963268235091976,25.076084881098897
+8.3,3.0120007812163174,0.3962895757630629,25.655787134900695,3.0910586909518907,2.167866538184585,2.6682696361259626,2.0963188906709993,25.389212865099314
+8.4,3.0120006414016376,0.3961773651911421,25.957540967323638,3.090183448490909,2.1678524878029704,2.668252342530634,2.096310957832801,25.70245903267637
+8.5,3.012000501586428,0.396066022645372,26.259177301388167,3.089314976633902,2.167838437421356,2.6682350489353053,2.0963030249946026,26.015822698611835
+8.6,3.0120003617706903,0.39595552782034316,26.56069680618862,3.088453116998677,2.1678243870397416,2.668217755339977,2.0962950921564043,26.32930319381138
+8.7,3.012000221954423,0.3958458611149115,26.862100135257894,3.08759771669631,2.1678103366581274,2.6682004617446484,2.096287159318206,26.642899864742105
+8.8,3.0120000821376265,0.3957370036000025,27.163387927104175,3.0867486280800196,2.1677962862765128,2.6681831681493198,2.0962792264800076,26.956612072895833
+8.9,3.0119999423203008,0.3956289369882324,27.464560805723096,3.085905708508213,2.1677822358948986,2.668165874553991,2.0962712936418093,27.27043919427691
+9.0,3.011999802502446,0.3955216436052289,27.76561938108707,3.0850688201207856,2.1677681855132844,2.668148580958663,2.096263360803611,27.58438061891293
+9.1,3.0119996626840626,0.3954151063625345,28.0665642496127,3.0842378296277695,2.16775413513167,2.6681312873633343,2.0962554279654126,27.8984357503873
+9.2,3.0119995228651497,0.39530930873199144,28.367395994607705,3.0834126081095334,2.1677400847500556,2.6681139937680056,2.0962474951272143,28.212604005392294
+9.3,3.0119993830457084,0.395204234721512,28.668115186698483,3.082593030827794,2.167726034368441,2.668096700172677,2.096239562289016,28.526884813301525
+9.4,3.0119992432257368,0.395099868852143,28.968722384239125,3.0817789770467154,2.1677119839868264,2.6680794065773483,2.096231629450818,28.84127761576088
+9.5,3.0119991034052367,0.39499619613634557,29.269218133703205,3.0809703298634954,2.1676979336052122,2.66806211298202,2.0962236966126198,29.1557818662968
+9.6,3.0119989635842077,0.394893202057411,29.569602970058934,3.080166976047806,2.1676838832235976,2.6680448193866915,2.0962157637744214,29.470397029941065
+9.7,3.011998823762649,0.39479087254994344,29.869877417128723,3.079368805889559,2.1676698328419834,2.668027525791363,2.096207830936223,29.785122582871278
+9.8,3.0119986839405617,0.3946891939813442,30.170041987933956,3.078575713054485,2.1676557824603693,2.6680102321960346,2.0961998980980248,30.09995801206605
+9.9,3.0119985441179447,0.39458815313423484,30.470097185025615,3.077787594447032,2.1676417320787547,2.667992938600706,2.0961919652598264,30.41490281497439
+10.0,3.0119984042947987,0.3944877371897646,30.77004350080164,3.077004350080164,2.1676276816971405,2.6679756450053773,2.096184032421628,30.729956499198362
+10.1,3.0119982644711234,0.39438793371174774,31.069881417811487,3.0762258829516327,2.167613631315526,2.6679583514100487,2.0961760995834298,31.04511858218851
+10.2,3.0119981246469196,0.3942887306315829,31.369611409048733,3.0754520989263465,2.1675995809339117,2.66794105781472,2.0961681667452314,31.360388590951267
+10.3,3.011997984822186,0.39419011623390676,31.669233938232075,3.074682906624473,2.167585530552297,2.667923764219392,2.096160233907033,31.675766061767934
+10.4,3.0119978449969236,0.39409207914294314,31.96874946007555,3.0739182173149566,2.1675714801706825,2.667906470624063,2.0961523010688348,31.991250539924454
+10.5,3.011997705171132,0.393994608309503,32.2681584205483,3.073157944814124,2.1675574297890683,2.6678891770287345,2.0961443682306364,32.3068415794517
+10.6,3.011997565344811,0.3938976929986017,32.56746125712439,3.072402005389094,2.1675433794074537,2.667871883433406,2.096136435392438,32.622538742875605
+10.7,3.011997425517961,0.39380132277765795,32.866658399023336,3.0716503176657324,2.1675293290258395,2.6678545898380777,2.0961285025542398,32.93834160097666
+10.8,3.011997285690582,0.39370548750524026,33.165750267441446,3.0709028025408744,2.1675152786442253,2.667837296242749,2.0961205697160414,33.25424973255856
+10.9,3.011997145862674,0.3936101773203339,33.46473727577479,3.0701593830986043,2.1675012282626107,2.6678200026474204,2.096112636877843,33.570262724225216
+11.0,3.0119970060342363,0.393515382632096,33.76361982983384,3.069419984530349,2.1674871778809965,2.6678027090520917,2.0961047040396448,33.88638017016616
+11.1,3.011996866205269,0.3934210941100763,34.06239832805041,3.0686845340585958,2.167473127499382,2.667785415456763,2.096096771201447,34.20260167194959
+11.2,3.0119967263757736,0.39332730267487476,34.36107316167706,3.0679529608640235,2.1674590771177678,2.667768121861435,2.0960888383632486,34.51892683832294
+11.3,3.0119965865457483,0.3932339994892149,34.65964471497941,3.0672251960158765,2.167445026736153,2.667750828266106,2.09608090552505,34.835355285020604
+11.4,3.0119964467151936,0.3931411759494109,34.95811336542162,3.066501172405405,2.1674309763545385,2.6677335346707776,2.096072972686852,35.15188663457839
+11.5,3.0119963068841105,0.393048823677207,35.25647948384547,3.0657808246822147,2.167416925972925,2.6677162410754494,2.0960650398486536,35.468520516154534
+11.6,3.0119961670524975,0.3929569345119696,35.55474343464301,3.065064089193363,2.16740287559131,2.6676989474801207,2.0960571070104552,35.785256565356995
+11.7,3.0119960272203556,0.3928655005032158,35.85290557592347,3.0643509039250834,2.1673888252096956,2.667681653884792,2.096049174172257,36.102094424076526
+11.8,3.0119958873876844,0.39277451390345847,36.15096625967432,3.063641208446976,2.1673747748280814,2.6676643602894634,2.0960412413340586,36.41903374032569
+11.9,3.011995747554484,0.3926839671613541,36.448925831916895,3.0629349438585627,2.1673607244464668,2.6676470666941348,2.0960333084958602,36.73607416808311
+12.0,3.0119956077207544,0.39259385291513743,36.74678463285687,3.0622320527380724,2.1673466740648526,2.6676297730988066,2.096025375657662,37.05321536714314
+12.1,3.0119954678864955,0.39250416398632765,37.0445429970296,3.061532479093356,2.167332623683238,2.667612479503478,2.0960174428194636,37.3704570029704
+12.2,3.0119953280517073,0.3924148933736944,37.342201253440756,3.0608361683148164,2.167318573301624,2.6675951859081493,2.0960095099812652,37.68779874655924
+12.3,3.01199518821639,0.39232603424747,37.63975972570227,3.060143067130266,2.167304522920009,2.6675778923128206,2.096001577143067,38.00524027429773
+12.4,3.0119950483805438,0.3922375799437959,37.93721873216394,3.059453123561608,2.167290472538395,2.6675605987174924,2.0959936443048686,38.32278126783606
+12.5,3.0119949085441675,0.39214952395939134,38.23457858604066,3.058766286883253,2.167276422156781,2.6675433051221638,2.0959857114666702,38.640421413959345
+12.6,3.0119947687072623,0.3920618599464368,38.53183959553581,3.058082507582207,2.1672623717751662,2.667526011526835,2.095977778628472,38.958160404464195
+12.7,3.011994628869828,0.3919745817076561,38.82900206396042,3.0574017373197178,2.1672483213935516,2.6675087179315065,2.0959698457902736,39.27599793603959
+12.8,3.0119944890318644,0.39188768319159495,39.12606628984884,3.056723928894441,2.1672342710119374,2.6674914243361783,2.0959619129520757,39.59393371015116
+12.9,3.0119943491933716,0.39180115848808095,39.423032567070706,3.0560490362070314,2.167220220630323,2.6674741307408496,2.0959539801138773,39.9119674329293
+13.0,3.0119942093543495,0.3917150018238593,39.71990118493934,3.055377014226103,2.1672061702487087,2.667456837145521,2.095946047275679,40.230098815060664
+13.1,3.0119940695147984,0.3916292075583969,40.016672428316994,3.054707818955496,2.167192119867094,2.6674395435501923,2.0959381144374807,40.548327571683004
+13.2,3.011993929674718,0.39154377017984404,40.31334657771674,3.0540414074027837,2.16717806948548,2.667422249954864,2.0959301815992823,40.86665342228326
+13.3,3.011993789834108,0.3914586843011501,40.60992390940132,3.053377737548971,2.1671640191038657,2.6674049563595355,2.095922248761084,41.18507609059869
+13.4,3.0119936499929683,0.39137394465632436,40.906404695479026,3.05271676831933,2.167149968722251,2.667387662764207,2.0959143159228857,41.503595304520985
+13.5,3.0119935101512993,0.39128954609683486,41.202789203996716,3.052058459555312,2.167135918340637,2.667370369168878,2.0959063830846874,41.82221079600329
+13.6,3.011993370309102,0.39120548358814194,41.499077699030096,3.051402771987507,2.1671218679590223,2.6673530755735495,2.095898450246489,42.140922300969905
+13.7,3.011993230466375,0.39112175220635664,41.79527044077127,3.050749667209582,2.1671078175774077,2.6673357819782213,2.0958905174082907,42.45972955922873
+13.8,3.0119930906231183,0.39103834713502245,42.09136768561382,3.050099107653175,2.1670937671957935,2.6673184883828926,2.0958825845700924,42.778632314386186
+13.9,3.011992950779333,0.39095526366201233,42.38736968623538,3.0494510565636963,2.167079716814179,2.667301194787564,2.095874651731894,43.097630313764625
+14.0,3.011992810935018,0.39087249717653694,42.68327669167784,3.0488054779769884,2.1670656664325647,2.6672839011922354,2.0958667188936957,43.41672330832217
+14.1,3.0119926710901734,0.3907900431662596,42.979088947425225,3.0481623366968247,2.1670516160509505,2.667266607596907,2.0958587860554974,43.73591105257478
+14.2,3.0119925312448,0.3907078972145134,43.2748066954795,3.0475215982732045,2.167037565669336,2.6672493140015785,2.095850853217299,44.0551933045205
+14.3,3.0119923913988966,0.39062605499761505,43.57043017443399,3.0468832289813976,2.1670235152877217,2.66723202040625,2.0958429203791007,44.37456982556602
+14.4,3.0119922515524644,0.39054451228227377,43.86595961954499,3.0462471958017354,2.167009464906107,2.667214726810921,2.0958349875409024,44.694040380455014
+14.5,3.0119921117055033,0.39046326492308836,44.16139526280129,3.045613466400089,2.166995414524493,2.667197433215593,2.0958270547027045,45.01360473719871
+14.6,3.011991971858012,0.39038230886013087,44.45673733299171,3.044982009109021,2.1669813641428783,2.6671801396202643,2.095819121864506,45.33326266700829
+14.7,3.011991832009992,0.39030164011661383,44.75198605577094,3.044352792909588,2.1669673137612637,2.6671628460249357,2.095811189026308,45.65301394422906
+14.8,3.011991692161442,0.3902212547966342,45.04714165372346,3.043725787413747,2.1669532633796496,2.667145552429607,2.0958032561881095,45.97285834627655
+14.9,3.011991552312363,0.39014114908299546,45.34220434642574,3.043100962847365,2.1669392129980354,2.667128258834279,2.095795323349911,46.29279565357427
+15.0,3.011991412462755,0.3900613192351017,45.6371743505069,3.0424782900337934,2.1669251626164208,2.66711096523895,2.095787390511713,46.612825649493104
+15.1,3.0119912726126175,0.38998176158692116,45.93205187970758,3.0418577403779854,2.1669111122348066,2.6670936716436215,2.0957794576735145,46.93294812029242
+15.2,3.0119911327619504,0.3899024725450179,46.22683714493733,3.04123928585114,2.166897061853192,2.667076378048293,2.095771524835316,47.253162855062676
+15.3,3.011990992910754,0.3898234485866479,46.52153035433057,3.040622898975854,2.166883011471578,2.6670590844529647,2.095763591997118,47.57346964566944
+15.4,3.0119908530590283,0.38974468625791614,46.81613171330089,3.040008552811746,2.166868961089963,2.667041790857636,2.0957556591589195,47.89386828669912
+15.5,3.011990713206773,0.38966618217199445,47.110641424594135,3.039396220941557,2.166854910708349,2.6670244972623074,2.095747726320721,48.214358575405875
+15.6,3.0119905733539887,0.3895879330073968,47.405059688340046,3.0387858774576952,2.1668408603267344,2.6670072036669787,2.095739793482523,48.53494031165996
+15.7,3.011990433500675,0.389509935506308,47.69938670210248,3.038177496949203,2.16682680994512,2.66698991007165,2.0957318606443245,48.85561329789752
+15.8,3.0119902936468317,0.3894321864729679,47.99362266092857,3.03757105448915,2.166812759563506,2.666972616476322,2.095723927806126,49.176377339071436
+15.9,3.0119901537924587,0.38935468277210444,48.2877677573964,3.036966525622415,2.1667987091818914,2.6669553228809932,2.095715994967928,49.49723224260361
+16.0,3.0119900139375573,0.3892774213274171,48.581822181661664,3.036363886353854,2.166784658800277,2.6669380292856646,2.0957080621297295,49.81817781833834
+16.1,3.0119898740821256,0.389200399120107,48.87578612150305,3.035763113136835,2.1667706084186626,2.666920735690336,2.095700129291531,50.13921387849697
+16.2,3.011989734226165,0.3891236131874526,49.169659762366514,3.0351641828621307,2.166756558037048,2.6669034420950077,2.0956921964533333,50.46034023763349
+16.3,3.0119895943696746,0.3890470606214297,49.46344328740858,3.034567072847152,2.166742507655434,2.666886148499679,2.095684263615135,50.78155671259143
+16.4,3.0119894545126553,0.388970738567373,49.75713687753836,3.03397176082551,2.1667284572738192,2.6668688549043504,2.0956763307769366,51.10286312246164
+16.5,3.011989314655106,0.3888946442226785,50.05074071145872,3.033378224936892,2.166714406892205,2.666851561309022,2.0956683979387383,51.424259288541286
+16.6,3.0119891747970278,0.3888187748355451,50.34425496570639,3.032786443717252,2.166700356510591,2.6668342677136936,2.09566046510054,51.74574503429363
+16.7,3.01198903493842,0.3887431277037549,50.63767981469111,3.0321963960892884,2.1666863061289763,2.666816974118365,2.0956525322623416,52.06732018530889
+16.8,3.011988895079283,0.38866770017348784,50.93101543073386,3.0316080613532055,2.166672255747362,2.6667996805230363,2.0956445994241433,52.38898456926616
+16.9,3.0119887552196163,0.38859248963817405,51.2242619841041,3.031021419177758,2.1666582053657475,2.6667823869277076,2.095636666585945,52.71073801589589
+17.0,3.01198861535942,0.3885174935373776,51.51741964305628,3.0304364495915457,2.166644154984133,2.6667650933323794,2.0956287337477466,53.03258035694373
+17.1,3.0119884754986943,0.3884427093557152,51.8104885738653,3.0298531329745786,2.1666301046025187,2.666747799737051,2.0956208009095483,53.354511426134714
+17.2,3.0119883356374393,0.38836813462180475,52.103468940861326,3.0292714500500773,2.166616054220904,2.666730506141722,2.09561286807135,53.676531059138675
+17.3,3.011988195775655,0.38829376690724515,52.39636090646367,3.0286913818765124,2.16660200383929,2.6667132125463935,2.0956049352331516,53.99863909353634
+17.4,3.011988055913341,0.38821960382562554,52.6891646312139,3.0281129098398796,2.1665879534576753,2.666695918951065,2.0955970023949533,54.3208353687861
+17.5,3.011987916050498,0.38814564303156257,52.981880273808294,3.0275360156461883,2.166573903076061,2.6666786253557366,2.095589069556755,54.64311972619171
+17.6,3.0119877761871257,0.38807188221976535,53.2745079911294,3.02696068131417,2.166559852694447,2.666661331760408,2.0955811367185566,54.96549200887062
+17.7,3.0119876363232234,0.3879983191241267,53.56704793827693,3.026386889168188,2.1665458023128323,2.6666440381650793,2.0955732038803583,55.287952061723075
+17.8,3.011987496458792,0.3879249515168404,53.85950026859813,3.0258146218313557,2.166531751931218,2.6666267445697507,2.09556527104216,55.61049973140187
+17.9,3.0119873565938304,0.3878517772075428,54.15186513371713,3.0252438622188342,2.1665177015496035,2.6666094509744225,2.095557338203962,55.93313486628287
+18.0,3.01198721672834,0.3877787940424784,54.44414268356397,3.0246745935313317,2.166503651167989,2.666592157379094,2.0955494053657637,56.255857316436035
+18.1,3.0119870768623196,0.38770599990368815,54.7363330664027,3.024106799248768,2.1664896007863748,2.666574863783765,2.0955414725275654,56.57866693359731
+18.2,3.01198693699577,0.38763339270822156,55.02843642885913,3.023540463124128,2.16647555040476,2.6665575701884365,2.095533539689367,56.901563571140876
+18.3,3.0119867971286913,0.38756097040736837,55.32045291594776,3.0229755691774733,2.166461500023146,2.6665402765931083,2.0955256068511687,57.22454708405225
+18.4,3.011986657261083,0.3874887309859126,55.61238267109818,3.0224121016901186,2.166447449641532,2.6665229829977797,2.0955176740129704,57.54761732890182
+18.5,3.0119865173929448,0.3874166724614063,55.904225836180935,3.0218500451989696,2.166433399259917,2.666505689402451,2.095509741174772,57.87077416381907
+18.6,3.011986377524277,0.38734479288346335,56.195982551532865,3.021289384491014,2.166419348878303,2.6664883958071224,2.0955018083365737,58.19401744846715
+18.7,3.0119862376550803,0.3872730903330709,56.48765295598172,3.0207301045979533,2.1664052984966884,2.666471102211794,2.0954938754983754,58.51734704401828
+18.8,3.0119860977853543,0.38720156292192104,56.77923718687051,3.0201721907909844,2.166391248115074,2.6664538086164655,2.095485942660177,58.8407628131295
+18.9,3.011985957915098,0.38713020879175836,57.07073538008102,3.0196156285757154,2.1663771977334596,2.666436515021137,2.0954780098219787,59.16426461991898
+19.0,3.0119858180443124,0.38705902611374643,57.362147670057226,3.0190604036872224,2.1663631473518454,2.6664192214258082,2.0954700769837804,59.48785232994278
+19.1,3.0119856781729974,0.3869880130878496,57.65347418982783,3.0185065020852266,2.166349096970231,2.6664019278304796,2.095462144145582,59.811525810172185
+19.2,3.0119855383011536,0.3869171679422311,57.94471507102853,3.017953909949403,2.1663350465886166,2.6663846342351514,2.0954542113073837,60.13528492897147
+19.3,3.011985398428779,0.38684648893266776,58.235870443923815,3.017402613674809,2.166320996207002,2.6663673406398227,2.0954462784691854,60.4591295560762
+19.4,3.011985258555876,0.38677597434197913,58.52694043742829,3.0168525998674376,2.166306945825388,2.666350047044494,2.095438345630987,60.783059562571715
+19.5,3.0119851186824427,0.3867056224794703,58.81792517912744,3.016303855339869,2.1662928954437732,2.666332753449166,2.0954304127927887,61.10707482087256
+19.6,3.01198497880848,0.38663543168039155,59.108824795298275,3.0157563671070546,2.166278845062159,2.666315459853837,2.095422479954591,61.43117520470174
+19.7,3.011984838933988,0.3865654003054091,59.39963941092916,3.015210122382191,2.1662647946805444,2.6662981662585086,2.0954145471163925,61.75536058907084
+19.8,3.0119846990589667,0.3864955267400904,59.69036914973957,3.0146651085727054,2.1662507442989303,2.66628087266318,2.095406614278194,62.07963085026044
+19.9,3.011984559183415,0.3864258093944029,59.98101413419922,3.014121313276343,2.1662366939173157,2.6662635790678513,2.095398681439996,62.40398586580078
+20.0,3.011984419307334,0.38635624670222446,60.27157448554703,3.0135787242773513,2.1662226435357015,2.666246285472523,2.0953907486017975,62.72842551445298
+20.1,3.011984279430724,0.3862868371208664,60.562050323809444,3.013037329542758,2.1662085931540873,2.6662289918771944,2.095382815763599,63.05294967619057
+20.2,3.0119841395535847,0.38621757913060845,60.85244176781867,3.012497117218746,2.1661945427724727,2.6662116982818658,2.095374882925401,63.377558232181336
+20.3,3.0119839996759152,0.38614847123424434,61.14274893523025,3.011958075627106,2.1661804923908585,2.666194404686537,2.0953669500872025,63.70225106476976
+20.4,3.011983859797716,0.3860795119566403,61.4329719425406,3.0114201932617943,2.166166442009244,2.666177111091209,2.095359017249004,64.0270280574594
+20.5,3.0119837199189874,0.3860106998443028,61.72311090510402,3.010883458785562,2.1661523916276293,2.6661598174958803,2.095351084410806,64.35188909489598
+20.6,3.0119835800397294,0.38594203346495737,62.01316593714936,3.0103478610266676,2.166138341246015,2.6661425239005516,2.0953431515726075,64.67683406285066
+20.7,3.0119834401599417,0.38587351140713744,62.303137151796406,3.009813388975672,2.1661242908644005,2.666125230305223,2.095335218734409,65.0018628482036
+20.8,3.011983300279624,0.3858051322797832,62.59302466107202,3.0092800317823087,2.1661102404827863,2.6661079367098943,2.095327285896211,65.326975338928
+20.9,3.0119831603987772,0.3857368947118506,62.88282857592588,3.0087477787524346,2.166096190101172,2.666090643114566,2.0953193530580125,65.65217142407413
+21.0,3.011983020517401,0.3856687973519287,63.17254900624593,3.008216619345044,2.1660821397195575,2.6660733495192375,2.095311420219814,65.97745099375408
+21.1,3.011982880635495,0.3856008388678666,63.4621860608735,3.00768654316936,2.1660680893379434,2.666056055923909,2.095303487381616,66.30281393912652
+21.2,3.011982740753059,0.38553301794640943,63.75173984761826,3.0071575399819936,2.1660540389563288,2.6660387623285806,2.0952955545434175,66.62826015238174
+21.3,3.011982600870094,0.38546533329284244,64.04121047327286,3.0066295996841714,2.1660399885747146,2.666021468733252,2.0952876217052196,66.95378952672716
+21.4,3.0119824609865993,0.3853977836306438,64.33059804362706,3.006102712319022,2.1660259381931,2.6660041751379233,2.0952796888670213,67.27940195637294
+21.5,3.011982321102575,0.3853303677011452,64.61990266348205,3.0055768680689328,2.1660118878114853,2.6659868815425947,2.095271756028823,67.60509733651796
+21.6,3.0119821812180207,0.3852630842632006,64.90912443666404,3.0050520572529646,2.165997837429871,2.665969587947266,2.0952638231906247,67.93087556333597
+21.7,3.0119820413329372,0.3851959320928623,65.19826346603787,3.004528270324326,2.165983787048257,2.665952294351938,2.0952558903524263,68.25673653396213
+21.8,3.0119819014473235,0.38512890998306476,65.48731985352033,3.0040054978679054,2.1659697366666424,2.665935000756609,2.095247957514228,68.58268014647967
+21.9,3.011981761561181,0.3850620167433158,65.7762937000932,3.003483730597863,2.165955686285028,2.6659177071612805,2.0952400246760297,68.9087062999068
+22.0,3.011981621674509,0.38499525119939393,66.06518510581601,3.002962959355273,2.1659416359034136,2.6659004135659523,2.0952320918378313,69.234814894184
+22.1,3.0119814817873065,0.3849286121930538,66.35399416983863,3.00244317510582,2.1659275855217994,2.6658831199706237,2.095224158999633,69.56100583016139
+22.2,3.0119813418995744,0.3848620985817374,66.64272099041366,3.0019243689375523,2.165913535140185,2.665865826375295,2.0952162261614347,69.88727900958635
+22.3,3.011981202011313,0.38479570923829226,66.93136566490855,3.0014065320586796,2.1658994847585706,2.6658485327799664,2.0952082933232363,70.21363433509146
+22.4,3.0119810621225223,0.38472944305069534,67.21992828981749,3.0008896557954237,2.165885434376956,2.6658312391846377,2.095200360485038,70.54007171018252
+22.5,3.0119809222332012,0.3846632989217837,67.50840896077304,3.000373731589913,2.165871383995342,2.6658139455893095,2.0951924276468397,70.86659103922698
+22.6,3.011980782343351,0.38459727576899105,67.79680777255776,2.9998587509981305,2.1658573336137277,2.665796651993981,2.0951844948086413,71.19319222744227
+22.7,3.011980642452971,0.38453137252408987,68.08512481911535,2.9993447056879012,2.165843283232113,2.665779358398652,2.095176561970443,71.51987518088465
+22.8,3.011980502562061,0.38446558813293896,68.37336019356187,2.998831587436924,2.1658292328504984,2.6657620648033236,2.0951686291322447,71.84663980643815
+22.9,3.011980362670622,0.3843999215552375,68.66151398819652,2.9983193881308527,2.1658151824688843,2.6657447712079954,2.0951606962940463,72.17348601180348
+23.0,3.0119802227786527,0.3843343717642831,68.9495862945124,2.9978080997614085,2.1658011320872697,2.6657274776126667,2.0951527634558484,72.50041370548762
+23.1,3.0119800828861543,0.3842689377467364,69.23757720320698,2.9972977144245445,2.1657870817056555,2.665710184017338,2.09514483061765,72.82742279679303
+23.2,3.011979942993126,0.3842036185023901,69.52548680419252,2.9967882243186432,2.165773031324041,2.6656928904220094,2.095136897779452,73.15451319580748
+23.3,3.0119798030995675,0.38413841304394236,69.81331518660609,2.9962796217427505,2.1657589809424267,2.6656755968266808,2.0951289649412534,73.48168481339393
+23.4,3.01197966320548,0.3840733203967768,70.10106243881971,2.9957718990948594,2.1657449305608125,2.6656583032313526,2.095121032103055,73.80893756118029
+23.5,3.0119795233108624,0.3840083395987452,70.38872864845,2.9952650488702126,2.165730880179198,2.665641009636024,2.095113099264857,74.13627135155001
+23.6,3.0119793834157154,0.3839434696999562,70.67631390236795,2.9947590636596586,2.1657168297975837,2.6656237160406953,2.0951051664266584,74.46368609763206
+23.7,3.011979243520039,0.383878709762568,70.96381828670833,2.9942539361480307,2.165702779415969,2.665606422445367,2.09509723358846,74.79118171329168
+23.8,3.0119791036238324,0.38381405886058495,71.25124188687899,2.9937496591125625,2.1656887290343545,2.6655891288500384,2.095089300750262,75.11875811312102
+23.9,3.011978963727096,0.3837495160796595,71.53858478757013,2.9932462254213443,2.1656746786527403,2.6655718352547098,2.0950813679120635,75.44641521242987
+24.0,3.01197882382983,0.3836850805168974,71.8258470727632,2.9927436280318,2.1656606282711257,2.665554541659381,2.095073435073865,75.77415292723681
+24.1,3.0119786839320346,0.3836207512806669,72.11302882573979,2.9922418599892024,2.1656465778895115,2.6655372480640525,2.095065502235667,76.10197117426023
+24.2,3.0119785440337092,0.3835565274904129,72.40013012909034,2.991740914425221,2.1656325275078974,2.6655199544687243,2.0950575693974685,76.42986987090966
+24.3,3.011978404134854,0.38349240827647335,72.68715106472277,2.9912407845564926,2.1656184771262827,2.6655026608733956,2.09504963655927,76.75784893527724
+24.4,3.011978264235469,0.3834283927799012,72.97409171387079,2.9907414636832295,2.1656044267446686,2.665485367278067,2.095041703721072,77.08590828612921
+24.5,3.011978124335555,0.3833644801522884,73.26095215710232,2.99024294518785,2.165590376363054,2.6654680736827383,2.0950337708828735,77.41404784289769
+24.6,3.0119779844351107,0.3833006695555946,73.5477324743275,2.9897452225336383,2.16557632598144,2.66545078008741,2.0950258380446756,77.74226752567252
+24.7,3.0119778445341368,0.3832369601619788,73.83443274480683,2.989248289263435,2.165562275599825,2.6654334864920814,2.0950179052064772,78.07056725519317
+24.8,3.011977704632633,0.3831733511536344,74.12105304715905,2.9887521389983487,2.1655482252182106,2.665416192896753,2.095009972368279,78.39894695284096
+24.9,3.0119775647305995,0.3831098417226278,74.40759345936877,2.988256765436497,2.1655341748365964,2.665398899301424,2.0950020395300806,78.72740654063122
+25.0,3.011977424828036,0.3830464310707401,74.69405405879432,2.987762162351773,2.1655201244549818,2.6653816057060955,2.0949941066918822,79.05594594120569
+25.1,3.011977284924943,0.3829831184093121,74.98043492217512,2.9872683235926343,2.1655060740733676,2.6653643121107673,2.094986173853684,79.38456507782489
+25.2,3.0119771450213206,0.38291990295909184,75.2667361256391,2.9867752430809165,2.1654920236917534,2.6653470185154386,2.0949782410154856,79.7132638743609
+25.3,3.011977005117168,0.382856783950086,75.55295774470997,2.986282914810671,2.165477973310139,2.66532972492011,2.0949703081772872,80.04204225529004
+25.4,3.0119768652124854,0.3827937606214137,75.83909985431447,2.9857913328470267,2.1654639229285246,2.665312431324782,2.094962375339089,80.37090014568552
+25.5,3.0119767253072736,0.38273083222116305,76.12516252878933,2.985300491325072,2.16544987254691,2.665295137729453,2.0949544425008906,80.69983747121069
+25.6,3.0119765854015323,0.3826679980062513,76.41114584188827,2.9848103844487603,2.165435822165296,2.6652778441341245,2.0949465096626922,81.02885415811176
+25.7,3.011976445495261,0.3826052572422862,76.6970498667887,2.9843210064898327,2.1654217717836812,2.665260550538796,2.094938576824494,81.3579501332113
+25.8,3.011976305588459,0.382542609203432,76.98287467609866,2.98383235178677,2.1654077214020666,2.665243256943467,2.0949306439862956,81.68712532390134
+25.9,3.011976165681128,0.3824800531722766,77.26862034186333,2.9833444147437578,2.165393671020453,2.665225963348139,2.0949227111480977,82.01637965813669
+26.0,3.011976025773267,0.3824175884397015,77.55428693557147,2.9828571898296716,2.1653796206388383,2.6652086697528103,2.0949147783098994,82.34571306442855
+26.1,3.0119758858648766,0.38235521430475494,77.83987452816201,2.9823706715770886,2.1653655702572236,2.6651913761574817,2.094906845471701,82.675125471838
+26.2,3.011975745955956,0.38229293007452625,78.12538319003019,2.9818848545813053,2.1653515198756095,2.6651740825621535,2.0948989126335027,83.0046168099698
+26.3,3.011975606046506,0.38223073506402444,78.41081299103398,2.9813997334993907,2.165337469493995,2.665156788966825,2.0948909797953044,83.33418700896604
+26.4,3.0119754661365254,0.3821686285960567,78.6961640005,2.9809153030492426,2.1653234191123807,2.665139495371496,2.094883046957106,83.6638359995
+26.5,3.0119753262260156,0.38210661000111157,78.98143628722976,2.98043155800867,2.165309368730766,2.6651222017761675,2.0948751141189077,83.99356371277025
+26.6,3.0119751863149755,0.3820446786172423,79.26662991950545,2.9799484932144904,2.165295318349152,2.665104908180839,2.0948671812807094,84.32337008049457
+26.7,3.011975046403406,0.3819828337899542,79.55174496509586,2.9794661035616428,2.1652812679675373,2.6650876145855102,2.094859248442511,84.65325503490415
+26.8,3.0119749064913073,0.3819210748720923,79.83678149126219,2.9789843840023202,2.165267217585923,2.665070320990182,2.0948513156043127,84.98321850873783
+26.9,3.011974766578678,0.38185940122373263,80.12173956476359,2.9785033295451147,2.165253167204309,2.6650530273948534,2.0948433827661144,85.31326043523642
+27.0,3.011974626665519,0.3817978122120747,80.40661925186295,2.978022935254183,2.1652391168226943,2.6650357337995247,2.094835449927916,85.64338074813706
+27.1,3.01197448675183,0.3817363072113363,80.69142061833227,2.977543196248423,2.1652250664410797,2.6650184402041965,2.0948275170897177,85.97357938166775
+27.2,3.0119743468376114,0.3816748856026498,80.97614372945817,2.9770641077006683,2.1652110160594655,2.665001146608868,2.0948195842515194,86.30385627054183
+27.3,3.0119742069228628,0.38161354677396075,81.2607886500472,2.976585664836894,2.165196965677851,2.6649838530135392,2.0948116514133215,86.6342113499528
+27.4,3.0119740670075847,0.3815522901199285,81.54535544443114,2.976107862935443,2.1651829152962367,2.6649665594182106,2.094803718575123,86.96464455556887
+27.5,3.011973927091776,0.38149111504182825,81.82984417647216,2.9756306973262605,2.165168864914622,2.664949265822882,2.094795785736925,87.29515582352785
+27.6,3.011973787175438,0.38143002094745465,82.11425490956803,2.975154163390146,2.165154814533008,2.6649319722275537,2.0947878528987265,87.62574509043198
+27.7,3.0119736472585705,0.38136900725102796,82.3985877066571,2.974678256558018,2.165140764151394,2.664914678632225,2.094779920060528,87.95641229334291
+27.8,3.0119735073411724,0.3813080733731009,82.68284263022322,2.9742029723101875,2.165126713769779,2.6648973850368964,2.09477198722233,88.2871573697768
+27.9,3.011973367423245,0.3812472187404685,82.96701974230076,2.973728306175655,2.165112663388165,2.6648800914415682,2.0947640543841315,88.61798025769923
+28.0,3.0119732275047872,0.38118644278607805,83.25111910447946,2.973254253731409,2.1650986130065504,2.6648627978462396,2.094756121545933,88.94888089552056
+28.1,3.0119730875858,0.38112574494894147,83.535140777909,2.9727808106017437,2.1650845626249358,2.664845504250911,2.094748188707735,89.27985922209102
+28.2,3.0119729476662824,0.38106512467404935,83.81908482330391,2.9723079724575854,2.1650705122433216,2.6648282106555823,2.0947402558695365,89.6109151766961
+28.3,3.011972807746236,0.38100458141228655,84.10295130094813,2.9718357350158353,2.165056461861707,2.6648109170602536,2.094732323031338,89.94204869905187
+28.4,3.011972667825659,0.380944114620348,84.38674027069949,2.9713640940387145,2.165042411480093,2.664793623464925,2.09472439019314,90.27325972930052
+28.5,3.0119725279045517,0.38088372376065827,84.67045179199434,2.970893045333135,2.1650283610984786,2.664776329869597,2.0947164573549415,90.60454820800567
+28.6,3.0119723879829152,0.3808234083012907,84.95408592385193,2.9704225847500676,2.165014310716864,2.664759036274268,2.094708524516743,90.93591407614808
+28.7,3.0119722480607485,0.3807631677158882,85.23764272487874,2.969952708183928,2.16500026033525,2.66474174267894,2.0947005916785453,91.26735727512127
+28.8,3.011972108138052,0.3807030014835864,85.52112225327286,2.969483411571974,2.164986209953635,2.6647244490836113,2.094692658840347,91.59887774672715
+28.9,3.0119719682148256,0.38064290908893733,85.80452456682825,2.969014690893711,2.164972159572021,2.6647071554882826,2.0946847260021486,91.93047543317175
+29.0,3.011971828291069,0.3805828900218341,86.08784972293887,2.968546542170306,2.1649581091904064,2.664689861892954,2.0946767931639503,92.26215027706114
+29.1,3.011971688366782,0.380522943777438,86.37109777860289,2.9680789614640166,2.164944058808792,2.6646725682976253,2.094668860325752,92.59390222139713
+29.2,3.0119715484419665,0.38046306985610606,86.65426879042673,2.9676119448776275,2.1649300084271776,2.6646552747022967,2.0946609274875536,92.92573120957329
+29.3,3.01197140851662,0.38040326776331934,86.93736281462901,2.967145488553891,2.1649159580455635,2.6646379811069685,2.0946529946493553,93.25763718537101
+29.4,3.0119712685907443,0.3803435370096144,87.22037990704477,2.9666795886749924,2.164901907663949,2.66462068751164,2.094645061811157,93.58962009295523
+29.5,3.011971128664338,0.3802838771105129,87.50332012312903,2.966214241462001,2.1648878572823347,2.664603393916311,2.0946371289729586,93.92167987687098
+29.6,3.0119709887374024,0.38022428758645616,87.786183517961,2.9657494431743583,2.16487380690072,2.664586100320983,2.0946291961347603,94.25381648203901
+29.7,3.011970848809936,0.38016476796273685,88.06897014624762,2.9652851901093475,2.164859756519106,2.6645688067256543,2.094621263296562,94.5860298537524
+29.8,3.0119707088819405,0.3801053177694351,88.3516800623275,2.964821478601594,2.1648457061374913,2.6645515131303257,2.0946133304583636,94.9183199376725
+29.9,3.011970568953415,0.38004593654135366,88.6343133201745,2.9643583050225586,2.164831655755877,2.664534219534997,2.0946053976201653,95.2506866798255
+30.0,3.0119704290243594,0.379986623817955,88.91686997340148,2.9638956657800493,2.1648176053742625,2.6645169259396684,2.0945974647819674,95.58313002659854
+30.1,3.0119702890947737,0.3799273791432995,89.19935007526387,2.963433557317736,2.164803554992648,2.6644996323443397,2.094589531943769,95.91564992473616
+30.2,3.0119701491646578,0.37986820206598426,89.48175367866325,2.962971976114677,2.164789504611034,2.6644823387490115,2.0945815991055707,96.24824632133677
+30.3,3.0119700092340125,0.3798090921390828,89.76408083615085,2.9625109186848464,2.1647754542294195,2.664465045153683,2.0945736662673724,96.58091916384917
+30.4,3.011969869302837,0.37975004892008696,90.04633159993102,2.9620503815766783,2.164761403847805,2.6644477515583547,2.094565733429174,96.91366840006899
+30.5,3.011969729371131,0.37969107197084767,90.32850602186467,2.961590361372612,2.1647473534661907,2.664430457963026,2.0945578005909757,97.24649397813535
+30.6,3.011969589438896,0.37963216085751883,90.61060415347261,2.9611308546886472,2.164733303084576,2.6644131643676974,2.0945498677527774,97.5793958465274
+30.7,3.0119694495061298,0.3795733151505008,90.89262604593893,2.960671858173906,2.164719252702962,2.6643958707723687,2.094541934914579,97.91237395406108
+30.8,3.011969309572835,0.37951453442438515,91.17457175011428,2.960213368510204,2.1647052023213473,2.66437857717704,2.0945340020763807,98.24542824988572
+30.9,3.011969169639009,0.37945581825790003,91.45644131651908,2.9597553824116205,2.164691151939733,2.6643612835817114,2.0945260692381824,98.57855868348094
+31.0,3.0119690297046544,0.3793971662338577,91.7382347953468,2.9592978966240904,2.164677101558119,2.664343989986383,2.094518136399984,98.91176520465321
+31.1,3.0119688897697685,0.37933857793910036,92.01995223646698,2.958840907924983,2.1646630511765044,2.6643266963910546,2.0945102035617857,99.24504776353304
+31.2,3.0119687498343533,0.3792800529644501,92.30159368942857,2.958384413122711,2.16464900079489,2.664309402795726,2.0945022707235874,99.57840631057142
+31.3,3.0119686098984078,0.3792215909046565,92.58315920346286,2.957928409056321,2.1646349504132756,2.6642921092003977,2.094494337885389,99.91184079653716
+31.4,3.0119684699619325,0.37916319135834764,92.8646488274865,2.9574728925951117,2.164620900031661,2.664274815605069,2.0944864050471907,100.2453511725135
+31.5,3.011968330024927,0.3791048539279798,93.14606261010465,2.957017860638243,2.164606849650047,2.6642575220097404,2.094478472208993,100.57893738989536
+31.6,3.0119681900873916,0.37904657821978993,93.42740059961382,2.9565633101143614,2.164592799268432,2.6642402284144118,2.0944705393707945,100.9125994003862
+31.7,3.011968050149326,0.37898836384374673,93.70866284400482,2.9561092379812246,2.164578748886818,2.664222934819083,2.094462606532596,101.24633715599519
+31.8,3.0119679102107306,0.3789302104135049,93.98984939096576,2.9556556412253383,2.1645646985052034,2.6642056412237545,2.094454673694398,101.58015060903425
+31.9,3.011967770271605,0.37887211754635763,94.2709602878847,2.9552025168615894,2.164550648123589,2.6641883476284263,2.0944467408561995,101.91403971211531
+32.0,3.0119676303319496,0.37881408486319196,94.55199558185272,2.9547498619328976,2.164536597741975,2.6641710540330976,2.094438808018001,102.24800441814729
+32.1,3.0119674903917644,0.37875611198844356,94.83295531966652,2.9542976735098603,2.1645225473603604,2.6641537604377694,2.094430875179803,102.5820446803335
+32.2,3.0119673504510485,0.3786981985500524,95.11383954783118,2.9538459486904087,2.1645084969787463,2.6641364668424408,2.0944229423416045,102.91616045216885
+32.3,3.0119672105098028,0.3786403441794196,95.39464831256296,2.953394684599473,2.1644944465971316,2.664119173247112,2.094415009503406,103.25035168743703
+32.4,3.0119670705680273,0.37858254851136464,95.67538165979207,2.9529438783886444,2.164480396215517,2.6641018796517835,2.094407076665208,103.58461834020792
+32.5,3.0119669306257215,0.3785248111840829,95.95603963516501,2.9524935272358466,2.164466345833903,2.664084586056455,2.0943991438270095,103.918960364835
+32.6,3.0119667906828855,0.3784671318391044,96.23662228404748,2.952043628345015,2.1644522954522882,2.664067292461126,2.094391210988811,104.25337771595252
+32.7,3.0119666507395197,0.3784095101212532,96.51712965152684,2.9515941789457747,2.164438245070674,2.664049998865798,2.094383278150613,104.58787034847319
+32.8,3.0119665107956237,0.37835194567860636,96.79756178241465,2.95114517629313,2.16442419468906,2.6640327052704693,2.0943753453124145,104.92243821758535
+32.9,3.011966370851198,0.37829443816245545,97.07791872124932,2.9506966176671527,2.1644101443074453,2.664015411675141,2.094367412474216,105.25708127875068
+33.0,3.0119662309062423,0.3782369872272666,97.35820051229842,2.9502485003726795,2.164396093925831,2.6639981180798125,2.094359479636018,105.59179948770159
+33.1,3.011966090960756,0.37817959253064226,97.63840719956123,2.94980082173901,2.1643820435442165,2.663980824484484,2.0943515467978195,105.92659280043878
+33.2,3.01196595101474,0.378122253733284,97.91853882677125,2.9493535791196157,2.1643679931626023,2.663963530889155,2.0943436139596217,106.26146117322878
+33.3,3.0119658110681935,0.3780649704989544,98.1985954373984,2.948906769891844,2.1643539427809877,2.6639462372938265,2.0943356811214233,106.59640456260159
+33.4,3.0119656711211173,0.37800774249444064,98.47857707465168,2.948460391456637,2.1643398923993735,2.663928943698498,2.094327748283225,106.93142292534833
+33.5,3.011965531173511,0.3779505693895185,98.75848378148119,2.9480144412382443,2.164325842017759,2.663911650103169,2.0943198154450267,107.26651621851883
+33.6,3.011965391225374,0.37789345085691645,99.03831560058066,2.9475689166839483,2.1643117916361447,2.663894356507841,2.0943118826068283,107.60168439941936
+33.7,3.0119652512767074,0.377836386572281,99.3180725743898,2.947123815263792,2.16429774125453,2.6638770629125124,2.09430394976863,107.93692742561024
+33.8,3.0119651113275108,0.3777793762141414,99.59775474509624,2.9466791344703034,2.164283690872916,2.663859769317184,2.0942960169304317,108.27224525490375
+33.9,3.0119649713777843,0.37772241946387647,99.87736215463822,2.9462348718182367,2.1642696404913013,2.6638424757218555,2.0942880840922333,108.60763784536178
+34.0,3.011964831427527,0.37766551600568005,100.15689484470634,2.945791024844304,2.164255590109687,2.663825182126527,2.094280151254035,108.94310515529367
+34.1,3.01196469147674,0.37760866552652866,100.43635285674608,2.9453475911069233,2.1642415397280725,2.663807888531198,2.0942722184158367,109.27864714325393
+34.2,3.011964551525423,0.37755186771614857,100.71573623195981,2.944904568185959,2.1642274893464584,2.6637905949358696,2.0942642855776383,109.61426376804023
+34.3,3.0119644115735755,0.377495122266984,100.99504501130889,2.944461953682475,2.1642134389648437,2.663773301340541,2.09425635273944,109.9499549886911
+34.4,3.0119642716211987,0.3774384288741652,101.27427923551599,2.944019745218488,2.1641993885832296,2.6637560077452127,2.0942484199012417,110.28572076448401
+34.5,3.0119641316682912,0.3773817872354769,101.55343894506684,2.94357794043672,2.1641853382016154,2.663738714149884,2.0942404870630433,110.62156105493318
+34.6,3.011963991714853,0.3773251970513285,101.83252418021254,2.9431365370003624,2.164171287820001,2.663721420554556,2.094232554224845,110.95747581978748
+34.7,3.0119638517608855,0.3772686580247231,102.11153498097157,2.9426955325928406,2.1641572374383866,2.663704126959227,2.0942246213866467,111.29346501902846
+34.8,3.0119637118063873,0.37721216986122785,102.39047138713168,2.9422549249175773,2.164143187056772,2.6636868333638986,2.0942166885484483,111.62952861286831
+34.9,3.0119635718513593,0.37715573226894433,102.66933343825202,2.941814711697766,2.1641291366751574,2.66366953976857,2.0942087557102504,111.96566656174798
+35.0,3.011963431895801,0.3770993449584798,102.948121173665,2.9413748906761428,2.164115086293543,2.6636522461732413,2.094200822872052,112.30187882633501
+35.1,3.0119632919397126,0.37704300764291854,103.22683463247826,2.940935459614765,2.1641010359119286,2.6636349525779126,2.094192890033854,112.63816536752176
+35.2,3.0119631519830943,0.3769867200377935,103.5054738535766,2.9404964162947897,2.1640869855303144,2.663617658982584,2.0941849571956554,112.97452614642343
+35.3,3.0119630120259453,0.37693048186105876,103.78403887562392,2.9400577585162586,2.1640729351487002,2.6636003653872558,2.094177024357457,113.31096112437608
+35.4,3.011962872068267,0.3768742928330619,104.06252973706506,2.939619484097883,2.1640588847670856,2.6635830717919275,2.094169091519259,113.64747026293495
+35.5,3.011962732110058,0.3768181526765171,104.3409464761276,2.9391815908768337,2.1640448343854715,2.663565778196599,2.0941611586810605,113.98405352387242
+35.6,3.0119625921513182,0.37676206111647864,104.6192891308238,2.9387440767085335,2.164030784003857,2.6635484846012702,2.094153225842862,114.32071086917622
+35.7,3.011962452192049,0.3767060178803144,104.89755773895236,2.9383069394664525,2.1640167336222427,2.6635311910059416,2.094145293004664,114.65744226104766
+35.8,3.0119623122322494,0.37665002269768,105.17575233810017,2.9378701770419045,2.164002683240628,2.663513897410613,2.0941373601664655,114.99424766189982
+35.9,3.01196217227192,0.37659407530049377,105.45387296564427,2.9374337873438514,2.1639886328590134,2.6634966038152843,2.094129427328267,115.33112703435575
+36.0,3.0119620323110596,0.3765381754229105,105.73191965875328,2.9369977682987023,2.1639745824773993,2.6634793102199557,2.094121494490069,115.66808034124674
+36.1,3.011961892349669,0.3764823228012979,106.00989245438947,2.9365621178501238,2.163960532095785,2.6634620166246274,2.0941135616518705,116.00510754561054
+36.2,3.011961752387749,0.37642651717421133,106.28779138931033,2.9361268339588484,2.1639464817141705,2.663444723029299,2.094105628813672,116.34220861068971
+36.3,3.0119616124252984,0.3763707582823696,106.56561650007012,2.935691914602483,2.1639324313325563,2.6634274294339706,2.094097695975474,116.67938349992987
+36.4,3.0119614724623176,0.3763150458686317,106.84336782302191,2.935257357775327,2.1639183809509417,2.663410135838642,2.0940897631372755,117.0166321769781
+36.5,3.011961332498807,0.3762593796779728,107.12104539431886,2.934823161488188,2.1639043305693275,2.6633928422433133,2.094081830299077,117.35395460568115
+36.6,3.0119611925347654,0.3762037594574613,107.39864924991606,2.9343893237681984,2.163890280187713,2.6633755486479846,2.0940738974608792,117.69135075008396
+36.7,3.0119610525701948,0.3761481849562365,107.67617942557227,2.9339558426586447,2.1638762298060987,2.663358255052656,2.094065964622681,118.02882057442775
+36.8,3.011960912605093,0.3760926559254846,107.95363595685109,2.93352271621878,2.163862179424484,2.6633409614573273,2.0940580317844826,118.3663640431489
+36.9,3.011960772639461,0.37603717211841814,108.23101887912311,2.9330899425236616,2.1638481290428695,2.6633236678619987,2.0940500989462842,118.70398112087689
+37.0,3.011960632673299,0.37598173329025325,108.50832822756709,2.9326575196639753,2.1638340786612558,2.6633063742666705,2.094042166108086,119.04167177243293
+37.1,3.011960492706607,0.3759263391981879,108.78556403717164,2.9322254457458663,2.163820028279641,2.6632890806713423,2.0940342332698876,119.37943596282838
+37.2,3.011960352739384,0.3758709896013811,109.06272634273675,2.9317937188907726,2.1638059778980265,2.6632717870760136,2.0940263004316892,119.71727365726328
+37.3,3.0119602127716316,0.3758156842609312,109.33981517887531,2.9313623372352633,2.1637919275164124,2.663254493480685,2.094018367593491,120.05518482112468
+37.4,3.0119600728033484,0.37576042293985545,109.61683058001464,2.9309312989308727,2.1637778771347977,2.6632371998853563,2.0940104347552926,120.39316941998537
+37.5,3.0119599328345354,0.37570520540306995,109.89377258039796,2.9305006021439457,2.1637638267531836,2.6632199062900277,2.0940025019170942,120.73122741960205
+37.6,3.0119597928651913,0.37565003141736825,110.17064121408578,2.9300702450554725,2.163749776371569,2.663202612694699,2.093994569078896,121.06935878591425
+37.7,3.011959652895318,0.3755949007514029,110.44743651495756,2.929640225860943,2.163735725989955,2.6631853190993704,2.0939866362406976,121.40756348504247
+37.8,3.0119595129249137,0.3755398131756645,110.7241585167129,2.929210542770183,2.1637216756083406,2.663168025504042,2.0939787034024993,121.7458414832871
+37.9,3.0119593729539798,0.37548476846246265,111.00080725287322,2.928781194007209,2.163707625226726,2.6631507319087135,2.093970770564301,122.08419274712679
+38.0,3.011959232982515,0.37542976638590725,111.27738275678291,2.9283521778100767,2.163693574845112,2.6631334383133853,2.0939628377261026,122.4226172432171
+38.1,3.0119590930105202,0.37537480672188894,111.55388506161098,2.9279234924307342,2.163679524463497,2.6631161447180567,2.0939549048879043,122.76111493838904
+38.2,3.0119589530379947,0.37531988924806087,111.83031420035223,2.927495136134875,2.1636654740818826,2.663098851122728,2.093946972049706,123.0996857996478
+38.3,3.0119588130649393,0.37526501374382004,112.10667020582879,2.9270671072017964,2.1636514237002684,2.6630815575273994,2.093939039211508,123.4383297941712
+38.4,3.011958673091354,0.3752101799902891,112.38295311069139,2.926639403924255,2.163637373318654,2.6630642639320707,2.0939311063733097,123.77704688930861
+38.5,3.011958533117238,0.37515538777029833,112.65916294742058,2.926212024608327,2.1636233229370396,2.663046970336742,2.0939231735351114,124.11583705257942
+38.6,3.0119583931425913,0.37510063686836836,112.93529974832835,2.925784967573273,2.163609272555425,2.6630296767414134,2.093915240696913,124.45470025167167
+38.7,3.011958253167415,0.37504592707069206,113.21136354555914,2.9253582311513986,2.163595222173811,2.6630123831460852,2.0939073078587147,124.7936364544409
+38.8,3.0119581131917084,0.37499125816511814,113.48735437109134,2.9249318136879214,2.1635811717921967,2.662995089550757,2.0938993750205164,125.13264562890865
+38.9,3.011957973215471,0.37493662994113264,113.76327225673847,2.9245057135408348,2.163567121410582,2.6629777959554284,2.093891442182318,125.47172774326154
+39.0,3.0119578332387036,0.3748820421898438,114.03911723415048,2.9240799290807815,2.163553071028968,2.6629605023600997,2.0938835093441197,125.81088276584954
+39.1,3.0119576932614054,0.37482749470396426,114.31488933481502,2.923654458690921,2.1635390206473533,2.662943208764771,2.0938755765059214,126.150110665185
+39.2,3.0119575532835774,0.3747729872777953,114.5905885900587,2.9232293007668035,2.1635249702657386,2.6629259151694424,2.093867643667723,126.48941140994133
+39.3,3.011957413305219,0.3747185197072104,114.86621503104827,2.922804453716241,2.1635109198841245,2.662908621574114,2.0938597108295247,126.82878496895172
+39.4,3.0119572733263307,0.3746640917896391,115.1417686887919,2.9223799159591852,2.16349686950251,2.662891327978785,2.0938517779913264,127.16823131120812
+39.5,3.0119571333469115,0.37460970332405147,115.41724959414026,2.9219556859276015,2.1634828191208957,2.662874034383457,2.093843845153128,127.50775040585975
+39.6,3.0119569933669617,0.3745553541109425,115.69265777778793,2.9215317620653516,2.1634687687392815,2.6628567407881287,2.0938359123149297,127.84734222221209
+39.7,3.011956853386482,0.3745010439523168,115.96799327027445,2.9211081428280714,2.163454718357667,2.6628394471928,2.0938279794767314,128.1870067297256
+39.8,3.011956713405472,0.37444677265167314,116.24325610198542,2.920684826683051,2.1634406679760527,2.6628221535974714,2.093820046638533,128.5267438980146
+39.9,3.011956573423931,0.37439254001398964,116.51844630315385,2.920261812109119,2.163426617594438,2.662804860002143,2.0938121138003347,128.86655369684615
+40.0,3.0119564334418607,0.3743383458457088,116.79356390386117,2.919839097596529,2.163412567212824,2.662787566406814,2.093804180962137,129.20643609613884
+40.1,3.0119562934592596,0.37428418995472323,117.06860893403834,2.919416681646841,2.1633985168312093,2.6627702728114855,2.0937962481239385,129.5463910659617
+40.2,3.011956153476128,0.37423007215036075,117.34358142346714,2.918994562772814,2.1633844664495947,2.662752979216157,2.09378831528574,129.8864185765329
+40.3,3.0119560134924663,0.37417599224337045,117.61848140178107,2.91857273949829,2.1633704160679805,2.6627356856208286,2.093780382447542,130.22651859821892
+40.4,3.011955873508274,0.37412195004590854,117.89330889846669,2.9181512103580864,2.1633563656863664,2.6627183920255,2.0937724496093435,130.5666911015333
+40.5,3.0119557335235516,0.3740679453715242,118.1680639428645,2.917729973897889,2.1633423153047517,2.6627010984301718,2.093764516771145,130.9069360571355
+40.6,3.011955593538298,0.37401397803514613,118.44274656417008,2.91730902867414,2.1633282649231376,2.662683804834843,2.093756583932947,131.24725343582995
+40.7,3.011955453552515,0.3739600478530691,118.71735679143532,2.916888373253939,2.163314214541523,2.6626665112395145,2.0937486510947485,131.5876432085647
+40.8,3.011955313566201,0.3739061546429398,118.99189465356918,2.916468006214931,2.163300164159909,2.662649217644186,2.09374071825655,131.92810534643084
+40.9,3.011955173579357,0.3738522982237447,119.26636017933903,2.916047926145209,2.163286113778294,2.662631924048857,2.093732785418352,132.26863982066098
+41.0,3.0119550335919825,0.373798478415796,119.54075339737157,2.915628131643209,2.16327206339668,2.6626146304535285,2.0937248525801535,132.60924660262845
+41.1,3.011954893604077,0.37374469504071905,119.81507433615373,2.9152086213176087,2.1632580130150654,2.6625973368582,2.093716919741955,132.9499256638463
+41.2,3.011954753615642,0.37369094792143986,120.08932302403394,2.9147893937872316,2.163243962633451,2.6625800432628717,2.093708986903757,133.29067697596608
+41.3,3.011954613626677,0.3736372368821724,120.36349948922303,2.914370447680945,2.163229912251837,2.6625627496675435,2.0937010540655585,133.63150051077696
+41.4,3.0119544736371804,0.37358356174840535,120.63760375979506,2.9139517816375617,2.1632158618702224,2.662545456072215,2.09369312122736,133.97239624020494
+41.5,3.0119543336471537,0.37352992234689103,120.91163586368863,2.91353339430575,2.163201811488608,2.662528162476886,2.093685188389162,134.31336413631138
+41.6,3.011954193656597,0.3734763185056324,121.1855958287076,2.9131152843439327,2.1631877611069936,2.6625108688815575,2.0936772555509635,134.6544041712924
+41.7,3.011954053665509,0.3734227500538714,121.45948368252222,2.912697450420197,2.163173710725379,2.662493575286229,2.0936693227127656,134.9955163174778
+41.8,3.0119539136738913,0.3733692168220769,121.73329945266997,2.9122798912122003,2.163159660343765,2.6624762816909002,2.0936613898745673,135.33670054733003
+41.9,3.0119537736817437,0.3733157186419333,122.00704316655664,2.9118626054070798,2.16314560996215,2.6624589880955716,2.093653457036369,135.67795683344337
+42.0,3.011953633689065,0.37326225534632806,122.28071485145708,2.911445591701359,2.163131559580536,2.6624416945002434,2.0936455241981706,136.01928514854293
+42.1,3.011953493695856,0.37320882676934164,122.55431453451642,2.911028848800865,2.163117509198922,2.662424400904915,2.0936375913599723,136.3606854654836
+42.2,3.0119533537021166,0.37315543274623497,122.8278422427507,2.910612375420633,2.1631034588173073,2.6624071073095865,2.093629658521774,136.70215775724932
+42.3,3.011953213707846,0.3731020731134387,123.10129800304796,2.910196170284822,2.163089408435693,2.662389813714258,2.0936217256835756,137.04370199695205
+42.4,3.0119530737130455,0.37304874770854246,123.37468184216918,2.9097802321266317,2.1630753580540785,2.662372520118929,2.0936137928453773,137.38531815783082
+42.5,3.0119529337177147,0.3729954563702836,123.647993786749,2.909364559688212,2.163061307672464,2.6623552265236006,2.093605860007179,137.727006213251
+42.6,3.0119527937218535,0.3729421989385362,123.92123386329682,2.9089491517205825,2.1630472572908497,2.662337932928272,2.0935979271689806,138.0687661367032
+42.7,3.011952653725462,0.3728889752543009,124.19440209819749,2.9085340069835475,2.163033206909235,2.6623206393329433,2.0935899943307823,138.41059790180256
+42.8,3.0119525137285397,0.37283578515969407,124.46749851771227,2.908119124245614,2.163019156527621,2.662303345737615,2.093582061492584,138.75250148228773
+42.9,3.011952373731087,0.3727826284979375,124.74052314797984,2.9077045022839125,2.1630051061460067,2.6622860521422864,2.0935741286543856,139.09447685202016
+43.0,3.011952233733104,0.3727295051133478,125.01347601501688,2.9072901398841133,2.162991055764392,2.662268758546958,2.0935661958161873,139.43652398498315
+43.1,3.01195209373459,0.3726764148513269,125.2863571447191,2.9068760358403503,2.162977005382778,2.6622514649516296,2.093558262977989,139.77864285528094
+43.2,3.011951953735546,0.37262335755835146,125.55916656286213,2.9064621889551416,2.1629629550011633,2.662234171356301,2.0935503301397906,140.12083343713792
+43.3,3.0119518137359713,0.37257033308196263,125.83190429510206,2.906048598039309,2.162948904619549,2.6622168777609723,2.0935423973015928,140.46309570489794
+43.4,3.0119516737358665,0.37251734127075725,126.10457036697674,2.9056352619119066,2.1629348542379345,2.6621995841656436,2.0935344644633944,140.80542963302327
+43.5,3.011951533735231,0.37246438197437703,126.37716480390614,2.905222179400141,2.16292080385632,2.662182290570315,2.093526531625196,141.14783519609387
+43.6,3.0119513937340647,0.3724114550434997,126.64968763119339,2.9048093493392977,2.1629067534747057,2.6621649969749863,2.0935185987869978,141.49031236880663
+43.7,3.011951253732368,0.3723585603298292,126.9221388740256,2.904396770572668,2.162892703093091,2.662147703379658,2.0935106659487994,141.83286112597443
+43.8,3.0119511137301407,0.3723056976860864,127.19451855747457,2.9039844419514744,2.162878652711477,2.66213040978433,2.093502733110601,142.17548144252544
+43.9,3.0119509737273837,0.37225286696599985,127.46682670649767,2.903572362334799,2.1628646023298628,2.6621131161890013,2.0934948002724028,142.51817329350234
+44.0,3.0119508337240952,0.3722000680242963,127.73906334593849,2.903160530589511,2.162850551948248,2.6620958225936726,2.0934868674342044,142.86093665406153
+44.1,3.0119506937202765,0.37214730071669194,128.0112285005277,2.902748945590197,2.162836501566634,2.662078528998344,2.093478934596006,143.20377149947234
+44.2,3.0119505537159275,0.37209456489988363,128.28332219488388,2.9023376062190924,2.1628224511850194,2.6620612354030153,2.0934710017578078,143.54667780511613
+44.3,3.011950413711048,0.3720418604315396,128.55534445351418,2.9019265113660087,2.162808400803405,2.6620439418076867,2.0934630689196094,143.8896555464858
+44.4,3.0119502737056374,0.37198918717029056,128.82729530081502,2.9015156599282665,2.1627943504217906,2.662026648212358,2.093455136081411,144.23270469918498
+44.5,3.0119501336996968,0.3719365449757221,129.09917476107313,2.9011050508106324,2.162780300040176,2.66200935461703,2.0934472032432128,144.57582523892688
+44.6,3.011949993693226,0.3718839337083646,129.37098285846588,2.900694682925244,2.1627662496585622,2.661992061021701,2.0934392704050144,144.91901714153414
+44.7,3.011949853686224,0.3718313532296859,129.6427196170623,2.90028455519155,2.1627521992769476,2.661974767426373,2.093431337566816,145.26228038293775
+44.8,3.0119497136786917,0.3717788034020826,129.91438506082375,2.8998746665362445,2.162738148895333,2.6619574738310443,2.0934234047286178,145.60561493917626
+44.9,3.0119495736706288,0.37172628408887154,130.18597921360458,2.899465015893198,2.162724098513719,2.6619401802357157,2.0934154718904194,145.9490207863954
+45.0,3.0119494336620356,0.3716737951542818,130.45750209915292,2.8990556022033984,2.162710048132104,2.661922886640387,2.0934075390522215,146.29249790084708
+45.1,3.0119492936529113,0.37162133646344675,130.7289537411113,2.898646424414885,2.16269599775049,2.6619055930450584,2.093399606214023,146.6360462588887
+45.2,3.0119491536432568,0.3715689078823958,131.00033416301747,2.8982374814826874,2.1626819473688754,2.6618882994497297,2.093391673375825,146.97966583698255
+45.3,3.011949013633072,0.37151650927804664,131.271643388305,2.897828772368764,2.1626678969872613,2.661871005854401,2.0933837405376265,147.323356611695
+45.4,3.011948873622356,0.3714641405181971,131.54288144030397,2.8974202960419375,2.1626538466056466,2.661853712259073,2.093375807699428,147.66711855969604
+45.5,3.01194873361111,0.37141180147151787,131.8140483422417,2.8970120514778395,2.1626397962240325,2.6618364186637447,2.09336787486123,148.0109516577583
+45.6,3.0119485935993326,0.3713594920075445,132.08514411724343,2.896604037658847,2.1626257458424183,2.661819125068416,2.0933599420230316,148.3548558827566
+45.7,3.0119484535870256,0.37130721199666994,132.356168788333,2.896196253574026,2.1626116954608037,2.6618018314730874,2.093352009184833,148.69883121166703
+45.8,3.0119483135741874,0.371254961310137,132.62712237843337,2.8957886982190693,2.162597645079189,2.6617845378777587,2.093344076346635,149.04287762156665
+45.9,3.011948173560819,0.3712027398200312,132.89800491036758,2.8953813705962435,2.162583594697575,2.66176724428243,2.0933361435084366,149.38699508963245
+46.0,3.01194803354692,0.37115054739927267,133.16881640685907,2.8949742697143273,2.1625695443159603,2.6617499506871014,2.093328210670238,149.73118359314097
+46.1,3.01194789353249,0.3710983839216098,133.4395568905325,2.894567394588557,2.162555493934346,2.6617326570917728,2.09332027783204,150.07544310946756
+46.2,3.01194775351753,0.3710462492616117,133.71022638391443,2.8941607442405717,2.1625414435527315,2.6617153634964446,2.0933123449938416,150.41977361608562
+46.3,3.011947613502039,0.370994143294661,133.98082490943386,2.893754317698356,2.1625273931711173,2.6616980699011163,2.0933044121556432,150.7641750905661
+46.4,3.0119474734860177,0.37094206589694695,134.25135248942303,2.8933481139961863,2.162513342789503,2.6616807763057877,2.093296479317445,151.10864751057696
+46.5,3.011947333469465,0.37089001694545815,134.52180914611768,2.8929421321745736,2.1624992924078885,2.661663482710459,2.0932885464792466,151.45319085388235
+46.6,3.0119471934523823,0.3708379963179765,134.7921949016581,2.8925363712802166,2.1624852420262743,2.6616461891151304,2.0932806136410482,151.79780509834194
+46.7,3.011947053434769,0.37078600389306954,135.06250977808952,2.8921308303659425,2.1624711916446597,2.6616288955198018,2.0932726808028503,152.14249022191052
+46.8,3.011946913416625,0.370734039550084,135.33275379736267,2.8917255084906555,2.1624571412630456,2.661611601924473,2.093264747964652,152.48724620263732
+46.9,3.0119467733979506,0.37068210316913947,135.6029269813346,2.891320404719288,2.162443090881431,2.6615943083291445,2.0932568151264537,152.8320730186654
+47.0,3.011946633378745,0.37063019463112135,135.87302935176908,2.8909155181227466,2.1624290404998163,2.6615770147338162,2.0932488822882553,153.17697064823093
+47.1,3.0119464933590088,0.3705783138176745,136.14306093033727,2.890510847777861,2.162414990118202,2.6615597211384876,2.093240949450057,153.52193906966275
+47.2,3.0119463533387423,0.37052646061119704,136.4130217386183,2.890106392767337,2.162400939736588,2.6615424275431594,2.0932330166118587,153.86697826138172
+47.3,3.0119462133179455,0.3704746348948336,136.68291179809992,2.8897021521797024,2.1623868893549734,2.6615251339478307,2.0932250837736603,154.2120882019001
+47.4,3.0119460732966177,0.37042283655246927,136.95273113017893,2.8892981251092604,2.162372838973359,2.661507840352502,2.093217150935462,154.55726886982106
+47.5,3.0119459332747587,0.3703710654687231,137.22247975616193,2.8888943106560405,2.1623587885917446,2.6614905467571734,2.0932092180972637,154.9025202438381
+47.6,3.0119457932523694,0.3703193215289424,137.49215769726575,2.888490707925751,2.1623447382101304,2.661473253161845,2.0932012852590653,155.24784230273428
+47.7,3.01194565322945,0.37026760461919617,137.76176497461816,2.8880873160297305,2.162330687828516,2.661455959566516,2.093193352420867,155.5932350253819
+47.8,3.011945513206,0.3702159146262692,138.0313016092582,2.8876841340848998,2.1623166374469016,2.6614386659711875,2.0931854195826687,155.9386983907418
+47.9,3.0119453731820185,0.3701642514376558,138.30076762213696,2.8872811612137155,2.162302587065287,2.6614213723758593,2.0931774867444704,156.28423237786305
+48.0,3.0119452331575065,0.3701126149415548,138.57016303411814,2.8868783965441276,2.162288536683673,2.661404078780531,2.093169553906272,156.6298369658819
+48.1,3.011945093132464,0.37006100502686257,138.83948786597833,2.8864758392095284,2.162274486302058,2.6613867851852024,2.0931616210680737,156.9755121340217
+48.2,3.011944953106891,0.37000942158316796,139.10874213840782,2.88607348834871,2.162260435920444,2.661369491589874,2.0931536882298754,157.32125786159222
+48.3,3.011944813080787,0.36995786450074614,139.3779258720111,2.88567134310582,2.1622463855388294,2.661352197994545,2.093145755391677,157.6670741279889
+48.4,3.011944673054152,0.3699063336705532,139.64703908730726,2.8852694026303154,2.1622323351572152,2.6613349043992165,2.093137822553479,158.01296091269273
+48.5,3.011944533026987,0.36985482898422045,139.91608180473062,2.88486766607692,2.1622182847756006,2.661317610803888,2.093129889715281,158.35891819526938
+48.6,3.011944392999291,0.3698033503340489,140.18505404463127,2.8844661326055814,2.1622042343939865,2.661300317208559,2.0931219568770825,158.70494595536877
+48.7,3.0119442529710643,0.36975189761300326,140.45395582727542,2.8840648013814256,2.162190184012372,2.661283023613231,2.093114024038884,159.0510441727246
+48.8,3.0119441129423077,0.36970047071470763,140.72278717284632,2.8836636715747197,2.1621761336307577,2.6612657300179023,2.093106091200686,159.39721282715368
+48.9,3.011943972913019,0.36964906953343857,140.99154810144415,2.883262742360821,2.1621620832491435,2.661248436422574,2.0930981583624875,159.74345189855586
+49.0,3.0119438328832002,0.3695976939641213,141.26023863308717,2.8828620129201465,2.162148032867529,2.6612311428272455,2.093090225524289,160.08976136691282
+49.1,3.011943692852851,0.36954634390232355,141.5288587877119,2.882461482438124,2.1621339824859147,2.661213849231917,2.093082292686091,160.43614121228813
+49.2,3.011943552821971,0.36949501924424993,141.79740858517337,2.88206115010515,2.1621199321043,2.661196555636588,2.0930743598478925,160.78259141482664
+49.3,3.0119434127905595,0.36944371988673796,142.06588804524623,2.8816610151165567,2.1621058817226855,2.6611792620412595,2.093066427009694,161.12911195475377
+49.4,3.011943272758618,0.3693924457272522,142.33429718762483,2.8812610766725677,2.1620918313410713,2.661161968445931,2.093058494171496,161.47570281237518
+49.5,3.011943132726146,0.369341196663879,142.6026360319237,2.8808613339782565,2.1620777809594567,2.6611446748506027,2.0930505613332975,161.82236396807633
+49.6,3.011942992693143,0.36928997259532176,142.87090459767808,2.88046178624351,2.1620637305778425,2.661127381255274,2.093042628495099,162.16909540232194
+49.7,3.0119428526596086,0.369238773420896,143.13910290434455,2.880062432682989,2.1620496801962283,2.661110087659946,2.093034695656901,162.51589709565548
+49.8,3.0119427126255442,0.3691875990405247,143.40723097130143,2.879663272516093,2.1620356298146137,2.661092794064617,2.0930267628187025,162.86276902869858
+49.9,3.0119425725909488,0.36913644935473267,143.67528881784907,2.8792643049669153,2.1620215794329996,2.6610755004692885,2.093018829980504,163.20971118215093
+50.0,3.011942432555823,0.3690853242646425,143.9432764632106,2.878865529264212,2.162007529051385,2.66105820687396,2.093010897142306,163.55672353678943
+50.1,3.011942292520166,0.3690342236719691,144.21119392653208,2.878466944641359,2.1619934786697708,2.6610409132786312,2.093002964304108,163.90380607346793
+50.2,3.0119421524839787,0.3689831474790156,144.47904122688337,2.8780685503363217,2.161979428288156,2.6610236196833026,2.0929950314659096,164.25095877311668
+50.3,3.01194201244726,0.3689320955886682,144.74681838325807,2.877670345591612,2.1619653779065415,2.661006326087974,2.0929870986277113,164.59818161674193
+50.4,3.011941872410011,0.36888106790439207,145.01452541457462,2.877272329654258,2.1619513275249274,2.6609890324926457,2.092979165789513,164.94547458542542
+50.5,3.0119417323722306,0.368830064330226,145.28216233967606,2.8768745017757635,2.1619372771433127,2.660971738897317,2.0929712329513146,165.29283766032395
+50.6,3.0119415923339203,0.3687790847707788,145.549729177331,2.876476861212075,2.1619232267616986,2.660954445301989,2.0929633001131163,165.64027082266904
+50.7,3.011941452295079,0.36872812913122366,145.81722594623372,2.8760794072235445,2.1619091763800844,2.6609371517066602,2.092955367274918,165.98777405376632
+50.8,3.0119413122557064,0.3686771973172947,146.08465266500485,2.875682139074899,2.16189512599847,2.6609198581113316,2.0929474344367196,166.33534733499513
+50.9,3.0119411722158036,0.36862628923528223,146.35200935219177,2.8752850560352017,2.1618810756168556,2.660902564516003,2.0929395015985213,166.68299064780825
+51.0,3.0119410321753697,0.3685754047920282,146.6192960262688,2.87488815737782,2.161867025235241,2.6608852709206743,2.092931568760323,167.0307039737312
+51.1,3.0119408921344046,0.36852454389492184,146.88651270563795,2.8744914423803904,2.161852974853627,2.6608679773253456,2.0929236359221246,167.37848729436206
+51.2,3.01194075209291,0.368473706451896,147.15365940862918,2.874094910324789,2.161838924472012,2.6608506837300174,2.0929157030839263,167.72634059137084
+51.3,3.0119406120508834,0.36842289237142206,147.42073615350083,2.8736985604970924,2.1618248740903976,2.660833390134689,2.092907770245728,168.07426384649918
+51.4,3.0119404720083267,0.36837210156250644,147.68774295844008,2.8733023921875502,2.161810823708784,2.6608160965393606,2.0928998374075296,168.42225704155993
+51.5,3.0119403319652385,0.36832133393468564,147.95467984156323,2.872906404690548,2.1617967733271692,2.660798802944032,2.0928919045693313,168.7703201584368
+51.6,3.01194019192162,0.3682705893980234,148.22154682091644,2.8725105973045824,2.1617827229455546,2.6607815093487033,2.0928839717311334,169.11845317908356
+51.7,3.0119400518774704,0.368219867863105,148.48834391447573,2.872114969332219,2.1617686725639405,2.6607642157533746,2.092876038892935,169.4666560855243
+51.8,3.01193991183279,0.3681691692410348,148.7550711401477,2.8717195200800716,2.161754622182326,2.660746922158046,2.0928681060547367,169.8149288598523
+51.9,3.011939771787579,0.3681184934434309,149.0217285157697,2.871324248858761,2.1617405718007117,2.6607296285627173,2.0928601732165384,170.1632714842303
+52.0,3.0119396317418365,0.36806784038242213,149.2883160591104,2.8709291549828926,2.161726521419097,2.6607123349673887,2.09285224037834,170.5116839408896
+52.1,3.0119394916955637,0.36801720997064385,149.55483378787025,2.870534237771022,2.161712471037483,2.6606950413720605,2.0928443075401417,170.86016621212977
+52.2,3.0119393516487603,0.3679666021212337,149.82128171968154,2.8701394965456233,2.1616984206558683,2.660677747776732,2.0928363747019434,171.2087182803185
+52.3,3.011939211601426,0.3679160167478283,150.0876598721091,2.869744930633061,2.161684370274254,2.6606604541814036,2.092828441863745,171.5573401278909
+52.4,3.0119390715535603,0.36786545376455904,150.35396826265057,2.8693505393635608,2.16167031989264,2.660643160586075,2.0928205090255467,171.90603173734942
+52.5,3.0119389315051643,0.3678149130860486,150.6202069087369,2.868956322071179,2.1616562695110253,2.6606258669907463,2.0928125761873484,172.25479309126314
+52.6,3.011938791456237,0.36776439462740684,150.8863758277325,2.8685622780937736,2.1616422191294107,2.6606085733954177,2.09280464334915,172.60362417226753
+52.7,3.011938651406779,0.3677138983042275,151.15247503693578,2.8681684067729747,2.1616281687477965,2.660591279800089,2.0927967105109517,172.95252496306426
+52.8,3.0119385113567905,0.36766342403258445,151.41850455357957,2.8677747074541586,2.161614118366182,2.6605739862047604,2.0927887776727534,173.30149544642043
+52.9,3.011938371306271,0.3676129717290278,151.68446439483145,2.867381179486417,2.1616000679845677,2.660556692609432,2.092780844834555,173.65053560516856
+53.0,3.01193823125522,0.3675625413105803,151.95035457779392,2.8669878222225265,2.161586017602953,2.6605393990141035,2.092772911996357,173.99964542220613
+53.1,3.0119380912036386,0.3675121326947343,152.21617511950507,2.8665946350189278,2.161571967221339,2.6605221054187753,2.092764979158159,174.34882488049496
+53.2,3.0119379511515265,0.3674617457994478,152.4819260369389,2.866201617235693,2.1615579168397248,2.6605048118234467,2.0927570463199605,174.69807396306115
+53.3,3.0119378110988833,0.36741138054314065,152.7476073470053,2.8658087682364974,2.16154386645811,2.660487518228118,2.092749113481762,175.0473926529947
+53.4,3.0119376710457098,0.36736103684469196,153.0132190665511,2.8654160873885974,2.161529816076496,2.6604702246327894,2.092741180643564,175.39678093344892
+53.5,3.0119375309920042,0.3673107146234357,153.2787612123597,2.8650235740627985,2.1615157656948814,2.6604529310374607,2.0927332478053655,175.7462387876403
+53.6,3.0119373909377685,0.36726041379915797,153.544233801152,2.8646312276334327,2.1615017153132667,2.660435637442132,2.092725314967167,176.09576619884803
+53.7,3.0119372508830016,0.36721013429209354,153.80963684958633,2.8642390474783297,2.1614876649316526,2.660418343846804,2.092717382128969,176.44536315041373
+53.8,3.0119371108277044,0.3671598760229221,154.074970374259,2.8638470329787924,2.161473614550038,2.660401050251475,2.0927094492907705,176.79502962574097
+53.9,3.0119369707718757,0.3671096389127653,154.3402343917048,2.8634551835195694,2.1614595641684238,2.6603837566561466,2.092701516452572,177.14476560829522
+54.0,3.011936830715516,0.3670594228831835,154.6054289183969,2.8630634984888315,2.1614455137868096,2.6603664630608184,2.092693583614374,177.4945710816031
+54.1,3.011936690658626,0.36700922785617257,154.87055397074772,2.862671977278146,2.161431463405195,2.6603491694654897,2.0926856507761755,177.8444460292523
+54.2,3.011936550601204,0.36695905375416005,155.13560956510872,2.8622806192824486,2.161417413023581,2.660331875870161,2.092677717937977,178.19439043489132
+54.3,3.0119364105432522,0.3669089005000032,155.40059571777135,2.861889423900025,2.161403362641966,2.6603145822748324,2.0926697850997793,178.54440428222864
+54.4,3.011936270484769,0.3668587680169842,155.66551244496677,2.861498390532477,2.161389312260352,2.6602972886795038,2.092661852261581,178.89448755503327
+54.5,3.0119361304257546,0.3668086562288087,155.9303597628666,2.861107518584708,2.1613752618787374,2.660279995084175,2.0926539194233826,179.24464023713344
+54.6,3.0119359903662097,0.3667585650596016,156.19513768758313,2.8607168074648923,2.161361211497123,2.660262701488847,2.0926459865851843,179.5948623124169
+54.7,3.0119358503061338,0.3667084944339041,156.45984623516952,2.860326256584452,2.1613471611155086,2.6602454078935183,2.092638053746986,179.9451537648305
+54.8,3.0119357102455266,0.3666584442766713,156.72448542162041,2.859935865358037,2.1613331107338944,2.66022811429819,2.0926301209087876,180.2955145783796
+54.9,3.0119355701843893,0.36660841451326864,156.98905526287191,2.8595456332034956,2.16131906035228,2.6602108207028614,2.0926221880705893,180.6459447371281
+55.0,3.0119354301227204,0.36655840506946874,157.2535557748021,2.8591555595418563,2.1613050099706657,2.6601935271075328,2.092614255232391,180.99644422519793
+55.1,3.0119352900605207,0.366508415871449,157.5179869732314,2.8587656437973026,2.161290959589051,2.660176233512204,2.0926063223941926,181.34701302676865
+55.2,3.0119351499977896,0.36645844684578827,157.78234887392264,2.858375885397149,2.161276909207437,2.6601589399168755,2.0925983895559943,181.6976511260774
+55.3,3.011935009934528,0.3664084979194644,158.04664149258178,2.857986283771823,2.1612628588258223,2.660141646321547,2.092590456717796,182.04835850741821
+55.4,3.0119348698707356,0.36635856901985053,158.31086484485783,2.8575968383548345,2.161248808444208,2.6601243527262186,2.0925825238795976,182.39913515514218
+55.5,3.0119347298064114,0.36630866007471286,158.57501894634322,2.857207548582761,2.1612347580625935,2.66010705913089,2.0925745910413993,182.7499810536568
+55.6,3.011934589741557,0.3662587710122081,158.83910381257442,2.8568184138952235,2.161220707680979,2.6600897655355613,2.092566658203201,183.1008961874256
+55.7,3.011934449676171,0.3662089017608796,159.10311945903177,2.8564294337348612,2.161206657299365,2.660072471940233,2.092558725365003,183.45188054096826
+55.8,3.011934309610255,0.3661590522496559,159.36706590114022,2.856040607547316,2.1611926069177505,2.6600551783449045,2.0925507925268048,183.80293409885977
+55.9,3.0119341695438075,0.3661092224078468,159.63094315426937,2.8556519347812053,2.161178556536136,2.660037884749576,2.0925428596886064,184.15405684573065
+56.0,3.0119340294768286,0.3660594121651412,159.8947512337337,2.8552634148881015,2.1611645061545217,2.660020591154247,2.092534926850408,184.50524876626633
+56.1,3.011933889409319,0.3660096214516046,160.15849015479318,2.8548750473225164,2.161150455772907,2.6600032975589185,2.0925269940122098,184.85650984520686
+56.2,3.0119337493412783,0.3659598501976761,160.42215993265327,2.854486831541873,2.161136405391293,2.6599860039635903,2.0925190611740114,185.20784006734675
+56.3,3.011933609272707,0.3659100983341654,160.6857605824654,2.8540987670064903,2.1611223550096783,2.6599687103682617,2.092511128335813,185.5592394175346
+56.4,3.0119334692036044,0.3658603657922511,160.9492921193271,2.853710853179559,2.161108304628064,2.659951416772933,2.0925031954976148,185.9107078806729
+56.5,3.0119333291339707,0.3658106525034771,161.21275455828237,2.8533230895271218,2.16109425424645,2.659934123177605,2.0924952626594164,186.26224544171765
+56.6,3.0119331890638064,0.36576095839975087,161.476147914322,2.852935475518057,2.1610802038648353,2.659916829582276,2.092487329821218,186.613852085678
+56.7,3.011933048993111,0.3657112834133401,161.7394722023838,2.852548010624053,2.161066153483221,2.6598995359869475,2.0924793969830198,186.96552779761623
+56.8,3.011932908921884,0.36566162747687064,162.00272743735277,2.852160694319591,2.1610521031016066,2.659882242391619,2.0924714641448214,187.31727256264722
+56.9,3.0119327688501265,0.36561199052332405,162.2659136340617,2.851773526081928,2.161038052719992,2.65986494879629,2.092463531306623,187.6690863659383
+57.0,3.0119326287778376,0.36556237248603485,162.52903080729112,2.8513865053910723,2.1610240023383778,2.6598476552009616,2.092455598468425,188.0209691927089
+57.1,3.0119324887050176,0.36551277329868803,162.79207897176968,2.8509996317297666,2.161009951956763,2.6598303616056334,2.092447665630227,188.37292102823037
+57.2,3.011932348631667,0.3654631928953167,163.05505814217452,2.8506129045834703,2.160995901575149,2.6598130680103047,2.0924397327920286,188.72494185782554
+57.3,3.011932208557785,0.36541363121029985,163.3179683331314,2.8502263234403387,2.1609818511935344,2.659795774414976,2.09243179995383,189.0770316668686
+57.4,3.0119320684833717,0.3653640881783593,163.58080955921503,2.8498398877912026,2.16096780081192,2.659778480819648,2.092423867115632,189.429190440785
+57.5,3.011931928408428,0.3653145637345584,163.84358183494945,2.8494535971295556,2.160953750430306,2.659761187224319,2.0924159342774336,189.78141816505058
+57.6,3.011931788332953,0.36526505781429824,164.10628517480794,2.8490674509515266,2.1609397000486914,2.6597438936289906,2.092408001439235,190.1337148251921
+57.7,3.011931648256947,0.36521557035331687,164.3689195932138,2.8486814487558716,2.1609256496670772,2.659726600033662,2.092400068601037,190.48608040678624
+57.8,3.01193150818041,0.3651661012876855,164.63148510454013,2.8482955900439473,2.1609115992854626,2.6597093064383333,2.0923921357628386,190.83851489545987
+57.9,3.0119313681033417,0.36511665055380715,164.89398172311041,2.847909874319696,2.160897548903848,2.659692012843005,2.0923842029246402,191.1910182768896
+58.0,3.011931228025742,0.36506721808841414,165.15640946319857,2.8475243010896305,2.160883498522234,2.6596747192476764,2.092376270086442,191.54359053680145
+58.1,3.011931087947612,0.36501780382856575,165.41876833902944,2.847138869862813,2.160869448140619,2.6596574256523478,2.0923683372482436,191.89623166097059
+58.2,3.0119309478689504,0.3649684077116456,165.6810583647787,2.8467535801508363,2.160855397759005,2.6596401320570195,2.0923604044100452,192.24894163522134
+58.3,3.0119308077897577,0.36491902967536044,165.94327955457342,2.8463684314678117,2.160841347377391,2.659622838461691,2.092352471571847,192.6017204454266
+58.4,3.0119306677100344,0.36486966965773676,166.20543192249224,2.8459834233303467,2.1608272969957762,2.6596055448663622,2.0923445387336486,192.95456807750776
+58.5,3.01193052762978,0.3648203275971193,166.46751548256555,2.8455985552575305,2.160813246614162,2.6595882512710336,2.0923366058954502,193.3074845174345
+58.6,3.011930387548994,0.36477100343216884,166.72953024877572,2.845213826770917,2.1607991962325475,2.659570957675705,2.0923286730572523,193.6604697512243
+58.7,3.011930247467677,0.3647216971018596,166.99147623505746,2.844829237394505,2.1607851458509333,2.6595536640803763,2.092320740219054,194.01352376494256
+58.8,3.0119301073858287,0.36467240854547794,167.253353455298,2.844444786654728,2.1607710954693187,2.659536370485048,2.0923128073808557,194.36664654470198
+58.9,3.011929967303449,0.3646231377026191,167.51516192333727,2.8440604740804294,2.160757045087704,2.6595190768897194,2.0923048745426573,194.7198380766627
+59.0,3.011929827220539,0.3645738845131864,167.77690165296838,2.843676299202854,2.16074299470609,2.659501783294391,2.092296941704459,195.07309834703165
+59.1,3.011929687137098,0.36452464891738784,168.03857265793746,2.8432922615556255,2.1607289443244757,2.6594844896990626,2.0922890088662607,195.42642734206257
+59.2,3.0119295470531253,0.364475430855735,168.3001749519442,2.842908360674733,2.160714893942861,2.659467196103734,2.0922810760280623,195.7798250480558
+59.3,3.0119294069686218,0.3644262302690406,168.56170854864203,2.842524596098517,2.160700843561247,2.6594499025084053,2.092273143189864,196.13329145135796
+59.4,3.0119292668835875,0.3643770470984167,168.82317346163845,2.8421409673676505,2.1606867931796323,2.6594326089130766,2.0922652103516657,196.48682653836158
+59.5,3.0119291267980213,0.36432788128527216,169.0845697044948,2.841757474025123,2.160672742798018,2.659415315317748,2.0922572775134674,196.8404302955052
+59.6,3.0119289867119243,0.3642787327713114,169.34589729072727,2.841374115616229,2.1606586924164035,2.65939802172242,2.092249344675269,197.19410270927278
+59.7,3.011928846625296,0.3642296014985318,169.60715623380634,2.840990891688548,2.1606446420347893,2.659380728127091,2.0922414118370707,197.54784376619372
+59.8,3.0119287065381366,0.36418048740922193,169.8683465471575,2.8406078017919314,2.1606305916531747,2.6593634345317625,2.0922334789988724,197.9016534528425
+59.9,3.0119285664504463,0.36413139044596,170.12946824416144,2.840224845478488,2.1606165412715606,2.6593461409364343,2.092225546160674,198.25553175583858
+60.0,3.011928426362225,0.364082310551611,170.39052133815397,2.839842022302566,2.1606024908899464,2.6593288473411056,2.0922176133224757,198.60947866184605
+60.1,3.0119282862734718,0.3640332476693258,170.65150584242656,2.8394593318207413,2.1605884405083318,2.659311553745777,2.0922096804842774,198.96349415757348
+60.2,3.011928146184188,0.36398420174253876,170.91242177022653,2.8390767735918025,2.160574390126717,2.6592942601504483,2.092201747646079,199.31757822977352
+60.3,3.0119280060943727,0.36393517271496556,171.1732691347569,2.8386943471767316,2.160560339745103,2.6592769665551197,2.092193814807881,199.6717308652431
+60.4,3.0119278660040267,0.36388616053060213,171.4340479491773,2.838312052138697,2.1605462893634884,2.6592596729597915,2.092185881969683,200.02595205082272
+60.5,3.0119277259131487,0.363837165133722,171.69475822660343,2.837929888043032,2.160532238981874,2.659242379364463,2.0921779491314845,200.3802417733966
+60.6,3.0119275858217405,0.36378818646887506,171.95539998010787,2.8375478544572257,2.1605181886002596,2.659225085769134,2.092170016293286,200.73460001989216
+60.7,3.0119274457298006,0.36373922448088525,172.21597322271992,2.837165950950905,2.1605041382186454,2.6592077921738055,2.092162083455088,201.0890267772801
+60.8,3.0119273056373297,0.363690279114849,172.476477967426,2.8367841770958226,2.1604900878370312,2.6591904985784773,2.0921541506168895,201.443522032574
+60.9,3.0119271655443276,0.3636413503161336,172.7369142271698,2.836402532465842,2.1604760374554166,2.6591732049831487,2.092146217778691,201.79808577283023
+61.0,3.011927025450794,0.36359243803037516,172.9972820148525,2.836021016636926,2.1604619870738024,2.65915591138782,2.092138284940493,202.15271798514752
+61.1,3.011926885356729,0.3635435422034768,173.25758134333296,2.835639629187119,2.160447936692188,2.6591386177924914,2.0921303521022945,202.50741865666706
+61.2,3.0119267452621337,0.3634946627816072,173.51781222542803,2.835258369696536,2.1604338863105736,2.6591213241971627,2.092122419264096,202.86218777457202
+61.3,3.011926605167007,0.3634457997111988,173.77797467391258,2.834877237747351,2.160419835928959,2.6591040306018345,2.092114486425898,203.21702532608742
+61.4,3.0119264650713484,0.36339695293894564,174.03806870151985,2.834496232923776,2.1604057855473444,2.659086737006506,2.0921065535876995,203.57193129848017
+61.5,3.0119263249751587,0.36334812241180225,174.29809432094154,2.8341153548120577,2.1603917351657302,2.6590694434111772,2.092098620749501,203.92690567905848
+61.6,3.0119261848784387,0.3632993080769819,174.5580515448283,2.833734603000459,2.160377684784116,2.659052149815849,2.092090687911303,204.28194845517174
+61.7,3.011926044781186,0.3632505098819541,174.81794038578926,2.833353977079242,2.1603636344025015,2.6590348562205204,2.0920827550731045,204.63705961421078
+61.8,3.0119259046834035,0.3632017277744444,175.07776085639318,2.8329734766406665,2.1603495840208873,2.6590175626251917,2.092074822234906,204.99223914360684
+61.9,3.0119257645850888,0.363152961702431,175.33751296916776,2.8325931012789622,2.1603355336392727,2.659000269029863,2.092066889396708,205.34748703083224
+62.0,3.011925624486244,0.36310421161414497,175.5971967366005,2.832212850590331,2.1603214832576585,2.6589829754345344,2.09205895655851,205.70280326339952
+62.1,3.0119254843868664,0.3630554774580667,175.8568121711384,2.8318327241729206,2.160307432876044,2.6589656818392062,2.0920510237203116,206.05818782886166
+62.2,3.0119253442869587,0.3630067591829262,176.1163592851885,2.8314527216268246,2.1602933824944297,2.6589483882438776,2.0920430908821133,206.41364071481155
+62.3,3.01192520418652,0.36295805673769993,176.3758380911179,2.8310728425540597,2.160279332112815,2.658931094648549,2.092035158043915,206.7691619088821
+62.4,3.011925064085549,0.36290937007161,176.63524860125403,2.8306930865585582,2.1602652817312005,2.6589138010532203,2.0920272252057166,207.12475139874599
+62.5,3.011924923984047,0.3628606991341225,176.8945908278847,2.8303134532461556,2.1602512313495863,2.658896507457892,2.0920192923675183,207.4804091721153
+62.6,3.011924783882014,0.362812043874946,177.15386478325863,2.829933942224579,2.160237180967972,2.6588792138625634,2.09201135952932,207.83613521674138
+62.7,3.0119246437794494,0.36276340424402964,177.41307047958514,2.8295545531034314,2.1602231305863575,2.658861920267235,2.0920034266911216,208.19192952041487
+62.8,3.0119245036763544,0.36271478019156217,177.6722079290348,2.829175285494185,2.1602090802047433,2.658844626671906,2.0919954938529233,208.5477920709652
+62.9,3.011924363572727,0.3626661716679697,177.9312771437393,2.828796139010164,2.1601950298231287,2.658827333076578,2.091987561014725,208.9037228562607
+63.0,3.011924223468569,0.3626175786239149,178.1902781357918,2.8284171132665366,2.1601809794415145,2.6588100394812493,2.0919796281765266,209.25972186420822
+63.1,3.01192408336388,0.36256900101029516,178.4492109172471,2.8280382078803026,2.1601669290599,2.6587927458859206,2.0919716953383283,209.61578908275294
+63.2,3.011923943258659,0.362520438778241,178.7080755001217,2.8276594224702802,2.1601528786782858,2.658775452290592,2.09196376250013,209.97192449987833
+63.3,3.011923803152907,0.36247189187911494,178.9668718963942,2.8272807566570965,2.1601388282966716,2.6587581586952638,2.0919558296619316,210.3281281036058
+63.4,3.011923663046624,0.3624233602645095,179.22560011800525,2.8269022100631744,2.160124777915057,2.658740865099935,2.0919478968237333,210.68439988199475
+63.5,3.0119235229398096,0.36237484388624647,179.48426017685787,2.8265237823127225,2.160110727533443,2.6587235715046065,2.091939963985535,211.04073982314213
+63.6,3.011923382832463,0.36232634269637454,179.7428520848175,2.8261454730317217,2.160096677151828,2.658706277909278,2.0919320311473366,211.39714791518253
+63.7,3.011923242724586,0.36227785664716927,180.00137585371255,2.8257672818479205,2.1600826267702136,2.658688984313949,2.0919240983091387,211.7536241462875
+63.8,3.0119231026161772,0.36222938569112995,180.25983149533388,2.8253892083908134,2.1600685763885994,2.658671690718621,2.0919161654709404,212.11016850466612
+63.9,3.011922962507238,0.3621809297809795,180.51821902143578,2.82501125229164,2.1600545260069848,2.6586543971232923,2.091908232632742,212.46678097856423
+64.0,3.011922822397767,0.3621324888696624,180.77653844373546,2.8246334131833666,2.1600404756253706,2.6586371035279637,2.0919002997945437,212.82346155626456
+64.1,3.0119226822877643,0.3620840629103436,181.03478977391362,2.8242556907006806,2.160026425243756,2.658619809932635,2.0918923669563454,213.1802102260864
+64.2,3.0119225421772304,0.3620356518564073,181.29297302361456,2.8238780844799773,2.160012374862142,2.658602516337307,2.091884434118147,213.53702697638548
+64.3,3.0119224020661655,0.36198725566145523,181.55108820444627,2.823500594159351,2.1599983244805276,2.658585222741978,2.0918765012799487,213.89391179555372
+64.4,3.0119222619545694,0.3619388742793052,181.8091353279806,2.823123219378581,2.159984274098913,2.6585679291466495,2.0918685684417504,214.25086467201942
+64.5,3.0119221218424412,0.3618905076639902,182.0671144057535,2.822745959779124,2.159970223717299,2.658550635551321,2.091860635603552,214.6078855942465
+64.6,3.011921981729782,0.36184215576975687,182.3250254492651,2.8223688150041037,2.1599561733356842,2.6585333419559927,2.0918527027653537,214.9649745507349
+64.7,3.0119218416165916,0.36179381855106413,182.58286846998004,2.8219917846983003,2.1599421229540696,2.658516048360664,2.0918447699271554,215.32213153002002
+64.8,3.01192170150287,0.3617454959625818,182.84064347932738,2.8216148685081386,2.1599280725724554,2.6584987547653354,2.091836837088957,215.67935652067263
+64.9,3.011921561388617,0.36169718795918965,183.09835048870102,2.8212380660816794,2.159914022190841,2.6584814611700067,2.0918289042507587,216.03664951129906
+65.0,3.0119214212738328,0.3616488944959755,183.3559895094596,2.820861377068609,2.1598999718092267,2.6584641675746785,2.0918209714125604,216.39401049054044
+65.1,3.0119212811585165,0.3616006155282345,183.61356055292694,2.8204848011202297,2.1598859214276125,2.65844687397935,2.091813038574362,216.75143944707304
+65.2,3.011921141042669,0.3615523510114679,183.87106363039211,2.8201083378894496,2.159871871045998,2.658429580384021,2.0918051057361637,217.10893636960793
+65.3,3.011921000926291,0.3615041009013811,184.12849875310945,2.8197319870307727,2.1598578206643837,2.6584122867886926,2.0917971728979654,217.46650124689057
+65.4,3.011920860809381,0.361455865153883,184.3858659322988,2.8193557482002873,2.159843770282769,2.658394993193364,2.0917892400597675,217.82413406770124
+65.5,3.01192072069194,0.3614076437250846,184.64316517914574,2.8189796210556604,2.159829719901155,2.6583776995980357,2.091781307221569,218.18183482085428
+65.6,3.0119205805739666,0.36135943657129793,184.90039650480173,2.8186036052561243,2.1598156695195403,2.658360406002707,2.091773374383371,218.53960349519826
+65.7,3.0119204404554627,0.36131124364903455,185.15755992038427,2.8182277004624696,2.1598016191379257,2.6583431124073784,2.0917654415451725,218.8974400796158
+65.8,3.0119203003364277,0.36126306491500426,185.4146554369768,2.8178519063370335,2.1597875687563115,2.6583258188120498,2.091757508706974,219.25534456302321
+65.9,3.0119201602168606,0.3612149003261144,185.67168306562934,2.8174762225436925,2.1597735183746973,2.6583085252167216,2.091749575868776,219.61331693437072
+66.0,3.0119200200967624,0.36116674983946806,185.92864281735817,2.817100648747851,2.1597594679930827,2.658291231621393,2.0917416430305775,219.97135718264187
+66.1,3.0119198799761326,0.3611186134123633,186.1855347031463,2.816725184616434,2.1597454176114685,2.6582739380260643,2.091733710192379,220.32946529685373
+66.2,3.0119197398549713,0.36107049100229194,186.44235873394348,2.8163498298178773,2.159731367229854,2.6582566444307356,2.091725777354181,220.68764126605654
+66.3,3.011919599733279,0.361022382566938,186.69911492066632,2.8159745840221166,2.1597173168482398,2.6582393508354074,2.0917178445159825,221.0458850793337
+66.4,3.011919459611055,0.3609742880641772,186.95580327419867,2.815599446900582,2.159703266466625,2.6582220572400788,2.091709911677784,221.4041967258014
+66.5,3.0119193194882996,0.3609262074520751,187.21242380539138,2.8152244181261863,2.159689216085011,2.65820476364475,2.091701978839586,221.76257619460864
+66.6,3.011919179365013,0.3608781406888865,187.46897652506277,2.814849497373315,2.1596751657033963,2.6581874700494215,2.0916940460013875,222.1210234749372
+66.7,3.011919039241195,0.36083008773305414,187.72546144399877,2.8144746843178226,2.159661115321782,2.6581701764540933,2.091686113163189,222.47953855600127
+66.8,3.0119188991168455,0.3607820485432072,187.9818785729527,2.8140999786370164,2.159647064940168,2.6581528828587646,2.091678180324991,222.83812142704733
+66.9,3.0119187589919645,0.36073402307816094,188.23822792264596,2.8137253800096556,2.1596330145585534,2.658135589263436,2.0916702474867925,223.1967720773541
+67.0,3.011918618866552,0.3606860112969149,188.49450950376774,2.8133508881159366,2.1596189641769388,2.6581182956681073,2.091662314648594,223.55549049623227
+67.1,3.0119184787406077,0.3606380131586522,188.75072332697536,2.812976502637487,2.1596049137953246,2.658101002072779,2.0916543818103963,223.91427667302463
+67.2,3.0119183386141324,0.36059002862273826,189.0068694028945,2.8126022232573584,2.15959086341371,2.6580837084774505,2.091646448972198,224.27313059710553
+67.3,3.011918198487126,0.3605420576487197,189.26294774211894,2.812228049660014,2.159576813032096,2.658066414882122,2.0916385161339996,224.63205225788107
+67.4,3.011918058359588,0.3604941001963235,189.51895835521123,2.8118539815313235,2.159562762650481,2.658049121286793,2.0916305832958013,224.99104164478885
+67.5,3.011917918231518,0.36044615622545556,189.7749012527024,2.811480018558554,2.159548712268867,2.6580318276914645,2.091622650457603,225.35009874729764
+67.6,3.0119177781029167,0.3603982256962001,190.03077644509239,2.811106160430361,2.159534661887253,2.6580145340961363,2.0916147176194047,225.7092235549076
+67.7,3.011917637973784,0.36035030856881806,190.2865839428501,2.810732406836781,2.1595206115056382,2.6579972405008077,2.0916067847812063,226.06841605714996
+67.8,3.01191749784412,0.3603024048037467,190.5423237564134,2.810358757469224,2.159506561124024,2.657979946905479,2.091598851943008,226.42767624358663
+67.9,3.0119173577139247,0.3602545143615977,190.7979958961894,2.8099852120204623,2.1594925107424094,2.6579626533101504,2.0915909191048097,226.78700410381066
+68.0,3.0119172175831976,0.36020663720315715,191.05360037255454,2.8096117701846257,2.159478460360795,2.657945359714822,2.0915829862666113,227.14639962744548
+68.1,3.0119170774519386,0.36015877328938367,191.30913719585485,2.8092384316571932,2.1594644099791807,2.6579280661194935,2.091575053428413,227.50586280414515
+68.2,3.011916937320149,0.3601109225814081,191.56460637640586,2.8088651961349833,2.159450359597566,2.657910772524165,2.0915671205902147,227.86539362359417
+68.3,3.0119167971878276,0.36006308504053175,191.82000792449287,2.8084920633161476,2.159436309215952,2.657893478928836,2.0915591877520163,228.22499207550712
+68.4,3.0119166570549742,0.36001526062822586,192.07534185037107,2.8081190329001617,2.1594222588343377,2.657876185333508,2.091551254913818,228.58465814962898
+68.5,3.0119165169215902,0.3599674493061307,192.33060816426567,2.80774610458782,2.159408208452723,2.6578588917381794,2.0915433220756197,228.94439183573436
+68.6,3.0119163767876738,0.35991965103605444,192.585806876372,2.807373278081225,2.159394158071109,2.6578415981428507,2.0915353892374213,229.30419312362798
+68.7,3.0119162366532266,0.35987186577997193,192.84093799685579,2.8070005530837814,2.1593801076894943,2.657824304547522,2.091527456399223,229.66406200314427
+68.8,3.0119160965182474,0.3598240935000241,193.09600153585293,2.806627929300188,2.15936605730788,2.657807010952194,2.091519523561025,230.02399846414707
+68.9,3.0119159563827367,0.3597763341585168,193.3509975034701,2.806255406436431,2.1593520069262655,2.657789717356865,2.0915115907228268,230.38400249652994
+69.0,3.011915816246695,0.3597285877179198,193.60592590978445,2.8058829841997746,2.159337956544651,2.6577724237615366,2.0915036578846284,230.74407409021558
+69.1,3.0119156761101213,0.3596808541408662,193.86078676484408,2.8055106622987567,2.1593239061630367,2.657755130166208,2.09149572504643,231.10421323515592
+69.2,3.0119155359730163,0.35963313339015085,194.11558007866785,2.805138440443177,2.1593098557814225,2.6577378365708797,2.0914877922082318,231.4644199213322
+69.3,3.0119153958353797,0.35958542542873,194.37030586124575,2.8047663183440945,2.159295805399808,2.657720542975551,2.0914798593700334,231.82469413875427
+69.4,3.011915255697212,0.3595377302197203,194.62496412253904,2.8043942957138186,2.1592817550181937,2.6577032493802224,2.091471926531835,232.18503587746105
+69.5,3.0119151155585118,0.3594900477263972,194.87955487247993,2.8040223722658983,2.159267704636579,2.6576859557848937,2.091463993693637,232.54544512752008
+69.6,3.011914975419281,0.3594423779121951,195.13407812097248,2.803650547715122,2.159253654254965,2.6576686621895655,2.0914560608554384,232.90592187902752
+69.7,3.0119148352795175,0.3593947207407056,195.38853387789203,2.803278821777504,2.1592396038733503,2.657651368594237,2.09144812801724,233.266466122108
+69.8,3.0119146951392235,0.3593470761756771,195.64292215308564,2.8029071941702814,2.159225553491736,2.6576340749989082,2.091440195179042,233.62707784691437
+69.9,3.011914554998398,0.35929944418101345,195.8972429563722,2.8025356646119053,2.1592115031101216,2.6576167814035796,2.0914322623408435,233.98775704362785
+70.0,3.0119144148570403,0.35925182472077355,196.15149629754234,2.8021642328220335,2.159197452728507,2.657599487808251,2.091424329502645,234.3485037024577
+70.1,3.011914274715151,0.3592042177591699,196.4056821863589,2.801792898521525,2.159183402346893,2.6575821942129227,2.091416396664447,234.7093178136411
+70.2,3.0119141345727307,0.3591566232605685,196.6598006325569,2.8014216614324345,2.1591693519652786,2.657564900617594,2.0914084638262485,235.07019936744314
+70.3,3.0119139944297784,0.35910904118948705,196.91385164584335,2.8010505212779995,2.159155301583664,2.6575476070222654,2.09140053098805,235.43114835415665
+70.4,3.011913854286295,0.35906147151059503,197.167835235898,2.8006794777826416,2.15914125120205,2.657530313426937,2.091392598149852,235.79216476410207
+70.5,3.01191371414228,0.3590139141887121,197.4217514123728,2.8003085306719546,2.159127200820435,2.6575130198316086,2.091384665311654,236.15324858762722
+70.6,3.0119135739977327,0.35896636918880725,197.6756001848924,2.799937679672697,2.159113150438821,2.65749572623628,2.0913767324734556,236.5143998151076
+70.7,3.011913433852654,0.3589188364759988,197.92938156305433,2.799566924512791,2.1590991000572064,2.6574784326409513,2.0913687996352572,236.8756184369457
+70.8,3.0119132937070443,0.3588713160155528,198.18309555642887,2.799196264921312,2.1590850496755922,2.6574611390456226,2.091360866797059,237.23690444357115
+70.9,3.011913153560903,0.358823807772882,198.4367421745592,2.7988257006284796,2.159070999293978,2.6574438454502944,2.0913529339588606,237.59825782544084
+71.0,3.0119130134142296,0.35877631171354574,198.69032142696165,2.798455231365657,2.1590569489123634,2.657426551854966,2.0913450011206622,237.9596785730384
+71.1,3.0119128732670246,0.3587288278032487,198.9438333231257,2.7980848568653403,2.1590428985307493,2.657409258259637,2.091337068282464,238.32116667687433
+71.2,3.0119127331192885,0.35868135600784035,199.19727787251423,2.797714576861155,2.1590288481491346,2.6573919646643085,2.0913291354442656,238.68272212748582
+71.3,3.01191259297102,0.35863389629331355,199.4506550845634,2.797344391087846,2.15901479776752,2.6573746710689803,2.0913212026060672,239.0443449154366
+71.4,3.0119124528222208,0.3585864486258045,199.70396496868307,2.7969742992812754,2.159000747385906,2.6573573774736516,2.091313269767869,239.40603503131697
+71.5,3.011912312672889,0.35853901297159135,199.9572075342565,2.7966043011784127,2.1589866970042912,2.657340083878323,2.0913053369296706,239.76779246574353
+71.6,3.0119121725230262,0.3584915892970939,200.210382790641,2.796234396517333,2.158972646622677,2.6573227902829943,2.0912974040914722,240.12961720935897
+71.7,3.011912032372632,0.35844417756887237,200.46349074716755,2.7958645850372044,2.1589585962410625,2.6573054966876657,2.091289471253274,240.4915092528325
+71.8,3.011911892221706,0.35839677775362677,200.71653141314113,2.795494866478289,2.1589445458594483,2.6572882030923375,2.0912815384150756,240.85346858685887
+71.9,3.0119117520702483,0.35834938981819614,200.9695047978408,2.7951252405819305,2.158930495477834,2.657270909497009,2.0912736055768772,241.21549520215925
+72.0,3.0119116119182587,0.358302013729558,201.22241091051978,2.7947557070905527,2.1589164450962195,2.65725361590168,2.091265672738679,241.57758908948023
+72.1,3.0119114717657376,0.3582546494548272,201.47524976040572,2.794386265747652,2.1589023947146053,2.6572363223063515,2.0912577399004806,241.93975023959428
+72.2,3.011911331612685,0.35820729696125525,201.7280213567005,2.794016916297791,2.1588883443329907,2.6572190287110233,2.0912498070622827,242.30197864329952
+72.3,3.0119111914591006,0.3581599562162298,201.98072570858065,2.793647658486593,2.158874293951376,2.6572017351156947,2.0912418742240844,242.66427429141936
+72.4,3.0119110513049847,0.35811262718727377,202.23336282519728,2.7932784920607356,2.158860243569762,2.657184441520366,2.091233941385886,243.02663717480277
+72.5,3.011910911150337,0.35806530984204427,202.48593271567603,2.7929094167679454,2.1588461931881473,2.6571671479250374,2.0912260085476877,243.389067284324
+72.6,3.011910770995158,0.3580180041483325,202.7384353891177,2.7925404323569936,2.158832142806533,2.657149854329709,2.0912180757094894,243.75156461088227
+72.7,3.0119106308394468,0.3579707100740624,202.99087085459786,2.792171538577687,2.158818092424919,2.6571325607343805,2.091210142871291,244.1141291454022
+72.8,3.0119104906832037,0.3579234275872903,203.2432391211669,2.7918027351808643,2.1588040420433043,2.657115267139052,2.0912022100330927,244.4767608788331
+72.9,3.0119103505264295,0.35787615665620415,203.49554019785083,2.7914340219183926,2.15878999166169,2.6570979735437232,2.0911942771948944,244.83945980214924
+73.0,3.0119102103691238,0.3578288972491226,203.7477740936504,2.7910653985431564,2.1587759412800755,2.657080679948395,2.091186344356696,245.2022259063496
+73.1,3.0119100702112855,0.35778164933449425,203.9999408175419,2.790696864809055,2.1587618908984614,2.6570633863530664,2.0911784115184977,245.56505918245807
+73.2,3.011909930052916,0.3577344128808976,204.2520403784773,2.7903284204710013,2.1587478405168468,2.6570460927577377,2.0911704786802994,245.92795962152275
+73.3,3.0119097898940153,0.3576871878570393,204.50407278538364,2.7899600652849066,2.1587337901352326,2.657028799162409,2.091162545842101,246.29092721461637
+73.4,3.0119096497345828,0.3576399742317543,204.756038047164,2.7895917990076837,2.158719739753618,2.6570115055670804,2.0911546130039027,246.65396195283606
+73.5,3.011909509574618,0.3575927719740048,205.00793617269696,2.7892236213972375,2.158705689372004,2.6569942119717522,2.0911466801657044,247.01706382730308
+73.6,3.0119093694141217,0.3575455810528794,205.25976717083702,2.7888555322124597,2.158691638990389,2.6569769183764236,2.091138747327506,247.38023282916296
+73.7,3.011909229253094,0.3574984014375931,205.5115310504148,2.7884875312132262,2.158677588608775,2.656959624781095,2.0911308144893077,247.74346894958526
+73.8,3.011909089091534,0.3574512330974854,205.76322782023647,2.788119618160386,2.1586635382271604,2.6569423311857667,2.0911228816511094,248.10677217976354
+73.9,3.011908948929443,0.35740407600202095,206.01485748908496,2.787751792815764,2.1586494878455462,2.656925037590438,2.0911149488129115,248.4701425109151
+74.0,3.0119088087668198,0.3573569301207881,206.26642006571893,2.7873840549421476,2.1586354374639316,2.6569077439951094,2.091107015974713,248.83357993428112
+74.1,3.011908668603665,0.35730979542349833,206.51791555887357,2.7870164043032872,2.1586213870823174,2.656890450399781,2.091099083136515,249.19708444112644
+74.2,3.011908528439979,0.35726267187998584,206.7693439772606,2.7866488406638896,2.158607336700703,2.656873156804452,2.0910911502983165,249.56065602273944
+74.3,3.01190838827576,0.35721555946020633,207.02070532956796,2.7862813637896093,2.1585932863190886,2.656855863209124,2.091083217460118,249.92429467043203
+74.4,3.0119082481110104,0.35716845813423714,207.27199962446053,2.78591397344705,2.1585792359374745,2.6568385696137953,2.09107528462192,250.28800037553953
+74.5,3.011908107945729,0.3571213678722761,207.52322687057966,2.785546669403754,2.15856518555586,2.6568212760184666,2.0910673517837215,250.65177312942038
+74.6,3.0119079677799157,0.35707428864464086,207.7743870765436,2.7851794514281987,2.1585511351742452,2.656803982423138,2.091059418945523,251.0156129234564
+74.7,3.0119078276135705,0.35702722042176827,208.0254802509475,2.7848123192897924,2.158537084792631,2.6567866888278098,2.091051486107325,251.37951974905255
+74.8,3.0119076874466932,0.35698016317421394,208.2765064023634,2.784445272758869,2.1585230344110165,2.656769395232481,2.0910435532691265,251.74349359763661
+74.9,3.0119075472792844,0.3569331168726517,208.52746553934062,2.7840783116066836,2.1585089840294023,2.6567521016371525,2.091035620430928,252.10753446065945
+75.0,3.0119074071113445,0.3568860814878725,208.77835767040543,2.783711435605406,2.1584949336477877,2.656734808041824,2.09102768759273,252.4716423295946
+75.1,3.011907266942872,0.3568390569907841,209.02918280406152,2.7833446445281163,2.1584808832661735,2.656717514446495,2.0910197547545315,252.8358171959385
+75.2,3.0119071267738677,0.35679204335241027,209.27994094878977,2.7829779381488002,2.1584668328845593,2.656700220851167,2.091011821916333,253.20005905121025
+75.3,3.011906986604332,0.3567450405438908,209.5306321130488,2.782611316242348,2.1584527825029447,2.6566829272558383,2.091003889078135,253.5643678869512
+75.4,3.0119068464342647,0.35669804853647963,209.7812563052744,2.7822447785845412,2.1584387321213305,2.6566656336605097,2.0909959562399365,253.92874369472563
+75.5,3.0119067062636655,0.3566510673015456,210.03181353388024,2.7818783249520562,2.158424681739716,2.6566483400651815,2.090988023401738,254.29318646611978
+75.6,3.0119065660925344,0.35660409681057115,210.2823038072576,2.781511955122455,2.1584106313581017,2.656631046469853,2.0909800905635403,254.6576961927424
+75.7,3.0119064259208717,0.35655713703515146,210.53272713377552,2.7811456688741814,2.158396580976487,2.656613752874524,2.090972157725342,255.0222728662245
+75.8,3.011906285748677,0.35651018794699446,210.78308352178104,2.7807794659865572,2.1583825305948725,2.6565964592791955,2.0909642248871436,255.38691647821898
+75.9,3.0119061455759506,0.3564632495179202,211.03337297959916,2.780413346239778,2.1583684802132583,2.656579165683867,2.0909562920489453,255.7516270204009
+76.0,3.011906005402692,0.3564163217198596,211.28359551553277,2.780047309414905,2.158354429831644,2.6565618720885387,2.090948359210747,256.11640448446724
+76.1,3.0119058652289024,0.3563694045248546,211.53375113786322,2.7796813552938664,2.1583403794500295,2.65654457849321,2.0909404263725486,256.4812488621368
+76.2,3.01190572505458,0.3563224979050571,211.78383985484973,2.7793154836594454,2.1583263290684154,2.6565272848978814,2.0909324935343503,256.8461601451503
+76.3,3.0119055848797265,0.35627560183272877,212.03386167473022,2.7789496942952847,2.1583122786868008,2.656509991302553,2.090924560696152,257.2111383252698
+76.4,3.011905444704341,0.3562287162802401,212.2838166057207,2.778583986985873,2.1582982283051866,2.6564926977072245,2.0909166278579536,257.5761833942794
+76.5,3.011905304528424,0.3561818412200701,212.53370465601583,2.7782183615165468,2.158284177923572,2.656475404111896,2.0909086950197553,257.9412953439842
+76.6,3.0119051643519743,0.3561349766248055,212.7835258337888,2.777852817673483,2.158270127541958,2.656458110516567,2.090900762181557,258.3064741662112
+76.7,3.011905024174993,0.3560881224671405,213.0332801471915,2.777487355243696,2.158256077160343,2.6564408169212386,2.0908928293433586,258.67171985280856
+76.8,3.011904883997481,0.35604127871987606,213.28296760435455,2.7771219740150332,2.1582420267787286,2.65642352332591,2.0908848965051603,259.03703239564544
+76.9,3.011904743819436,0.35599444535591895,213.53258821338733,2.776756673776168,2.1582279763971144,2.6564062297305817,2.090876963666962,259.40241178661273
+77.0,3.01190460364086,0.3559476223482821,213.78214198237825,2.7763914543166006,2.1582139260155,2.656388936135253,2.0908690308287636,259.7678580176218
+77.1,3.0119044634617516,0.35590080967008303,214.03162891939454,2.776026315426648,2.1581998756338856,2.6563716425399244,2.0908610979905653,260.13337108060546
+77.2,3.011904323282111,0.3558540072945441,214.28104903248268,2.775661256897444,2.1581858252522714,2.656354348944596,2.090853165152367,260.4989509675174
+77.3,3.0119041831019393,0.35580721519499164,214.53040232966825,2.7752962785209347,2.158171774870657,2.6563370553492676,2.090845232314169,260.86459767033176
+77.4,3.011904042921235,0.35576043334485513,214.77968881895598,2.7749313800898703,2.1581577244890426,2.656319761753939,2.0908372994759707,261.2303111810441
+77.5,3.0119039027399994,0.35571366171766755,215.02890850833003,2.774566561397807,2.158143674107428,2.6563024681586103,2.0908293666377724,261.59609149167
+77.6,3.011903762558232,0.35566690028706355,215.27806140575385,2.774201822239096,2.158129623725814,2.6562851745632816,2.090821433799574,261.96193859424613
+77.7,3.011903622375933,0.3556201490267803,215.5271475191705,2.7738371624088867,2.1581155733441997,2.6562678809679534,2.0908135009613757,262.32785248082956
+77.8,3.0119034821931012,0.35557340791065595,215.77616685650244,2.7734725817031163,2.158101522962585,2.6562505873726248,2.0908055681231774,262.69383314349756
+77.9,3.011903342009738,0.3555266769126293,216.02511942565187,2.773108079918509,2.158087472580971,2.656233293777296,2.090797635284979,263.0598805743482
+78.0,3.011903201825843,0.35547995600674,216.27400523450063,2.772743656852572,2.1580734221993563,2.656216000181968,2.0907897024467808,263.4259947654994
+78.1,3.011903061641416,0.35543324516712704,216.52282429091042,2.772379312303591,2.1580593718177417,2.6561987065866393,2.0907817696085824,263.7921757090896
+78.2,3.011902921456457,0.3553865443680287,216.7715766027228,2.772015046070624,2.1580453214361275,2.6561814129913106,2.090773836770384,264.15842339727726
+78.3,3.0119027812709662,0.3553398535837823,217.0202621777592,2.771650857953502,2.158031271054513,2.656164119395982,2.0907659039321858,264.5247378222408
+78.4,3.0119026410849434,0.35529317278882316,217.26888102382117,2.771286747752821,2.1580172206728987,2.6561468258006533,2.0907579710939874,264.8911189761789
+78.5,3.011902500898389,0.35524650195768454,217.5174331486903,2.77092271526994,2.158003170291284,2.6561295322053247,2.090750038255789,265.2575668513098
+78.6,3.0119023607113027,0.35519984106499697,217.7659185601283,2.7705587603069763,2.15798911990967,2.6561122386099965,2.0907421054175908,265.62408143987165
+78.7,3.011902220523684,0.3551531900854873,218.01433726587726,2.770194882666801,2.1579750695280557,2.656094945014668,2.090734172579393,265.9906627341228
+78.8,3.011902080335534,0.3551065489939794,218.2626892736595,2.7698310821530394,2.157961019146441,2.6560776514193396,2.0907262397411945,266.35731072634053
+78.9,3.011901940146852,0.3550599177653925,218.51097459117784,2.7694673585700613,2.157946968764827,2.656060357824011,2.090718306902996,266.72402540882223
+79.0,3.0119017999576374,0.3550132963747408,218.75919322611531,2.7691037117229786,2.1579329183832123,2.6560430642286823,2.090710374064798,267.0908067738847
+79.1,3.011901659767892,0.35496668479713434,219.00734518613595,2.768740141417648,2.1579188680015977,2.6560257706333537,2.0907024412265995,267.45765481386405
+79.2,3.0119015195776133,0.3549200830077762,219.25543047888388,2.768376647460655,2.1579048176199835,2.656008477038025,2.090694508388401,267.8245695211162
+79.3,3.0119013793868037,0.35487349098196447,219.50344911198434,2.7680132296593234,2.157890767238369,2.6559911834426964,2.090686575550203,268.1915508880157
+79.4,3.011901239195462,0.35482690869509015,219.75140109304326,2.7676498878217033,2.1578767168567548,2.655973889847368,2.0906786427120045,268.55859890695683
+79.5,3.0119010990035884,0.3547803361226368,219.99928642964713,2.7672866217565675,2.1578626664751406,2.6559565962520395,2.090670709873806,268.9257135703529
+79.6,3.0119009588111822,0.35473377324018107,220.2471051293636,2.7669234312734123,2.157848616093526,2.655939302656711,2.090662777035608,269.29289487063636
+79.7,3.0119008186182445,0.3546872200233913,220.4948571997415,2.766560316182453,2.157834565711912,2.6559220090613826,2.0906548441974095,269.66014280025854
+79.8,3.011900678424775,0.3546406764480274,220.74254264831018,2.766197276294614,2.157820515330297,2.655904715466054,2.090646911359211,270.0274573516898
+79.9,3.0119005382307735,0.35459414248994037,220.99016148258067,2.765834311421535,2.157806464948683,2.6558874218707254,2.090638978521013,270.3948385174194
+80.0,3.0119003980362398,0.35454761812507174,221.23771371004477,2.7654714213755596,2.1577924145670684,2.6558701282753967,2.090631045682815,270.7622862899553
+80.1,3.011900257841174,0.35450110332945317,221.48519933817576,2.765108605969735,2.1577783641854538,2.655852834680068,2.0906231128446167,271.1298006618242
+80.2,3.0119001176455766,0.3544545980792064,221.73261837442837,2.76474586501781,2.1577643138038396,2.6558355410847394,2.0906151800064183,271.4973816255717
+80.3,3.0118999774494477,0.354408102350542,221.97997082623846,2.7643831983342273,2.1577502634222254,2.655818247489411,2.09060724716822,271.86502917376157
+80.4,3.011899837252786,0.35436161611975936,222.22725670102352,2.7640206057341232,2.157736213040611,2.6558009538940826,2.0905993143300217,272.2327432989765
+80.5,3.011899697055593,0.35431513936324677,222.47447600618267,2.763658087033325,2.1577221626589966,2.6557836602987543,2.0905913814918233,272.6005239938174
+80.6,3.011899556857867,0.3542686720574797,222.72162874909634,2.763295642048342,2.157708112277382,2.6557663667034257,2.090583448653625,272.96837125090366
+80.7,3.0118994166596096,0.35422221417902183,222.96871493712712,2.7629332705963705,2.157694061895768,2.655749073108097,2.0905755158154267,273.33628506287295
+80.8,3.0118992764608206,0.35417576570452364,223.21573457761897,2.7625709724952845,2.1576800115141532,2.6557317795127684,2.0905675829772283,273.704265422381
+80.9,3.0118991362614986,0.35412932661072183,223.46268767789775,2.7622087475636308,2.157665961132539,2.6557144859174397,2.09055965013903,274.07231232210233
+81.0,3.0118989960616456,0.3540828968744403,223.7095742452714,2.7618465956206344,2.1576519107509244,2.655697192322111,2.0905517173008317,274.44042575472866
+81.1,3.0118988558612605,0.3540364764725876,223.9563942870295,2.761484516486184,2.1576378603693103,2.655679898726783,2.0905437844626333,274.8086057129705
+81.2,3.011898715660343,0.35399006538215844,224.2031478104439,2.761122509980836,2.157623809987696,2.6556626051314542,2.090535851624435,275.17685218955614
+81.3,3.0118985754588934,0.3539436635802322,224.44983482276845,2.7607605759258114,2.1576097596060815,2.6556453115361256,2.0905279187862367,275.5451651772316
+81.4,3.0118984352569123,0.3538972710439727,224.69645533123918,2.7603987141429873,2.157595709224467,2.6556280179407974,2.090519985948039,275.9135446687609
+81.5,3.0118982950543987,0.35385088775062806,224.9430093430743,2.7600369244548992,2.1575816588428527,2.6556107243454687,2.0905120531098405,276.28199065692576
+81.6,3.011898154851353,0.35380451367753,225.1894968654743,2.7596752066847343,2.157567608461238,2.65559343075014,2.090504120271642,276.6505031345257
+81.7,3.011898014647776,0.35375814880209355,225.43591790562218,2.75931356065633,2.157553558079624,2.6555761371548114,2.090496187433444,277.0190820943779
+81.8,3.0118978744436657,0.35371179310181655,225.68227247068302,2.758951986194169,2.1575395076980093,2.655558843559483,2.0904882545952455,277.387727529317
+81.9,3.0118977342390245,0.3536654465542794,225.92856056780482,2.75859048312338,2.157525457316395,2.655541549964154,2.090480321757047,277.75643943219524
+82.0,3.011897594033851,0.35361910913714467,226.17478220411775,2.7582290512697285,2.157511406934781,2.655524256368826,2.090472388918849,278.1252177958823
+82.1,3.011897453828145,0.3535727808281563,226.42093738673472,2.7578676904596193,2.1574973565531663,2.6555069627734973,2.0904644560806505,278.49406261326527
+82.2,3.0118973136219074,0.3535264616051398,226.66702612275142,2.75750640052009,2.157483306171552,2.655489669178169,2.090456523242452,278.86297387724863
+82.3,3.0118971734151376,0.3534801514460013,226.9130484192461,2.7571451812788106,2.1574692557899375,2.6554723755828404,2.090448590404254,279.2319515807539
+82.4,3.011897033207836,0.35343385032872776,227.15900428327996,2.756784032564077,2.157455205408323,2.655455081987512,2.0904406575660555,279.6009957167201
+82.5,3.011896893000002,0.353387558231386,227.40489372189688,2.756422954204811,2.1574411550267087,2.655437788392183,2.090432724727857,279.9701062781031
+82.6,3.0118967527916363,0.35334127513212255,227.6507167421239,2.756061946030556,2.157427104645094,2.6554204947968545,2.090424791889659,280.3392832578761
+82.7,3.011896612582738,0.35329500100916317,227.89647335097084,2.755701007871473,2.15741305426348,2.655403201201526,2.090416859051461,280.70852664902924
+82.8,3.0118964723733077,0.35324873584081284,228.14216355543059,2.7553401395583403,2.157399003881866,2.6553859076061976,2.0904089262132626,281.0778364445694
+82.9,3.011896332163346,0.35320247960545503,228.38778736247937,2.7549793409225494,2.157384953500251,2.655368614010869,2.0904009933750642,281.4472126375207
+83.0,3.0118961919528515,0.35315623228155113,228.6333447790762,2.754618611796099,2.157370903118637,2.655351320415541,2.090393060536866,281.81665522092385
+83.1,3.011896051741825,0.3531099938476406,228.87883581216371,2.754257952011597,2.1573568527370224,2.655334026820212,2.0903851276986676,282.1861641878363
+83.2,3.011895911530267,0.3530637642823403,229.1242604686676,2.7538973614022546,2.157342802355408,2.6553167332248835,2.0903771948604692,282.55573953133245
+83.3,3.011895771318176,0.3530175435643439,229.36961875549682,2.7535368398018827,2.1573287519737936,2.655299439629555,2.090369262022271,282.92538124450317
+83.4,3.0118956311055536,0.3529713316724221,229.61491067954407,2.753176387044893,2.157314701592179,2.655282146034226,2.0903613291840726,283.295089320456
+83.5,3.0118954908923987,0.3529251285854218,229.8601362476852,2.75281600296629,2.157300651210565,2.6552648524388975,2.0903533963458742,283.66486375231483
+83.6,3.0118953506787123,0.3528789342822657,230.10529546677984,2.752455687401673,2.15728660082895,2.655247558843569,2.090345463507676,284.0347045332202
+83.7,3.011895210464493,0.35283274874195214,230.3503883436709,2.752095440187227,2.157272550447336,2.6552302652482407,2.0903375306694776,284.40461165632917
+83.8,3.011895070249742,0.352786571943555,230.5954148851853,2.7517352611597294,2.157258500065722,2.655212971652912,2.0903295978312793,284.77458511481467
+83.9,3.011894930034459,0.35274040386622263,230.84037509813345,2.751375150156537,2.1572444496841072,2.655195678057584,2.090321664993081,285.1446249018666
+84.0,3.0118947898186437,0.35269424448917813,231.08526898930955,2.75101510701559,2.157230399302493,2.655178384462255,2.0903137321548826,285.51473101069047
+84.1,3.0118946496022962,0.3526480937917186,231.33009656549157,2.7506551315754053,2.1572163489208784,2.6551610908669265,2.0903057993166847,285.88490343450843
+84.2,3.0118945093854164,0.35260195175321496,231.57485783344148,2.750295223675077,2.1572022985392643,2.655143797271598,2.0902978664784864,286.2551421665585
+84.3,3.011894369168005,0.35255581835311195,231.8195527999052,2.749935383154273,2.1571882481576496,2.6551265036762692,2.090289933640288,286.6254472000948
+84.4,3.011894228950061,0.3525096935709267,232.0641814716125,2.7495756098532285,2.157174197776035,2.6551092100809406,2.0902820008020897,286.9958185283876
+84.5,3.0118940887315846,0.3524635773862498,232.30874385527724,2.7492159036127486,2.1571601473944213,2.6550919164856124,2.0902740679638914,287.3662561447228
+84.6,3.0118939485125766,0.35241746977874405,232.55323995759764,2.748856264274204,2.1571460970128067,2.6550746228902837,2.090266135125693,287.73676004240235
+84.7,3.0118938082930367,0.3523713707281442,232.79766978525575,2.7484966916795246,2.157132046631192,2.6550573292949555,2.0902582022874947,288.1073302147443
+84.8,3.011893668072964,0.35232528021425663,233.0420333449179,2.748137185671202,2.157117996249578,2.655040035699627,2.0902502694492964,288.4779666550821
+84.9,3.0118935278523598,0.35227919821695935,233.28633064323486,2.747777746092283,2.1571039458679633,2.6550227421042982,2.090242336611098,288.8486693567652
+85.0,3.0118933876312233,0.3522331247162015,233.5305616868416,2.7474183727863717,2.157089895486349,2.6550054485089696,2.0902344037728997,289.21943831315843
+85.1,3.011893247409554,0.3521870596920026,233.77472648235747,2.7470590655976204,2.1570758451047345,2.654988154913641,2.0902264709347014,289.5902735176425
+85.2,3.011893107187353,0.35214100312445296,234.01882503638646,2.746699824370733,2.1570617947231203,2.6549708613183123,2.090218538096503,289.9611749636136
+85.3,3.0118929669646195,0.3520949549937126,234.2628573555168,2.7463406489509588,2.1570477443415057,2.6549535677229836,2.0902106052583047,290.3321426444832
+85.4,3.011892826741354,0.3520489152800116,234.50682344632136,2.7459815391840907,2.1570336939598915,2.6549362741276554,2.0902026724201064,290.7031765536787
+85.5,3.0118926865175566,0.35200288396364926,234.7507233153577,2.7456224949164643,2.1570196435782774,2.654918980532327,2.090194739581908,291.0742766846423
+85.6,3.0118925462932267,0.3519568610249939,234.99455696916792,2.7452635159949526,2.1570055931966627,2.6549016869369986,2.0901868067437097,291.44544303083205
+85.7,3.011892406068365,0.35191084644448273,235.23832441427896,2.7449046022669656,2.156991542815048,2.65488439334167,2.0901788739055114,291.8166755857211
+85.8,3.0118922658429703,0.3518648402026214,235.48202565720234,2.744545753580447,2.156977492433434,2.6548670997463413,2.0901709410673135,292.18797434279765
+85.9,3.011892125617044,0.35181884227998367,235.7256607044347,2.7441869697838728,2.1569634420518193,2.6548498061510126,2.090163008229115,292.5593392955654
+86.0,3.0118919853905854,0.3517728526572111,235.9692295624572,2.7438282507262466,2.156949391670205,2.654832512555684,2.090155075390917,292.93077043754283
+86.1,3.0118918451635945,0.35172687131501257,236.21273223773613,2.743469596257098,2.1569353412885905,2.6548152189603553,2.0901471425527185,293.30226776226385
+86.2,3.0118917049360716,0.35168089823416454,236.4561687367229,2.7431110062264836,2.1569212909069764,2.654797925365027,2.09013920971452,293.6738312632772
+86.3,3.0118915647080162,0.35163493339550994,236.69953906585354,2.7427524804849774,2.156907240525362,2.6547806317696985,2.090131276876322,294.0454609341465
+86.4,3.0118914244794293,0.35158897677995843,236.94284323154963,2.742394018883676,2.1568931901437476,2.6547633381743703,2.0901233440381235,294.41715676845047
+86.5,3.0118912842503094,0.35154302836848594,237.18608124021748,2.7420356212741903,2.1568791397621334,2.6547460445790416,2.090115411199925,294.7889187597826
+86.6,3.0118911440206575,0.3514970881421341,237.42925309824875,2.7416772875086464,2.156865089380519,2.654728750983713,2.090107478361727,295.1607469017512
+86.7,3.011891003790473,0.3514511560820106,237.67235881202055,2.7413190174396833,2.156851038998904,2.6547114573883843,2.0900995455235285,295.5326411879795
+86.8,3.0118908635597568,0.3514052321692882,237.91539838789492,2.7409608109204484,2.15683698861729,2.6546941637930557,2.09009161268533,295.9046016121051
+86.9,3.0118907233285084,0.3513593163852047,238.1583718322195,2.740602667804597,2.1568229382356754,2.654676870197727,2.090083679847132,296.2766281677806
+87.0,3.0118905830967275,0.3513134087110627,238.40127915132715,2.740244587946289,2.156808887854061,2.6546595766023984,2.0900757470089335,296.6487208486729
+87.1,3.0118904428644147,0.35126750912822907,238.64412035153626,2.739886571200187,2.156794837472447,2.65464228300707,2.090067814170735,297.02087964846373
+87.2,3.011890302631569,0.35122161761813503,238.88689543915075,2.7395286174214535,2.1567807870908324,2.654624989411742,2.090059881332537,297.3931045608493
+87.3,3.0118901623981915,0.35117573416227565,239.12960442046,2.7391707264657503,2.1567667367092183,2.6546076958164133,2.0900519484943385,297.76539557954004
+87.4,3.0118900221642813,0.3511298587422093,239.37224730173898,2.738812898189233,2.1567526863276036,2.6545904022210847,2.09004401565614,298.13775269826107
+87.5,3.0118898819298394,0.3510839913395581,239.6148240892484,2.738455132448553,2.1567386359459895,2.654573108625756,2.0900360828179423,298.5101759107516
+87.6,3.0118897416948647,0.35103813193600636,239.85733478923441,2.7380974291008497,2.156724585564375,2.6545558150304274,2.090028149979744,298.8826652107656
+87.7,3.0118896014593584,0.35099228051330195,240.09977940792936,2.7377397880037555,2.1567105351827607,2.6545385214350987,2.0900202171415456,299.25522059207066
+87.8,3.011889461223319,0.3509464370532547,240.34215795155092,2.7373822090153865,2.156696484801146,2.65452122783977,2.0900122843033473,299.6278420484491
+87.9,3.0118893209867483,0.35090060153773633,240.58447042630286,2.737024691994344,2.156682434419532,2.654503934244442,2.090004351465149,300.00052957369724
+88.0,3.0118891807496446,0.35085477394868103,240.82671683837467,2.736667236799712,2.1566683840379173,2.654486640649113,2.0899964186269506,300.37328316162535
+88.1,3.011889040512009,0.35080895426808384,241.06889719394186,2.736309843291054,2.156654333656303,2.654469347053785,2.0899884857887523,300.74610280605816
+88.2,3.0118889002738407,0.35076314247800155,241.311011499166,2.7359525113284127,2.1566402832746885,2.6544520534584564,2.089980552950554,301.11898850083406
+88.3,3.01188876003514,0.350717338560552,241.55305976019457,2.7355952407723056,2.1566262328930743,2.6544347598631277,2.0899726201123556,301.49194023980544
+88.4,3.011888619795908,0.3506715424979134,241.79504198316124,2.7352380314837244,2.1566121825114597,2.654417466267799,2.0899646872741573,301.86495801683884
+88.5,3.011888479556143,0.35062575427232445,242.03695817418557,2.7348808833241307,2.1565981321298455,2.6544001726724704,2.089956754435959,302.2380418258145
+88.6,3.011888339315845,0.3505799738660842,242.27880833937346,2.734523796155457,2.156584081748231,2.6543828790771418,2.0899488215977606,302.6111916606265
+88.7,3.011888199075016,0.35053420126155177,242.5205924848172,2.7341667698401038,2.1565700313666167,2.654365585481813,2.0899408887595623,302.98440751518285
+88.8,3.011888058833654,0.3504884364411454,242.76231061659496,2.7338098042409342,2.1565559809850026,2.654348291886485,2.089932955921364,303.35768938340505
+88.9,3.0118879185917597,0.3504426793873432,243.00396274077156,2.733452899221277,2.156541930603388,2.6543309982911567,2.0899250230831656,303.7310372592285
+89.0,3.011887778349333,0.350396930082682,243.24554886339786,2.73309605464492,2.1565278802217733,2.654313704695828,2.0899170902449673,304.10445113660217
+89.1,3.011887638106374,0.3503511885097577,243.48706899051143,2.7327392703761104,2.156513829840159,2.6542964111004994,2.089909157406769,304.4779310094886
+89.2,3.011887497862883,0.3503054546512247,243.7285231281361,2.7323825462795526,2.1564997794585445,2.6542791175051708,2.089901224568571,304.85147687186395
+89.3,3.011887357618859,0.3502597284897956,243.9699112822822,2.7320258822204053,2.1564857290769304,2.654261823909842,2.0898932917303727,305.2250887177178
+89.4,3.011887217374303,0.35021401000824115,244.21123345894674,2.731669278064281,2.1564716786953158,2.6542445303145135,2.0898853588921744,305.59876654105335
+89.5,3.0118870771292148,0.3501682991893899,244.45248966411313,2.7313127336772416,2.1564576283137016,2.654227236719185,2.089877426053976,305.9725103358869
+89.6,3.0118869368835943,0.35012259601612794,244.6936799037515,2.730956248925798,2.1564435779320874,2.6542099431238566,2.0898694932157778,306.3463200962485
+89.7,3.0118867966374414,0.35007690047139867,244.93480418381878,2.7305998236769096,2.156429527550473,2.6541926495285284,2.0898615603775794,306.7201958161813
+89.8,3.0118866563907565,0.35003121253820213,245.17586251025833,2.730243457797977,2.1564154771688586,2.6541753559331998,2.089853627539381,307.0941374897417
+89.9,3.0118865161435386,0.3499855321995956,245.41685488900046,2.729887151156846,2.156401426787244,2.654158062337871,2.0898456947011828,307.4681451109996
+90.0,3.011886375895789,0.3499398594386927,245.65778132596228,2.729530903621803,2.15638737640563,2.6541407687425425,2.0898377618629844,307.8422186740377
+90.1,3.0118862356475065,0.34989419423866314,245.89864182704767,2.7291747150615726,2.156373326024015,2.654123475147214,2.089829829024786,308.2163581729523
+90.2,3.0118860953986912,0.34984853658273285,246.13943639814758,2.7288185853453166,2.1563592756424006,2.654106181551885,2.0898218961865878,308.59056360185247
+90.3,3.0118859551493444,0.3498028864541835,246.38016504513962,2.7284625143426315,2.1563452252607864,2.6540888879565565,2.0898139633483894,308.9648349548604
+90.4,3.0118858148994647,0.34975724383635215,246.62082777388866,2.728106501923547,2.156331174879172,2.6540715943612283,2.089806030510191,309.3391722261114
+90.5,3.0118856746490525,0.34971160871263124,246.8614245902464,2.727750547958524,2.1563171244975576,2.6540543007658997,2.0897980976719928,309.7135754097536
+90.6,3.0118855343981084,0.3496659810664682,247.10195550005173,2.727394652318452,2.1563030741159435,2.6540370071705714,2.0897901648337944,310.08804449994824
+90.7,3.0118853941466317,0.3496203608813651,247.3424205091306,2.727038814874648,2.156289023734329,2.654019713575243,2.089782231995596,310.4625794908695
+90.8,3.011885253894622,0.3495747481408788,247.58281962329602,2.726683035498855,2.1562749733527147,2.654002419979914,2.0897742991573978,310.837180376704
+90.9,3.011885113642081,0.34952914282862035,247.82315284834849,2.7263273140632394,2.1562609229711,2.6539851263845855,2.0897663663192,311.21184715165157
+91.0,3.011884973389007,0.34948354492825484,248.06342019007533,2.725971650440388,2.156246872589486,2.653967832789257,2.0897584334810015,311.58657980992473
+91.1,3.011884833135401,0.3494379544235012,248.3036216542515,2.7256160445033095,2.1562328222078713,2.653950539193928,2.089750500642803,311.9613783457485
+91.2,3.011884692881262,0.3493923712981317,248.543757246639,2.7252604961254274,2.1562187718262567,2.6539332455985996,2.089742567804605,312.33624275336103
+91.3,3.011884552626591,0.34934679553597253,248.78382697298747,2.724905005180586,2.156204721444643,2.6539159520032714,2.0897346349664065,312.71117302701253
+91.4,3.011884412371387,0.3493012271209024,249.02383083903376,2.724549571543039,2.1561906710630283,2.653898658407943,2.089726702128208,313.08616916096634
+91.5,3.011884272115651,0.34925566603685326,249.2637688505022,2.7241941950874557,2.1561766206814137,2.6538813648126145,2.08971876929001,313.46123114949785
+91.6,3.011884131859383,0.34921011226780985,249.50364101310475,2.7238388756889167,2.1561625702997995,2.653864071217286,2.0897108364518115,313.8363589868952
+91.7,3.011883991602582,0.3491645657978085,249.74344733254057,2.723483613222907,2.156148519918185,2.653846777621957,2.089702903613613,314.21155266745944
+91.8,3.011883851345249,0.3491190266109391,249.9831878144968,2.7231284075653246,2.1561344695365707,2.6538294840266285,2.089694970775415,314.5868121855032
+91.9,3.011883711087383,0.3490734946913421,250.22286246464787,2.7227732585924684,2.156120419154956,2.6538121904313,2.0896870379372166,314.9621375353522
+92.0,3.011883570828985,0.3490279700232106,250.462471288656,2.7224181661810434,2.156106368773342,2.6537948968359713,2.089679105099018,315.337528711344
+92.1,3.0118834305700544,0.3489824525907891,250.70201429217107,2.7220631302081553,2.1560923183917273,2.653777603240643,2.08967117226082,315.7129857078289
+92.2,3.0118832903105908,0.3489369423783729,250.94149148083068,2.7217081505513088,2.156078268010113,2.653760309645315,2.0896632394226216,316.08850851916935
+92.3,3.0118831500505956,0.34889143937030903,251.18090286026032,2.721353227088411,2.156064217628499,2.653743016049986,2.0896553065844232,316.4640971397397
+92.4,3.0118830097900675,0.348845943550995,251.42024843607314,2.720998359697761,2.1560501672468844,2.6537257224546575,2.089647373746225,316.83975156392694
+92.5,3.011882869529007,0.3488004549048788,251.6595282138701,2.720643548258055,2.1560361168652697,2.653708428859329,2.0896394409080266,317.21547178612997
+92.6,3.011882729267414,0.3487549734164593,251.89874219924022,2.7202887926483825,2.1560220664836556,2.6536911352640002,2.0896315080698287,317.5912578007598
+92.7,3.0118825890052885,0.3487094990702851,252.13789039776037,2.719934092748224,2.156008016102041,2.6536738416686716,2.0896235752316303,317.96710960223965
+92.8,3.0118824487426306,0.3486640318509552,252.37697281499538,2.7195794484374503,2.155993965720427,2.653656548073343,2.089615642393432,318.34302718500464
+92.9,3.0118823084794406,0.3486185717431179,252.61598945649814,2.71922485959632,2.155979915338812,2.6536392544780143,2.0896077095552337,318.71901054350195
+93.0,3.0118821682157177,0.3485731187314715,252.85494032780943,2.7188703261054776,2.155965864957198,2.653621960882686,2.0895997767170353,319.0950596721906
+93.1,3.011882027951462,0.3485276728007632,253.0938254344582,2.718515847845953,2.155951814575584,2.653604667287358,2.089591843878837,319.4711745655418
+93.2,3.011881887686674,0.34848223393578975,253.33264478196173,2.71816142469916,2.155937764193969,2.6535873736920292,2.0895839110406387,319.84735521803833
+93.3,3.011881747421354,0.3484368021213965,253.5713983758251,2.717807056546893,2.155923713812355,2.6535700800967006,2.0895759782024403,320.2236016241749
+93.4,3.011881607155501,0.3483913773424776,253.81008622154184,2.7174527432713256,2.1559096634307404,2.653552786501372,2.089568045364242,320.59991377845824
+93.5,3.0118814668891156,0.3483459595839758,254.0487083245936,2.7170984847550117,2.155895613049126,2.6535354929060433,2.0895601125260437,320.97629167540646
+93.6,3.0118813266221975,0.34830054883088196,254.28726469045031,2.7167442808808797,2.1558815626675116,2.6535181993107146,2.0895521796878453,321.3527353095497
+93.7,3.0118811863547474,0.3482551450682352,254.52575532457038,2.7163901315322345,2.155867512285897,2.653500905715386,2.089544246849647,321.72924467542964
+93.8,3.0118810460867644,0.3482097482811223,254.7641802324003,2.7160360365927536,2.155853461904283,2.653483612120058,2.0895363140114487,322.1058197675997
+93.9,3.011880905818249,0.34816435845467775,255.0025394193751,2.7156819959464866,2.1558394115226687,2.6534663185247296,2.0895283811732503,322.48246058062495
+94.0,3.0118807655492006,0.3481189755740837,255.24083289091823,2.7153280094778536,2.155825361141054,2.653449024929401,2.089520448335052,322.8591671090818
+94.1,3.0118806252796206,0.34807359962456963,255.47906065244163,2.7149740770716435,2.15581131075944,2.6534317313340723,2.0895125154968537,323.23593934755837
+94.2,3.011880485009508,0.3480282305914117,255.7172227093457,2.7146201986130114,2.1557972603778253,2.6534144377387436,2.0895045826586554,323.6127772906544
+94.3,3.011880344738862,0.34798286845993315,255.95531906701922,2.7142663739874786,2.155783209996211,2.653397144143415,2.0894966498204575,323.9896809329808
+94.4,3.0118802044676842,0.3479375132155038,256.1933497308398,2.71391260308093,2.1557691596145965,2.6533798505480863,2.089488716982259,324.36665026916023
+94.5,3.011880064195973,0.34789216484354024,256.4313147061735,2.713558885779614,2.155755109232982,2.6533625569527577,2.089480784144061,324.7436852938265
+94.6,3.01187992392373,0.34784682332950495,256.6692139983751,2.7132052219701386,2.1557410588513677,2.6533452633574295,2.0894728513058625,325.1207860016249
+94.7,3.0118797836509543,0.34780148865890664,256.907047612788,2.712851611539472,2.1557270084697535,2.653327969762101,2.089464918467664,325.497952387212
+94.8,3.011879643377646,0.3477561608173,257.1448155547443,2.71249805437494,2.155712958088139,2.6533106761667726,2.089456985629466,325.8751844452557
+94.9,3.011879503103805,0.3477108397902853,257.38251782956496,2.712144550364225,2.1556989077065247,2.653293382571444,2.0894490527912675,326.2524821704351
+95.0,3.011879362829432,0.34766552556350827,257.6201544425596,2.7117910993953647,2.15568485732491,2.6532760889761153,2.089441119953069,326.6298455574404
+95.1,3.0118792225545254,0.3476202181226601,257.8577253990268,2.7114377013567488,2.155670806943296,2.6532587953807867,2.089433187114871,327.00727460097323
+95.2,3.011879082279087,0.34757491745347696,258.0952307042539,2.7110843561371203,2.1556567565616813,2.653241501785458,2.0894252542766725,327.3847692957462
+95.3,3.011878942003116,0.34752962354173994,258.33267036351697,2.7107310636255715,2.155642706180067,2.6532242081901294,2.089417321438474,327.76232963648306
+95.4,3.0118788017266116,0.3474843363732748,258.5700443820813,2.7103778237115437,2.1556286557984525,2.6532069145948007,2.089409388600276,328.13995561791876
+95.5,3.011878661449576,0.34743905593395225,258.8073527652011,2.7100246362848277,2.155614605416838,2.6531896209994725,2.0894014557620775,328.51764723479897
+95.6,3.0118785211720067,0.3473937822096869,259.04459551811937,2.709671501235558,2.155600555035224,2.6531723274041443,2.089393522923879,328.89540448188063
+95.7,3.011878380893905,0.34734851518643767,259.2817726460683,2.709318418454214,2.1555865046536096,2.6531550338088157,2.089385590085681,329.27322735393176
+95.8,3.011878240615271,0.34730325485020763,259.5188841542692,2.7089653878316198,2.155572454271995,2.653137740213487,2.0893776572474825,329.6511158457308
+95.9,3.0118781003361046,0.34725800118704353,259.75593004793234,2.7086124092589396,2.155558403890381,2.6531204466181584,2.089369724409284,330.02906995206774
+96.0,3.011877960056405,0.3472127541830356,259.99291033225705,2.708259482627678,2.155544353508766,2.6531031530228297,2.0893617915710863,330.407089667743
+96.1,3.0118778197761733,0.3471675138243179,260.2298250124322,2.7079066078296794,2.155530303127152,2.653085859427501,2.089353858732888,330.7851749875678
+96.2,3.0118776794954085,0.34712228009706725,260.4666740936354,2.7075537847571245,2.1555162527455374,2.6530685658321724,2.0893459258946896,331.16332590636466
+96.3,3.0118775392141113,0.347077052987504,260.7034575810338,2.7072010133025315,2.155502202363923,2.6530512722368442,2.0893379930564913,331.54154241896623
+96.4,3.0118773989322816,0.3470318324818913,260.94017547978376,2.7068482933587523,2.155488151982309,2.653033978641516,2.089330060218293,331.9198245202163
+96.5,3.0118772586499194,0.346986618566535,261.1768277950309,2.706495624818973,2.1554741016006944,2.6530166850461874,2.0893221273800946,332.29817220496915
+96.6,3.011877118367024,0.3469414112277831,261.41341453191,2.7061430075767086,2.1554600512190802,2.6529993914508587,2.0893141945418963,332.67658546808997
+96.7,3.0118769780835963,0.34689621045202684,261.64993569554576,2.705790441525809,2.1554460008374656,2.65298209785553,2.089306261703698,333.0550643044543
+96.8,3.011876837799636,0.34685101622569875,261.8863912910516,2.7054379265604505,2.155431950455851,2.6529648042602014,2.0892983288654996,333.43360870894844
+96.9,3.011876697515143,0.34680582853527403,262.1227813235309,2.7050854625751377,2.155417900074237,2.6529475106648728,2.0892903960273013,333.81221867646923
+97.0,3.0118765572301176,0.34676064736726947,262.3591057980761,2.704733049464702,2.155403849692622,2.652930217069544,2.089282463189103,334.1908942019239
+97.1,3.011876416944559,0.34671547270824343,262.5953647197694,2.704380687124299,2.155389799311008,2.652912923474216,2.0892745303509046,334.5696352802306
+97.2,3.0118762766584686,0.34667030454479614,262.8315580936827,2.7040283754494103,2.1553757489293934,2.6528956298788873,2.0892665975127063,334.9484419063174
+97.3,3.0118761363718445,0.34662514286356866,263.0676859248768,2.7036761143358357,2.1553616985477793,2.652878336283559,2.089258664674508,335.32731407512324
+97.4,3.011875996084688,0.3465799876512436,263.30374821840286,2.7033239036797005,2.155347648166165,2.6528610426882304,2.0892507318363096,335.70625178159725
+97.5,3.0118758557969993,0.34653483889454473,263.5397449793013,2.702971743377449,2.1553335977845505,2.6528437490929018,2.0892427989981113,336.08525502069875
+97.6,3.011875715508778,0.34648969658023604,263.7756762126021,2.702619633325841,2.1553195474029363,2.652826455497573,2.089234866159913,336.4643237873979
+97.7,3.0118755752200235,0.3464445606951225,264.0115419233251,2.702267573421956,2.1553054970213217,2.6528091619022445,2.089226933321715,336.84345807667495
+97.8,3.0118754349307366,0.34639943122605,264.24734211647996,2.70191556356319,2.155291446639707,2.652791868306916,2.0892190004835167,337.22265788352007
+97.9,3.011875294640917,0.3463543081599039,264.4830767970659,2.701563603647251,2.155277396258093,2.652774574711587,2.0892110676453184,337.6019232029342
+98.0,3.0118751543505646,0.3463091914836105,264.7187459700719,2.701211693572162,2.1552633458764783,2.652757281116259,2.08920313480712,337.98125402992815
+98.1,3.0118750140596795,0.34626408118413576,264.954349640477,2.700859833236259,2.155249295494864,2.6527399875209308,2.0891952019689217,338.360650359523
+98.2,3.0118748737682615,0.34621897724848527,265.1898878132498,2.7005080225381852,2.15523524511325,2.652722693925602,2.0891872691307234,338.74011218675025
+98.3,3.0118747334763114,0.34617387966370483,265.42536049334905,2.7001562613768977,2.1552211947316353,2.6527054003302735,2.089179336292525,339.11963950665097
+98.4,3.011874593183828,0.3461287884168792,265.6607676857232,2.6998045496516583,2.155207144350021,2.652688106734945,2.0891714034543267,339.49923231427687
+98.5,3.011874452890812,0.34608370349513307,265.89610939531076,2.699452887262038,2.1551930939684065,2.652670813139616,2.0891634706161284,339.8788906046893
+98.6,3.0118743125972633,0.34603862488562975,266.1313856270401,2.699101274107912,2.1551790435867924,2.6526535195442875,2.08915553777793,340.25861437295987
+98.7,3.011874172303182,0.3459935525755719,266.36659638582984,2.6987497100894613,2.1551649932051777,2.652636225948959,2.0891476049397317,340.6384036141702
+98.8,3.0118740320085684,0.3459484865522012,266.6017416765883,2.698398195107169,2.155150942823563,2.6526189323536307,2.0891396721015334,341.0182583234117
+98.9,3.011873891713422,0.3459034268027977,266.8368215042142,2.6980467290618217,2.155136892441949,2.652601638758302,2.089131739263335,341.3981784957859
+99.0,3.0118737514177423,0.34585837331468,267.0718358735959,2.697695311854504,2.1551228420603348,2.652584345162974,2.0891238064251367,341.77816412640414
+99.1,3.01187361112153,0.3458133260752055,267.3067847896123,2.6973439433866027,2.15510879167872,2.652567051567645,2.0891158735869384,342.1582152103877
+99.2,3.011873470824785,0.3457682850717696,267.54166825713247,2.696992623559803,2.155094741297106,2.6525497579723165,2.08910794074874,342.53833174286757
+99.3,3.0118733305275076,0.3457232502918059,267.77648628101537,2.696641352276086,2.1550806909154914,2.652532464376988,2.0891000079105417,342.9185137189847
+99.4,3.011873190229697,0.3456782217227858,268.0112388661103,2.6962901294377293,2.155066640533877,2.652515170781659,2.089092075072344,343.29876113388974
+99.5,3.0118730499313537,0.3456331993522185,268.24592601725675,2.6959389549473043,2.1550525901522626,2.6524978771863306,2.0890841422341455,343.67907398274326
+99.6,3.011872909632478,0.345588183167651,268.48054773928476,2.695587828707678,2.1550385397706484,2.652480583591002,2.089076209395947,344.05945226071526
+99.7,3.0118727693330696,0.3455431731566678,268.7151040370143,2.6952367506220094,2.155024489389034,2.6524632899956737,2.089068276557749,344.4398959629857
+99.8,3.0118726290331277,0.3454981693068905,268.94959491525583,2.6948857205937458,2.1550104390074196,2.6524459964003455,2.0890603437195505,344.8204050847442
+99.9,3.011872488732654,0.345453171605978,269.1840203788102,2.6945347385266287,2.1549963886258054,2.652428702805017,2.089052410881352,345.20097962118984
diff --git a/Documents/Padulles-II/Padulles2_Test.html b/Documents/Padulles-II/Padulles2_Test.html
new file mode 100644
index 00000000..9d268663
--- /dev/null
+++ b/Documents/Padulles-II/Padulles2_Test.html
@@ -0,0 +1,687 @@
+
+
+Padulles2_Test
+
+
+
+
OPEM Report (Padulles-II Model)
+
What is Padulles-II ?
+
+In this model, Nernst and fuel cell potential were modeled as a function of water, oxygen and hydrogen gases partial
+pressure that can be calculated from independent variables or constants. The partial pressure of gases is proportional
+to the molar flow of each gas.
+
+
Inputs
+
+
+
+Input
+
+Description
+
+Value
+
+
+
+
+B
+
+
+Activation voltage constant [V]
+
+
+0.04777
+
+
+
+C
+
+
+Activation constant parameter [A^(-1)]
+
+
+0.0136
+
+
+
+E0
+
+
+No load voltage [V]
+
+
+0.6
+
+
+
+KH2
+
+
+Hydrogen valve constant [kmol.s^(-1).atm^(-1)]
+
+
+4.22e-05
+
+
+
+KH2O
+
+
+Water Valve Constant [kmol.s^(-1).atm^(-1)]
+
+
+7.716e-06
+
+
+
+KO2
+
+
+Oxygen valve constant [kmol.s^(-1).atm^(-1)]
+
+
+2.11e-05
+
+
+
+N0
+
+
+Number of cells
+
+
+5
+
+
+
+Rint
+
+
+Fuel cell internal resistance [ohm]
+
+
+0.00303
+
+
+
+T
+
+
+Fuel cell temperature [K]
+
+
+343
+
+
+
+i-start
+
+
+Cell operating current start point [A]
+
+
+0.1
+
+
+
+i-step
+
+
+Cell operating current step
+
+
+0.1
+
+
+
+i-stop
+
+
+Cell operating current end point [A]
+
+
+100
+
+
+
+qH2
+
+
+Molar flow of hydrogen [kmol.s^(-1)]
+
+
+0.0004
+
+
+
+rho
+
+
+Hydrogen-Oxygen flow rate
+
+
+1.168
+
+
+
+tH2
+
+
+Hydrogen time constant [s]
+
+
+3.37
+
+
+
+tH2O
+
+
+Water time constant [s]
+
+
+18.418
+
+
+
+tO2
+
+
+Oxygen time constant [s]
+
+
+6.74
+
+
+
Overall Parameters
+
+
+
+Parameter
+
+Description
+
+Value
+
+
+
+
+Efficiency|Pmax
+
+
+Cell efficiency at maximum power
+
+
+0.345453171605978
+
+
+
+Pmax
+
+
+Maximum power [W]
+
+
+269.1840203788102
+
+
+
+Ptotal(Elec)
+
+
+Total electrical power [W]
+
+
+288.7454858282187
+
+
+
+Ptotal(Thermal)
+
+
+Total thermal power [W]
+
+
+325.0245141717815
+
+
+
+VFC|Pmax
+
+
+Cell voltage at maximum power [V]
+
+
+2.6945347385266287
+
+
+
Graphs
+
+
+
+
+
+
+
+
+
+
+
+
+
+Parameter
+
+Description
+
+Value
+
+
+
+
+K
+
+
+Slope of the curve obtained by linear approximation [A^(-1)]
+
+
+-0.004456243154863302
+
+
+
+Pmax(L-Approx)
+
+
+Maximum power obtained by linear approximation [W]
+
+
+544.7719451780384
+
+
+
+V0
+
+
+Intercept of the curve obtained by linear approximation [V]
+
+
+3.1161747394273
+
+
+
+VFC|Pmax(L-Approx)
+
+
+Cell voltage at maximum power obtained by linear approximation [V]
+
\n",
@@ -1576,7 +11181,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
- "* $$q_{H_2}=q_{H_2O}$$"
+ "* Notice : $$q_{H_2}=q_{H_2O}$$"
]
},
{
diff --git a/INSTALL.md b/INSTALL.md
index edb61463..fa8c0803 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -2,7 +2,7 @@
### Source Code
- Download [Python3.x](https://www.python.org/downloads/) (>=3.4)
-- Download [Version 0.9](https://github.com/ecsim/opem/archive/v0.9.zip) or [Latest Source ](https://github.com/ecsim/opem/archive/master.zip)
+- Download [Version 1.0](https://github.com/ecsim/opem/archive/v1.0.zip) or [Latest Source ](https://github.com/ecsim/opem/archive/master.zip)
- Run `pip install -r requirements.txt` or `pip3 install -r requirements.txt` (Need root access)
- Run `python3 setup.py install` or `python setup.py install` (Need root access)
@@ -16,27 +16,34 @@
- Run `easy_install --upgrade opem` (Need root access)
+### Conda
+
+- Check [Conda Managing Package](https://conda.io/docs/user-guide/tasks/manage-pkgs.html#installing-packages-from-anaconda-org)
+- `conda install -c ecsim opem` (Need root access)
### Exe Version (Only Windows)
-- Download [Exe-Version 0.9](https://www.dropbox.com/s/if22p5mofl7s2oh/OPEM%28v0.9%29.zip?dl=00)
-- Extract Zip File
+- Download [Exe-Version 1.0](https://github.com/ECSIM/opem/releases/download/v1.0/OPEM-1.0.exe)
- Run `OPEM.exe`
### DMG Version (MacOS)
-- Download [DMG-Version 0.9](https://www.dropbox.com/s/86f25jvciq2g7qf/OPEM%28v0.9%29.dmg?dl=0)
-- Open DMG File
+- Download [DMG-Version 1.0](https://github.com/ECSIM/opem/releases/download/v1.0/OPEM-1.0.dmg)
+- Open DMG file
- Copy `OPEM` into your system
- Run `OPEM`
-### Telegram Bot
-- Message [OPEM BOT](https://t.me/opembot)
+### Exe Version Note
+For OPEM <= 0.5 targeting Windows < 10, the user needs to take special care to include the Visual C++ run-time .dlls: Python 3.5 uses Visual Studio 2015 run-time, which has been renamed into “Universal CRT“ and has become part of Windows 10. For Windows Vista through Windows 8.1 there are Windows update packages, which may or may not be installed in the target-system. So you have the following options:
+
+1. Download OPEM >= 0.6 (Recommended)
+2. Download and install [Visual C++ Redistributable for Visual Studio 2015](https://www.microsoft.com/en-us/download/details.aspx?id=48145)
+### System Requirements
+OPEM will likely run on a modern dual core PC. Typical configuration is:
-### Exe Version Note
-For OPEM <= 0.5 targeting Windows < 10, the user needs to take special care to include the Visual C++ run-time .dlls: Python 3.5 uses Visual Studio 2015 run-time, which has been renamed into “Universal CRT“ and has become part of Windows 10. For Windows Vista through Windows 8.1 there are Windows Update packages, which may or may not be installed in the target-system. So you have the following options:
+- Dual Core CPU (2.0 Ghz+)
+- 2GB of RAM
-1. Download OPEM >= 0.6 (Recommended)
-2. Download and install [Visual C++ Redistributable for Visual Studio 2015](https://www.microsoft.com/en-us/download/details.aspx?id=48145)
\ No newline at end of file
+Note that it may run on lower end equipment though good performance is not guaranteed.
\ No newline at end of file
diff --git a/README.md b/README.md
index f0c7bd3b..e76a770d 100644
--- a/README.md
+++ b/README.md
@@ -2,15 +2,12 @@
-
-
-
+
-
@@ -21,8 +18,12 @@
* [Overview](https://github.com/ECSIM/opem#overview)
* [Installation](https://github.com/ECSIM/opem/blob/master/INSTALL.md)
* [Usage](https://github.com/ECSIM/opem#usage)
+ * [Executable](https://github.com/ECSIM/opem#executable)
+ * [Library](https://github.com/ECSIM/opem#library)
+ * [Telegram Bot](https://github.com/ECSIM/opem#telegram-bot)
+ * [Try OPEM in Your Browser!](https://github.com/ECSIM/opem#try-opem-in-your-browser)
* [Issues & Bug Reports](https://github.com/ECSIM/opem#issues--bug-reports)
- * [Contribution](https://github.com/ECSIM/opem/blob/master/CONTRIBUTING.md)
+ * [Contribution](https://github.com/ECSIM/opem/blob/master/.github/CONTRIBUTING.md)
* [Todo](https://github.com/ECSIM/opem#todo)
* [Outputs](https://github.com/ECSIM/opem#outputs)
* [Dependencies](https://github.com/ECSIM/opem#dependencies)
@@ -33,24 +34,69 @@
* [License](https://github.com/ECSIM/opem#license)
* [Donate](https://github.com/ECSIM/opem#donate-to-our-project)
* [Changelog](https://github.com/ECSIM/opem/blob/master/CHANGELOG.md)
+ * [Code of Conduct](https://github.com/ECSIM/opem/blob/master/.github/CODE_OF_CONDUCT.md)
## Overview
-Modeling and simulation of proton-exchange membrane fuel cells (PEMFC) may work as a powerful tool in the Research & development of renewable energy sources. The Open-Source PEMFC Simulation Tool (OPEM) is a modeling tool for evaluating the performance of proton exchange membrane fuel cells. This package is a combination of models (static/dynamic) that predict the optimum operating parameters of PEMFC. OPEM contained generic models that will accept as input, not only values of the operating variables such as anode and cathode feed gas, pressure and compositions, cell temperature and current density, but also cell parameters including the active area and membrane thickness. In addition, some of the different models of PEMFC that have been proposed in the OPEM, just focus on one particular FC stack, and some others take into account a part or all auxiliaries such as reformers. OPEM is a platform for collaborative development of PEMFC models.
+Modeling and simulation of proton-exchange membrane fuel cells (PEMFC) may work as a powerful tool in the research & development of renewable energy sources. The Open-Source PEMFC Simulation Tool (OPEM) is a modeling tool for evaluating the performance of proton exchange membrane fuel cells. This package is a combination of models (static/dynamic) that predict the optimum operating parameters of PEMFC. OPEM contained generic models that will accept as input, not only values of the operating variables such as anode and cathode feed gas, pressure and compositions, cell temperature and current density, but also cell parameters including the active area and membrane thickness. In addition, some of the different models of PEMFC that have been proposed in the OPEM, just focus on one particular FC stack, and some others take into account a part or all auxiliaries such as reformers. OPEM is a platform for collaborative development of PEMFC models.
+
Fig1. OPEM Block Diagram
+
+
+
+
Open Hub
+
+
+
+
PyPI Counter
+
+
+
+
Github Stars
+
+
+
+
+
+
+
Branch
+
master
+
develop
+
+
+
Travis
+
+
+
+
+
AppVeyor
+
+
+
+
+
+
+
+
Code Quality
+
+
+
+
+
+
## Usage
-### CLI (Command Line Interface)
+### Executable
- Open `CMD` (Windows) or `Terminal` (UNIX)
- Run `python -m opem` or `python3 -m opem` (or run `OPEM.exe`)
- Enter PEM cell parameters (or run standard test vectors)
@@ -64,17 +110,17 @@ Modeling and simulation of proton-exchange membrane fuel cells (PEMFC) may work
T
-
Cell Operation Temperature
+
Cell operation temperature
K
PH2
-
Partial Pressure
+
Partial pressure
atm
PO2
-
Partial Pressure
+
Partial pressure
atm
@@ -99,12 +145,12 @@ Modeling and simulation of proton-exchange membrane fuel cells (PEMFC) may work
l
-
Membrane Thickness
+
Membrane thickness
cm
lambda
-
is an adjustable parameter with a min value of 14 and max value of 23
+
An adjustable parameter with a min value of 14 and max value of 23
--
@@ -114,7 +160,7 @@ Modeling and simulation of proton-exchange membrane fuel cells (PEMFC) may work
B
-
An empirical constant depending on the cell and its operation state (Tafel Slope)
+
An empirical constant depending on the cell and its operation state (Tafel slope)
V
@@ -124,7 +170,7 @@ Modeling and simulation of proton-exchange membrane fuel cells (PEMFC) may work
N
-
Number Of Single Cells
+
Number of single cells
--
@@ -141,7 +187,7 @@ Modeling and simulation of proton-exchange membrane fuel cells (PEMFC) may work
E0
-
Fuel Cell reversible no loss voltage
+
Fuel cell reversible no loss voltage
V
@@ -191,7 +237,7 @@ Modeling and simulation of proton-exchange membrane fuel cells (PEMFC) may work
N
-
Number Of Single Cells
+
Number of single cells
--
@@ -253,7 +299,7 @@ Modeling and simulation of proton-exchange membrane fuel cells (PEMFC) may work
N
-
Number Of Single Cells
+
Number of single cells
--
@@ -275,7 +321,7 @@ Modeling and simulation of proton-exchange membrane fuel cells (PEMFC) may work
T
-
FuelCell temperature
+
Fuel cell temperature
K
@@ -310,12 +356,12 @@ Modeling and simulation of proton-exchange membrane fuel cells (PEMFC) may work
Rint
-
FuelCell internal resistance
+
Fuel cell internal resistance
ohm
rho
-
Hydrogen-oxygen flow ratio
+
Hydrogen-Oxygen flow ratio
--
@@ -364,7 +410,7 @@ Modeling and simulation of proton-exchange membrane fuel cells (PEMFC) may work
T
-
FuelCell temperature
+
Fuel cell temperature
K
@@ -409,12 +455,12 @@ Modeling and simulation of proton-exchange membrane fuel cells (PEMFC) may work
Rint
-
FuelCell internal resistance
+
Fuel cell internal resistance
ohm
rho
-
Hydrogen-oxygen flow ratio
+
Hydrogen-Oxygen flow ratio
--
@@ -447,7 +493,7 @@ Modeling and simulation of proton-exchange membrane fuel cells (PEMFC) may work