Skip to content

Commit 54d8eef

Browse files
authored
Merge pull request #70 from jajimer/documentation
Documentation for Energym 1.1.0
2 parents 789201c + 6b59d7b commit 54d8eef

File tree

3 files changed

+19
-7
lines changed

3 files changed

+19
-7
lines changed

doc/source/pages/installation.rst

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,18 +51,28 @@ Manual installation
5151

5252
If you prefer installing *energym* manually, follow the steps below:
5353

54-
1. Install EnergyPlus 8.6.0
54+
1. Install EnergyPlus 9.5.0
5555
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
5656

57-
Firstly, install EnergyPlus. Currently only version 8.6.0 has
58-
been tested, but code may also work with other versions.
57+
Firstly, install EnergyPlus. Currently it has been update compability to 9.5.0 and it has
58+
been tested, but code may also work with other versions. Energym ensure this support:
59+
60+
+------------------+--------------------+
61+
| Energym Version | EnergyPlus version |
62+
+==================+====================+
63+
| 1.0.0 | 8.6.0 |
64+
+------------------+--------------------+
65+
| 1.1.0 | 9.5.0 |
66+
+------------------+--------------------+
67+
68+
Other combination may works, but they don't have been tested.
5969

6070
Follow the instructions `here <https://energyplus.net/downloads>`__ and
6171
install it for Linux (only Ubuntu is supported). Choose any location
6272
to install the software. Once installed, a folder called
63-
``Energyplus-8-6-0`` should appear in the selected location.
73+
``Energyplus-9-5-0`` should appear in the selected location.
6474

65-
2. Install BCVTB software
75+
1. Install BCVTB software
6676
~~~~~~~~~~~~~~~~~~~~~~~~~
6777

6878
Follow the instructions

doc/source/pages/rewards.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@ Notice there are two temperature comfort ranges in that class, those ranges are
1818
two weights in the reward function, this allows you to adjust how important each aspect is when making a general evaluation of the environment.
1919

2020
By default, all environments in gym register will use SimpleReward() with default parameters. However, this configuration can be overwriting in ``gym.make()``, for example:
21-
::
21+
22+
.. code:: python
23+
2224
env = gym.make('Eplus-discrete-stochastic-mixed-v1', reward=ExpReward(energy_weight=0.5))
2325
2426
.. note:: *Currently, it is only available these classes. However, more reward functions could be designed in the future!*

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
reqs = f.read().splitlines()
55

66
setup(name='energym',
7-
version='1.0.0',
7+
version='1.1.0',
88
install_requires=reqs,
99
include_package_data=True,
1010
extras_require={

0 commit comments

Comments
 (0)